我有一个RelativeLayout
在其中动态添加许多TextViews
。我面临的问题是,每当我TextViews
单独应用 onTouch 侦听器时,它都会检测到触摸,但是当我将触摸添加到我的相对布局时,它永远不会响应。
此代码可以很好地检测触摸事件:
TextView tv = new TextView(this);
tv.setText(values[i]);
Drawable d = getResources().getDrawable(R.drawable.level_small_corners);
tv.setClickable(true);
tv.setId(i+1);
tv.setTextSize(18);
tv.setOnTouchListener(cellTouch);
但是当我在 myRelativeLayout 中添加所有这些 TextView 时:
myRelativeLayout.setOnTouchListener(cellTouch);
现在,onTouchListener 永远不会被调用。为什么呢?
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@android:color/black">
.
.
.
<ScrollView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/levelFirstLayout"
android:layout_marginBottom="70dp" >
<RelativeLayou
android:id="@+id/wordsRelativeLayout"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:clickable="true"
android:focusable="true"
android:focusableInTouchMode="true" >
</RelativeLayout>
</ScrollView>
.
.
.
</RelativeLayout>