我正在编写一个带有ListView布局的应用程序,我想添加到任何一行 在这个ListView CheckBox中。 我怎么能这样做?
这是我的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<ListView
android:id="@+id/listView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1">
</ListView>
</LinearLayout>
由于 Moshik。
答案 0 :(得分:1)
您可以使用BaseAdapter。您可以看到示例here。您几乎可以在列表项中添加任何内容。您可以通过覆盖BaseAdapter的getView方法来实现。您可以创建View并以编程方式添加CheckBox,也可以使用xml资源文件和LayoutInflater。后一种技术用于链接示例中。