我有线性图层,有两个文本视图和复选框。我想创建自定义视图,并添加此代码几次。我尝试了 2 天,创建自定义视图,但我没有找到更复杂示例的示例。只有一个文本视图,或其他简单的东西。
我的线性层:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:background="@drawable/border1px"
android:focusable="true"
android:clickable="true"
android:id="@+id/linearxyz"
>
<RelativeLayout android:layout_width="wrap_content"
android:layout_height="wrap_content" android:layout_marginLeft="15dip"
android:focusable="false"
android:clickable="false"
>
<TextView android:id="@+android:id/title"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="Testxyz"
android:textColor="#FF0000"
/>
<TextView android:id="@+android:id/summary"
android:layout_width="wrap_content" android:layout_height="wrap_content"
android:text="Testxyz2"
/>
</RelativeLayout>
<CheckBox
android:id="@+android:id/checkboxxyz"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
</LinearLayout>
我想要,使用这个层,我想改变 textview 的文本,改变 id 层并添加 onclicklistener,给他。