ビューページャーを使用して、アンドロイドのビューページャーを使用して指でフラグメントをスライドさせます。正常に動作していますが、ユーザーが画面に触れないと、数秒ごとにフラグメントが次のフラグメントに自動的に変更されます。その方法を教えてください。
質問する
2188 次
1 に答える
7
public class AutoSwitcherViewPager extends ViewPager {
private Runnable mSwither = new Runnable() {
/*
* (non-Javadoc)
* @see java.lang.Runnable#run()
* @since Jun 13, 2013
* @author rajeshcp
*/
@Override
public void run() {
if( AutoSwitcherViewPager.this.getAdapter() != null )
{
int count = AutoSwitcherViewPager.this.getCurrentItem();
if( count == (AutoSwitcherViewPager.this.getAdapter().getCount() - 1) )
{
count = 0;
}else
{
count++;
}
Log.d(this.getClass().getName(), "Curent Page " + count + "");
AutoSwitcherViewPager.this.setCurrentItem(count, true);
}
AutoSwitcherViewPager.this.postDelayed(this, 5000);
}
};
/**
* @param context
* @return of type AutoSwitcherViewPager
* Constructor function
* @since Jun 13, 2013
* @author rajeshcp
*/
public AutoSwitcherViewPager(Context context) {
this(context, null);
}
/**
* @param context
* @param attrs
* @return of type AutoSwitcherViewPager
* Constructor function
* @since Jun 13, 2013
* @author rajeshcp
*/
public AutoSwitcherViewPager(Context context, AttributeSet attrs) {
super(context, attrs);
postDelayed(mSwither, 5000);
}
/*
* (non-Javadoc)
* @see android.support.v4.view.ViewPager#onTouchEvent(android.view.MotionEvent)
* @since Jun 13, 2013
* @author rajeshcp
*/
@Override
public boolean onTouchEvent(MotionEvent arg0) {
switch (arg0.getAction()) {
case MotionEvent.ACTION_CANCEL:
case MotionEvent.ACTION_UP :
postDelayed(mSwither, 5000);
break;
default:
removeCallbacks(mSwither);
break;
}
return super.onTouchEvent(arg0);
}
}
このクラスをViewPager
<packagename.AutoSwitcherViewPager
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
をクラスパッケージに置き換え<packagename
ますAutoSwitcherViewPager
于 2013-06-13T05:52:58.297 に答える