我在 HorizontalScrollView 中有 RelativeLayouts。当用户单击其中一个布局(或其任何子布局)时,我需要更改某个 RelativeLayout 的背景颜色并获取其 ID 以进行进一步处理。我看到这可以通过 DuplicateParentState 或 onTouchEvent 来完成。推荐哪种方式?
按照建议编辑 XML 文件后的我的 XML 文件:
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content" >
<youme.appyoume.com.ExDialog>
<ImageView
android:id="@+id/imageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:layout_marginTop="20dp"
android:clickable="true"
android:duplicateParentState="true"
android:onClick="onClick"
android:src="@drawable/ic_launcher" />
<EditText
android:id="@+id/TextView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginLeft="20dp"
android:layout_marginRight="20dp"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:duplicateParentState="true"
android:ems="10"
android:focusable="false"
android:focusableInTouchMode="false"
android:inputType="textMultiLine"
android:text="text" >
<requestFocus />
</EditText>
</youme.appyoume.com.ExDialog>
</RelativeLayout>
谢谢,西蒙