4

そのため、すべてがスマートフォンでうまく機能しています。ただし、タブレットでは、 myListViewは左側のナビゲーション要素として表示されることを意図しており、現在アクティブなアイテムが詳細フラグメントに展開されて表示されます。そして、それもうまくいきます。ただし、ListFragmentのアクティブ化されたアイテムは選択された状態で表示されません。に設定android:choiceModeしましたsingleChoice。適切なセレクターをアクティブにして、アイテムを押すと背景のドローアブルが表示されます。セレクターには に適した項目がありandroid:state_activated="true"ます。styles.xmlファイルで指定android:activatedBackgroundIndicatorしています。内部の出力をログに記録すると、期待どおりに返されます。listView.getCheckedItemCount()onListItemClick1

むかしむかし、数週間前、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ですか?

4

1 に答える 1

4

むかしむかし、数週間前、カスタム リスト ビュー アイテム レイアウトの使用を開始する前に、これはすべて意図したとおりに機能していました。

私の推測ではsimple_list_item_activated_x、バックグラウンドのドローアブル定義でアクティブ化されたドローアブルを定義する以前のレイアウトの 1 つを使用していたと思います。フレームワークが行うことの 1 つは、アクティブ化されたロジックから押されたロジックを分離することです (前者はリスト セレクターの一部であり、後者はリスト アイテムにあります) が、そのようにする必要はありません。それらをすべてリスト項目の背景に配置し、セレクターを完全に無効にします。

リストセレクターではなく、各リストアイテムの背景としてカスタムドローアブルを配置することをお勧めします。アクティブ化は、個々のアイテム ビューに適用される状態です。次にandroid:listSelector="@null"、一部の状態で透明な背景があり、デフォルトのセレクターが表示されないように設定できます。

于 2012-08-30T18:03:37.860 に答える