3

我试图完全理解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;
        }
    });

   }
 }

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

有人可以帮助我吗?

4

1 回答 1

5

假设您的问题是“onTouch 上的返回值是什么意思”?

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

如果侦听器已经消费了事件,则返回 True,否则返回 false。

看看这里的文档。

于 2014-06-27T09:50:37.027 回答