所以,一切都在智能手机上运行良好。但是,在平板电脑上,我的ListView
应显示为左侧导航元素,当前激活的项目会在详细信息片段中展开。这也很有效。但是,ListFragment
的激活项目不会显示为已选中。我已将android:choiceMode
设置为singleChoice
。我有正确的选择器激活,按下一个项目时会出现背景drawable。选择器具有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:
AHAH!一个线索!
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
之间有什么不同?
答案 0 :(得分:4)
几天前,在我开始使用自定义列表视图项目布局之前,我甚至完全按照预期工作了。
我的猜测是你之前使用过simple_list_item_activated_x
布局之一,它们在背景可绘制定义中定义了激活的drawable。框架所做的一件事就是从被激活的逻辑中分离出被按下的逻辑(前者是列表选择器的一部分,而后者是列表项),但它不需要这样做,你可以将它们全部放在列表项背景中并完全禁用选择器。
我建议将自定义drawable作为每个列表项的背景而不是列表选择器; activate是应用于每个单独项目视图的状态。然后您可以设置android:listSelector="@null"
,因为在某些状态下您有透明背景,并且您不希望显示默认选择器。