好的。因此,我一直在研究手势等,并试图找出如何设置我的代码,以便在发生向左滑动之类的事情时,我可以通过向右滑动打开一个新屏幕。类似于日历的东西,您可以在其中滑动浏览日子。我已经建立了手势。谢谢您的帮助。
问问题
2364 次
2 回答
0
好的。我想我想出了点什么。我现在不能完全尝试,但它看起来对吗?谢谢。
public void onGesturePerformed(GestureOverlayView overlay, Gesture gesture) {
ArrayList<Prediction> predictions = mLibrary.recognize(gesture);
if (predictions.size() > 0 && predictions.get(0).score > 1.0) {
String action = predictions.get(0).name;
if ("left".equals(action)) {
Intent intent = new Intent(Actinium.this, Radium.class);
startActivity(intent);
finish();}
else if ("right".equals(action)) {
Intent intent = new Intent(Actinium.this, Thorium.class);
startActivity(intent);
finish();}
}
}
于 2010-12-07T00:36:00.160 回答
-1
Intent intent = new Intent(this, MyActivity.class);
startActivity(intent);
请参阅有关收听手势的文档。
于 2010-12-07T00:07:36.093 回答