Skip to content

Instantly share code, notes, and snippets.

@Gazer
Created September 19, 2016 03:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Gazer/a3e8f61031a013aab690c75aeccb0b60 to your computer and use it in GitHub Desktop.
Save Gazer/a3e8f61031a013aab690c75aeccb0b60 to your computer and use it in GitHub Desktop.
public class PagerIndicator extends View {
public PagerIndicator(Context context) {
super(context);
}
public PagerIndicator(Context context, AttributeSet attrs) {
super(context, attrs);
}
public PagerIndicator(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@TargetApi(Build.VERSION_CODES.LOLLIPOP)
public PagerIndicator(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment