Back to project page CustomViewPager.
The source code is released under:
Apache License
If you think the Android project CustomViewPager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.kgnkbyl.custompager; /* w ww. j a v a 2s. com*/ import android.content.Context; import android.view.View; public abstract class CustomPagerAdapter { private Context context; public CustomPagerAdapter(Context context){ this.context = context; } public Context getContext() { return context; } public void setContext(Context context) { this.context = context; } public abstract View getView(int position, View convertView); public abstract int dataCount(); }