3

我在 ListFragment 上有一个 ListView,它使用 SimpleCursorAdapter 来生成我的列表。我想在我的 ListView 中突出显示选定的项目,我尝试过:

v.setBackgroundResource(R.color.listselect_light_blue);

在 onListItemClick 但它的工作很奇怪,当我单击其中一个项目并且我希望它是单行时它选择两行,我还设置了选择模式

<ListView android:id="@id/android:list"
           android:layout_width="fill_parent"
           android:layout_height="fill_parent" 
           android:choiceMode="singleChoice"   
           android:cacheColorHint="#00000000"
            />

我试过 ListSelector 但是当我点击一个项目时它不会突出显示,直到我滚动列表并突出显示。

@Override
public void onActivityCreated(Bundle savedInstanceState) {
    super.onActivityCreated(savedInstanceState);

    getListView().setSelector(R.drawable.listview_selector);

}

和 :

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_focused="false" android:drawable="@color/listselect_light_blue" />
</selector>

任何帮助,将不胜感激

4

1 回答 1

5

如果要突出显示中的选定项目,请尝试这种方式Listview

这对我有用。

在使用 setSelector(..) 之前,首先在 Listfragment 中设置 Adapter。

 setListAdapter(mAdapter);
 getListView().setSelector(R.drawable.fragment_listselector);      

片段列表选择器.xml

<selector xmlns:android="http://schemas.android.com/apk/res/android"
        android:exitFadeDuration="@android:integer/config_mediumAnimTime">
    <item android:state_activated="true"
            android:drawable="@drawable/list_item_active_pattern"  />
    <item  android:drawable="@drawable/list_bg_pattern" />
</selector>

当调用 onItemClick(..) 时,放置此代码。

    @Override
    public void onItemClick(AdapterView<?> parent, View v, int position, long id)
    {   
            getListView().setItemChecked(position, true);
            getListView().setSelection(position);
            getListView().setSelected(true);

    }
于 2013-01-23T09:06:07.797 回答