私はリストビューを持っている私のページにポップアップを持っています。私は、別のXMLでポップアップのデザインを作成し、メインページのいくつかのボタンをクリックしてロードしています。ポップアップには、画像とテキストビューを持つ各行のリストビューがあります。私はアンドロイド4.1のリストビューで行の選択を取得することができませんが、それは5.0で動作しています。誰も私に解決策を提案できますか? リストビュー:4.1のポップアップでlistviewの行を選択できませんでしたが、android 5.0で動作しています
<ListView android:id="@+id/lstSites"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:fastScrollEnabled="true"
android:layout_margin="5dp"
android:descendantFocusability="blocksDescendants"></ListView>
</LinearLayout>
ListView項目:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants"
android:focusable="false"
android:focusableInTouchMode="false">
<ImageView
android:id="@+id/thumbImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginRight="10dp"
android:focusable="false"
android:focusableInTouchMode="false"/>
<TextView
android:id="@+id/tvSite"
android:textSize="20dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:text="Name"
android:focusable="false"
android:focusableInTouchMode="false"/>
は、行のクリックのリスナーを追加:
lstSiteMenu = (ListView) popupView.findViewById(R.id.lstSites);
adapter = new MenuItemsAdapter(SiteActivity.this, arrMenu);
// Attach the adapter to a ListView
lstSiteMenu.setAdapter(adapter);
lstSiteMenu.setOnItemClickListener(new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View view,
final int position, long id) {
}
logcatでエラーからこれらのプロパティを削除しますか?あなたが選択された行を言ったときにonItemClickが機能していないか、ポジションを取得していないことを意味していましたか? – virendrao
この 'android:descendantFocusability =" blocksDescendants "を' ListView'から削除します。 – Piyush