gpt4 book ai didi

android - 在 Activity 之间滑动

转载 作者:太空宇宙 更新时间:2023-11-03 10:18:00 31 4
gpt4 key购买 nike

我有 2 个 Activity ,我想通过滑动在它们之间切换,我在谷歌上做了很多研究但找不到解决方案,因为我正在使用位图(图像)我已经编写了大部分代码在 Activity 的 onCreate() 方法中,是否有任何解决方案,或者我如何将 Activity 像它一样转换成 fragment

最佳答案

您可以使用 GestureDetector 来完成。以下是示例 fragment 。

// You can change values of below constants as per need.
private static final int MIN_DISTANCE = 100;
private static final int MAX_OFF_PATH = 200;
private static final int THRESHOLD_VELOCITY = 100;
private GestureDetector mGestureDetector;

// write below code in onCreate method
mGestureDetector = new GestureDetector(context, new SwipeDetector());

// Set touch listener to parent view of activity layout
// Make sure that setContentView is called before setting touch listener.
findViewById(R.id.parent_view).setOnTouchListener(new View.OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
// Let gesture detector handle the event
return mGestureDetector.onTouchEvent(event);
}
});


// Define a class to detect Gesture
private class SwipeDetector extends GestureDetector.SimpleOnGestureListener {
@Override
public boolean onFling(MotionEvent e1, MotionEvent e2, float velocityX, float velocityY) {
if (e1 != null && e2 != null) {
float dy = e1.getY() - e2.getY();
float dx = e1.getX() - e2.getX();

// Right to Left swipe
if (dx > MIN_DISTANCE && Math.abs(dy) < MAX_OFF_PATH &&
Math.abs(velocityX) > THRESHOLD_VELOCITY) {
// Add code to change activity
return true;
}

// Left to right swipe
else if (-dx > MIN_DISTANCE && Math.abs(dy) < MAX_OFF_PATH &&
Math.abs(velocityX) > THRESHOLD_VELOCITY) {
// Below is sample code to show left to right swipe while launching next activity
currentActivity.overridePendingTransition(R.anim.right_in, R.anim.right_out);
startActivity(new Intent(currentActivity,NextActivity.class));
return true;
}
}
return false;
}
}

//Below are sample animation xml files.

anim/right_in.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="500"
android:fromXDelta="-100%p"
android:toXDelta="0" />
</set>

anim/right_out.xml
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
android:duration="500"
android:fromXDelta="0"
android:toXDelta="100%p" />
</set>

关于android - 在 Activity 之间滑动,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32041551/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com