我想知道我是否正确设置了TouchDelegate。我想在LinearLayout中增加TextViews的触摸区域。
我的布局看起来像这样。
<LinearLayout
android:id="@+id/subcategory"
android:layout_width="fill_parent"
android:layout_height="35dp"
android:background="#000000"
android:gravity="center_horizontal"
android:orientation="horizontal"
android:padding="5dp" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:text="All"
android:textColor="#FFFFFF"
android:textSize="18sp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:paddingLeft="30dp"
android:paddingRight="30dp"
android:text="None"
android:textColor="#FFFFFF"
android:textSize="18sp" />
</LinearLayout>
我从onActivityCreated()调用以下内容,其中subCategoryLayout是LinearLayout
subCategoryLayout.post(new Runnable() {
@Override
public void run() {
for (int i = 0; i < subCategoryLayout.getChildCount(); i++) {
Rect delegateArea = new Rect();
TextView d = (TextView) subCategoryLayout.getChildAt(i);
d.getHitRect(delegateArea);
delegateArea.bottom += 50;
delegateArea.top += 200;
delegateArea.left += 50;
delegateArea.right += 50;
TouchDelegate expandedArea = new TouchDelegate(delegateArea, d);
subCategoryLayout.setTouchDelegate(expandedArea);
// if (View.class.isInstance(d.getParent())) {
// ((View) d.getParent()).setTouchDelegate(expandedArea);
// }
}
}
});
答案 0 :(得分:1)
第一点是View只能有一个TouchDelegate。事实上,在你的for循环之后,最后的TouchDelegate被设置为subCategoryLayout。如果要将多个TouchDelegates添加到一个视图,可以使用TouchDelegateComposite
第二点是你想要将触摸区域扩展到顶部的50dp和底部的200dp。但是你的subCategoryLayout高度为35dp,只有那些命中subCategoryLayout的触摸才传递给TouchDelegate。因此,如果您想将触摸区域扩展到更大的值,您必须将TouchDelegate添加到一些尺寸足够大的父布局中。如果你这样做,你应该记住,你必须相对于更大的布局计算delegateArea。