OnTouchListener返回值

时间:2014-06-27 08:36:54

标签: java android ontouchevent ontouchlistener ontouch

我正在努力理解OnTouchListener,但我有些疑惑。

我有这个xml代码:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/container"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.example.pablo.MainActivity"
tools:ignore="MergeRootFrame" >

<Button
    android:id="@+id/button1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Button" />

</LinearLayout>

我已经在java中实现了这个代码:

public class MainActivity extends Activity {

Button b;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    b = (Button)findViewById(R.id.button1);

    b.setOnTouchListener(new OnTouchListener() {
        @Override
        public boolean onTouch(View arg0, MotionEvent arg1) {

            switch (arg1.getAction()) {
            case MotionEvent.ACTION_DOWN:
                Toast.makeText(getBaseContext(), "boton down",Toast.LENGTH_SHORT).show();
                break;
            case MotionEvent.ACTION_UP:
                Toast.makeText(getBaseContext(), "boton up",Toast.LENGTH_SHORT).show();
                break;
            }
            return false;
        }
    });

   }
 }

我在ACTION_DOWN中返回false时已阅读,其余手势(MOVEUP)不起作用。但它适用于此代码,“up”消息显示在屏幕上,它不应该。所以我完全不明白OnTouch事件中返回值的含义是什么。

有人可以帮助我吗?

1 个答案:

答案 0 :(得分:1)

假设您的问题是&#34;返回值对onTouch&#34的意义是什么?

如果查看文档,您会看到;

  

返回   如果侦听器已使用该事件,则为True,否则为false。

查看文档here