そのため、すべてがスマートフォンでうまく機能しています。ただし、タブレットでは、 myListView
は左側のナビゲーション要素として表示されることを意図しており、現在アクティブなアイテムが詳細フラグメントに展開されて表示されます。そして、それもうまくいきます。ただし、ListFragment
のアクティブ化されたアイテムは選択された状態で表示されません。に設定android:choiceMode
しましたsingleChoice
。適切なセレクターをアクティブにして、アイテムを押すと背景のドローアブルが表示されます。セレクターには に適した項目がありandroid:state_activated="true"
ます。styles.xmlファイルで指定android:activatedBackgroundIndicator
しています。内部の出力をログに記録すると、期待どおりに返されます。listView.getCheckedItemCount()
onListItemClick
1
むかしむかし、数週間前、ArrayAdapter
データ ソースを実際に配線し始める前、およびカスタム リスト ビュー アイテム レイアウトを使い始める前に、これらすべてが で意図したとおりに機能していました。そして、途中で、アクティブ化されたアイテムが正しく表示されないようなことをしましたが、それが何であったかはわかりません.
selectable_background.xml
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:exitFadeDuration="@android:integer/config_mediumAnimTime" >
<item android:state_pressed="false" android:state_focused="true" android:drawable="@drawable/list_focused" />
<item android:state_pressed="true" android:drawable="@drawable/pressed_background" />
<!-- selected -->
<item android:state_activated="true" android:drawable="@drawable/pressed_background" />
<item android:state_checked="true" android:drawable="@drawable/pressed_background" /> <!-- paranoia -->
<item android:state_selected="true" android:drawable="@drawable/pressed_background" /> <!-- paranoia -->
<!-- default -->
<item android:drawable="@android:color/transparent" />
</selector>
fragment_list.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@id/android:list"
android:layout_width="match_parent"
android:layout_height="0dip"
android:layout_weight="1"
android:choiceMode="singleChoice"
android:listSelector="@drawable/selectable_background" >
</ListView>
<TextView android:id="@id/android:empty"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="16dp"
android:paddingBottom="16dp"
android:paddingLeft="12dp"
android:paddingRight="12dp"
android:text="@string/empty_list" />
</LinearLayout>
list_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content" >
<ImageView android:id="@+id/item_image"
android:layout_width="63dp"
android:layout_height="63dp"
android:contentDescription="@string/list_image"
android:src="@drawable/ic_thumbnail_placeholder"
android:background="#f0f0f0" />
<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/item_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceListItemSmall"
android:gravity="center_vertical"
android:paddingLeft="?android:attr/listPreferredItemPaddingLeft"
android:paddingRight="?android:attr/listPreferredItemPaddingRight"
android:minHeight="?android:attr/listPreferredItemHeightSmall" />
</LinearLayout>
MyListFragment.java
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
this.getActivity().getLoaderManager().initLoader(ALL_ITEMS_LOADER, null, this);
listAdapter = new SimpleCursorAdapter(
this.getActivity(),
R.layout.list_item,
null,
new String[] { Item.NAME },
new int[] { R.id.item_name },
CursorAdapter.FLAG_REGISTER_CONTENT_OBSERVER
);
this.setListAdapter(listAdapter);
}
@Override
public Loader<Cursor> onCreateLoader(int i, Bundle bundle) {
Uri queryUri;
switch (i) {
case ALL_ITEMS_LOADER:
queryUri = Item.CONTENT_URI;
return new CursorLoader(this.getActivity(), queryUri, null, null, null, null);
default:
throw new IllegalArgumentException("Unknown loader ID: " + i);
}
}
@Override
public void onLoadFinished(Loader<Cursor> cursorLoader, Cursor cursor) {
if (listAdapter == null) {
throw new IllegalStateException("List adapter is missing!");
} else {
Log.d(TAG, "Load finished. Cursor swapped.");
listAdapter.swapCursor(cursor);
}
}
アップデート:
また、を以前に作業していた に置き換えてみましたが、サイコロはありませSimpleCursorAdapter
ん:ArrayAdapter
listAdapter = new ArrayAdapter<String>(
this.getActivity(),
R.layout.list_item,
R.id.item_name,
new String[] {"1", "2", "3"}
);
更新 2:
ああああ!手掛かり!
listAdapter = new ArrayAdapter<String>(
this.getActivity(),
android.R.layout.simple_list_item_activated_1,
android.R.id.text1,
new String[] {"1", "2", "3"}
);
これは機能します。しかし、実際には独自のレイアウトを使用する必要があるため、独自の質問は解決しません。R.layout.list_item
との違いは何android.R.layout.simple_list_item_activated_1
ですか?