假设有一个像这样的RelativeLayout:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:eve="http://schemas.android.com/apk/res/com.yyg.kaolamusic"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<LinearLayout
android:id="@+id/A"
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:id="@+id/B"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout >
然后,如果我们触摸B但B不处理触摸事件,我们怎么能避免触摸事件传递给孩子A?
答案 0 :(得分:0)
您可以为视图B设置一个触摸侦听器,它始终使用触摸事件,因此A永远不会获得触摸事件。
示例代码:
mA = (LinearLayout) getView().findViewById(R.id.A);
mA.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Toast.makeText(getActivity(), "Touch A",Toast.LENGTH_LONG).show();
return false;
}
});
mB = (LinearLayout) getView().findViewById(R.id.B);
mB.setOnTouchListener(new OnTouchListener() {
@Override
public boolean onTouch(View v, MotionEvent event) {
Toast.makeText(getActivity(), "Touch B",Toast.LENGTH_LONG).show();
return true;
}
});