如何使用可点击项目以及行来制作列表视图

时间:2013-05-18 02:26:49

标签: android android-listview row

我想要点击项目以及点击listview.in适配器的行我可以点击某些项目。

3 个答案:

答案 0 :(得分:1)

您需要使用OnItemClickListener

listView.setOnItemClickListener(new OnItemClickListener() {
    public void onItemClick(ViewGroup parent, View v, int pos, long id){
        //do something here
    }
}

答案 1 :(得分:0)

在所有项目的xml布局设置中......

 <CheckBox
                android:id="@+id/checkBox1"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="right"
                android:layout_marginTop="6dp"
                android:focusable="false"
                android:focusableInTouchMode="false"
                android:text="" />

更改focusable和focusableintouchmode,如图所示..

答案 2 :(得分:0)

您可以使用onClick()和所有其他子布局(如textview或其他)进行父布局。

设置android:clickable="false"所有其他子对象。

如果您发现任何问题,请告诉我。发表评论。