Created
September 23, 2014 17:01
-
-
Save macklinu/f90513be33e7776f757c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import android.support.annotation.IntDef; | |
| import java.lang.annotation.Retention; | |
| import static android.view.View.GONE; | |
| import static android.view.View.INVISIBLE; | |
| import static android.view.View.VISIBLE; | |
| import static java.lang.annotation.RetentionPolicy.CLASS; | |
| @Retention(CLASS) | |
| @IntDef({VISIBLE, INVISIBLE, GONE}) | |
| public @interface VisibilityDef { | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment