我试图完全理解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
,其余的手势 (MOVE
和UP
) 不起作用。但它在此代码中有效,“向上”消息显示在屏幕上,但它不应该。所以我不完全明白OnTouch
事件中的返回值是什么意思。
有人可以帮助我吗?