を追加した後、私はListView
(my_list.xml)が動作しませんが:リストビューonClickListener()のRadioButton
<ListView
android:id="@+id/my_list"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:choiceMode="singleChoice"
/>
レイアウト各リスト項目のためである(list_item.xml):
Javaコードで<?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>
、私はリストのため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
はもう動作しません。
android:focusable="false"
android:focusableInTouchMode="false"
とあなたOnItemClickListenerに、あなたはラジオボタンのはをチェックし設定する必要があります:あなたののRadioButtonに次のプロパティを設定します(これはリスト項目のレイアウトにRadioButton
なしだ場合、それは動作します)
あなたのリストビューの項目と、その項目 – waqaslam
内部のラジオボタンの間に**フォーカスを獲得する今、その競合**ので、この問題を取り除くために次に、どのように?リストアイテムにラジオボタンが必要です。ユーザーがアイテムエリアをクリックしたときにラジオボタンを選択する必要があります。 –
クリックリスナーは、フォーカス可能な他のビューがない場合にのみ機能します。 CheckBoxをfocusable = "false"に設定すると、あなたのトリックを行うはずです。http://stackoverflow.com/questions/1121192/android-custom-listview-unable-to-click-on-items –