gpt4 book ai didi

android - ListView 项目未显示为已激活

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:12:57 24 4
gpt4 key购买 nike

因此,一切都在智能手机上运行良好。但是,在平板电脑上,我的 ListView 旨在显示为左侧导航元素,当前激活的项目在详细信息 fragment 中展开显示。这也很管用。但是,ListFragment 的激活项不会显示为选中状态。我已将 android:choiceMode 设置为 singleChoice。我激活了正确的选择器,当按下一个项目时背景可绘制对象出现。选择器具有 android:state_activated="true" 的正确项。我在我的 styles.xml 文件中指定了 android:activatedBackgroundIndicator。当我在 onListItemClick 中记录 listView.getCheckedItemCount() 的输出时,它会如我所料返回 1

曾几何时,几周前,在我真正开始连接我的数据源之前,在我开始使用一个自定义 ListView 项目布局。然后在此过程中的某个地方,我做了一些使激活的项目显示不正确的事情,但我不确定它是什么。

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 列表.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_itemandroid.R.layout.simple_list_item_activated_1 有什么不同?

最佳答案

Once upon a time, a few weeks ago, I even had this all working exactly as intended ... before I started using a custom list view item layout.

我的猜测是您之前使用的是 simple_list_item_activated_x 布局之一,它在其背景可绘制对象定义中定义了激活的可绘制对象。框架所做的一件事是将按下的逻辑与激活的逻辑分开(前者是列表选择器的一部分,而后者在列表项上),但不需要那样做,你可以将它们全部放在列表项背景中并完全禁用选择器。

我建议将自定义可绘制对象放置为每个列表项的背景,而不是列表选择器; activated 是应用于每个单独项目 View 的状态。然后你可以设置 android:listSelector="@null" 因为你在某些状态下有透明背景并且你不希望默认选择器显示出来。

关于android - ListView 项目未显示为已激活,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12202705/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com