0

我有线性图层,有两个文本视图和复选框。我想创建自定义视图,并添加此代码几次。我尝试了 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,给他。

4

1 回答 1

0

我使用带有适配器的listview,它工作得很好。谢谢你的帮助

我使用http://javatechig.com/android/android-listview-tutorial/,并修改为我自己的程序。

于 2013-07-31T20:26:54.137 回答