我在我的应用程序中使用viewflipper和gesturedetector来刷页面。我可以交换页面。现在我想在swapleft方法的应用程序中继续下一个活动。 在swapleft我添加了一个方法page.showNext()。现在我想切换到下一个活动。
这是我的activity.class
public class eDetailing extends Activity
{
ViewFlipper page;
Animation animFlipInForeward;
Animation animFlipOutForeward;
Animation animFlipInBackward;
Animation animFlipOutBackward;
@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
page = (ViewFlipper)findViewById(R.id.main_flipper_view);
animFlipInForeward = AnimationUtils.loadAnimation(this, R.anim.flipin);
animFlipOutForeward = AnimationUtils.loadAnimation(this, R.anim.flipout);
animFlipInBackward = AnimationUtils.loadAnimation(this, R.anim.flipin_reverse);
animFlipOutBackward = AnimationUtils.loadAnimation(this, R.anim.flipout_reverse);
//findViewById(R.id.main_linear).setOnClickListener(this);
}
private void SwipeRight(){
page.setInAnimation(animFlipInBackward);
page.setOutAnimation(animFlipOutBackward);
page.showPrevious();
}
private void SwipeLeft(){
page.setInAnimation(animFlipInForeward);
page.setOutAnimation(animFlipOutForeward);
page.showNext();
}
@Override
public boolean onTouchEvent(MotionEvent event) {
return gestureDetector.onTouchEvent(event);
}
SimpleOnGestureListener simpleOnGestureListener
= new SimpleOnGestureListener(){
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX,
float velocityY) {
float sensitvity = 50;
if((e1.getX() - e2.getX()) > sensitvity){
SwipeLeft();
}else if((e2.getX() - e1.getX()) > sensitvity){
SwipeRight();
}
return true;
}
};
GestureDetector gestureDetector
= new GestureDetector(simpleOnGestureListener);
}
这是我的xml文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" android:orientation="horizontal">
<ViewFlipper
android:id="@+id/main_flipper_view"
android:layout_height="540dip" android:layout_width="1020dip">
<LinearLayout
android:layout_height="fill_parent"
android:layout_width="fill_parent"
android:orientation="horizontal">
<ImageView android:id="@+id/main_imageview" android:background="@drawable/img_main" android:layout_height="fill_parent" android:layout_width="fill_parent"></ImageView>
</LinearLayout>
</ViewFlipper>
我在动画中使用flipin,flipout,flipinreverse,flipoutreverse xml文件。 任何人都有想法吗?
此外,我想在活动上添加菜单,菜单将操作不同的页面。 是否可以使用viewflipper和gesturedetector进行页面滑动效果?
提前感谢。
答案 0 :(得分:0)
答案 1 :(得分:0)
你可以这样做吗
private void SwipeLeft(){
page.setInAnimation(animFlipInForeward);
page.setOutAnimation(animFlipOutForeward);
page.showNext();
Intent activityintent=new Intent();
activityintent.setClass(getApplicationContext(), targetactivity.class);
startActivity(activityintent);
}