android按后退按钮的画廊问题

发布于 2024-12-03 03:05:41 字数 228 浏览 2 评论 0原文

嗨,团队前夕,我有一组图像,例如 1 2 3 4 5 6。单击 1(即第一张图像)时,该图像应该在另一个活动中显示。当我们用手指滑动时,它应该移动到下一个图像。如果我在按下设备上的后退按钮时停止在图像位置 4. 附近滑动。主 Activity 应显示在 4 的位置附近。

我已经在 onFling() 的帮助下完成了滑动。问题是当我按下后退按钮时,图像移动到第一个位置。我需要在相同的位置......

提前致谢

Hie team gud eve, I had a set of images like 1 2 3 4 5 6. on clicking on 1 (i.e first image) the one should show in another activity. When we swipe with the finger it should move to the next image. If i stop swiping near the image position 4. while pressing the back button on the device. The main Activity should show near the position of 4.

I already done with the swipe with the help of onFling(). The problem is when i press the back button the image is moving to the first position.I need in the same position......

Thanks in advance

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

远山浅 2024-12-10 03:05:41
manually you can override that key  
i think this code will help u...

@Override
        public boolean onKeyDown(int keyCode, KeyEvent event) {
            try {
                // TODO Auto-generated method stub
                if (keyCode == KeyEvent.KEYCODE_BACK)
    //start the what activity you want
    }
    }
manually you can override that key  
i think this code will help u...

@Override
        public boolean onKeyDown(int keyCode, KeyEvent event) {
            try {
                // TODO Auto-generated method stub
                if (keyCode == KeyEvent.KEYCODE_BACK)
    //start the what activity you want
    }
    }
人生戏 2024-12-10 03:05:41

如果您的目标是 Android 2.0 或更高版本,则可以使用 onBackPressed() 来决定按下后退按钮时会发生什么。这比较容易做到。

@Override
public void onBackPressed() {
    // Do something
}

要选择图库中的项目:

gallery.setSelection(int selection);

If you're targeting Android 2.0 or newer, you can use onBackPressed() to decide what happens when you hit the back button. This is slighlty easier to do.

@Override
public void onBackPressed() {
    // Do something
}

To select a item in the Gallery:

gallery.setSelection(int selection);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文