添加RadioButton后,ListView onClickListener()不起作用

时间:2012-03-27 08:25:56

标签: android android-layout android-intent android-emulator android-widget

我有ListView my_list.xml ):

 <ListView
        android:id="@+id/my_list"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:choiceMode="singleChoice"
      />

每个列表项的布局为( list_item.xml ):

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:padding="10dp"
    >

    <ImageView 
          android:id = "@+id/my_icon" 
          android:layout_width ="wrap_content" 
          android:layout_height ="wrap_content"
          android:layout_centerVertical="true"  
     /> 
    <TextView 
         android:id="@+id/my_str" 
         android:layout_width="wrap_content" 
         android:layout_height = "wrap_content" 
         android:layout_toRightOf="@id/my_icon"
     /> 

     <!--This radio button makes the list item unselectable, why?-->
     <RadioButton 
         android:id="@+id/my_radio_btn"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_centerVertical="true"
         android:layout_alignParentRight="true"
         />
</RelativeLayout>

在Java代码中,我使用SimpleAdapter作为列表:

my_list = (ListView) findViewById(R.id.my_list);

SimpleAdapter adapter = new SimpleAdapter(context, getOptions(),
           R.layout.list_item, 
           new String[] { "icon1","str1" }, 
           new int[] {R.id.my_icon, R.id.my_str });

my_list.setAdapter(adapter);

//onClickListener does not work after I added RadioButton in list item layout
my_list.setOnItemClickListener(new AdapterView.OnItemClickListener() {

        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {

            Log.v("SELECTED", position+""); 
        }
    });

如您所见,在上面的代码中,在列表项布局中,我添加了RadioButton,在添加此按钮后,我的列表onClickListener不再起作用,为什么? (如果在列表项布局上没有RadioButton,则它可以工作)

2 个答案:

答案 0 :(得分:24)

将以下属性设置为 RadioButton

android:focusable="false"
android:focusableInTouchMode="false"

并在 OnItemClickListener 中,您需要按代码设置单选按钮的已选中标记。


将ListView设置如下:

<ListView
  android:id="@+id/my_list"
  android:layout_width="fill_parent"
  android:layout_height="fill_parent" />

答案 1 :(得分:2)

将此代码添加到您的RadioButton XML代码中:

android:focusable="false"
android:focusableInTouchMode="false"

解决此问题的另一个关键字是TouchDelegate。

编辑:

https://stackoverflow.com/a/5528945/1285331