我的RelativeLayout定义如下:
<RelativeLayot>
<TextView />
<TextView />
<EditText />
<Button />
</RelativeLayout
我想检测此RelativeLayout左侧或右侧的滑动,并使用新文本更新两个textviews。这样做的最简单或最有效的方法是什么?任何帮助表示赞赏。
答案 0 :(得分:1)
要检测向左或向右滑动,我们在Android中使用Gesture。请仔细阅读以下链接,向您展示可以捕获的各种手势。
http://developer.android.com/design/patterns/gestures.html http://www.vogella.com/articles/AndroidGestures/article.html
答案 1 :(得分:0)