0

现在我正在使用:

android:listSelector="@drawable/bg_list_item"
android:drawSelectorOnTop="true"

其中 bg_list_item.xml:

<?xml version="1.0" encoding="utf-8"?>

<item android:state_selected="true">
    <shape android:shape="rectangle">
        <gradient android:startColor="#0000ff"/>
    </shape>
</item>

<item android:state_focused="false"
      android:state_pressed="false"
      android:state_selected="false">
    <shape android:shape="rectangle">
        <gradient android:startColor="#ff0000"/>
    </shape>
</item>

但是第一个项目不起作用,并且有时在滚动时(当我靠近列表视图的顶部/底部时)并且从不在 listView.setSelection(index) 上突出显示选定的项目。

我是否必须以编程方式突出显示当前项目?

4

4 回答 4

3

这是因为在触摸模式下没有选定的项目。请参阅此处以获取解释。

你可以用选择器来做,但它需要三件事......

1)您必须使列表行可选择

getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);

2) 将激活状态的条件添加到您的选择器文件中:

    <item android:state_activated="true" >
        <shape android:shape="rectangle"> 
        <gradient android:startColor="#0000ff"/>

3)您需要创建一个自定义适配器来跟踪列表中每个位置的状态,以便在滚动时保持正确的状态。

编辑

breceivemail 的答案更适合您的需求。我的,虽然它可以工作,但对于多次检查的项目类型列表(通过将其更改为 CHOICE_MODE_MULTIPLE)会更好,并且对于您需要的工作比必要的工作更多。

于 2012-05-14T12:28:33.670 回答
2

定义一个自定义适配器并在其 getView() 方法中:

private int selectedItem;

// is used outside the adapter for example OnItemClickListener
public void setSelectedItem(int position) {
    selectedItem = position;
}

@Override
public View getView(int position, View convertView, ViewGroup parent) {
   //...
   // set selected item
    LinearLayout activeItem = (LinearLayout) rowView;
    if (position == selectedItem)
    {
       activeItem.setBackgroundResource(R.drawable.background_dark_blue);
    }
    else
    {
       activeItem.setBackgroundResource(R.drawable.border02);
    }
   //...
}

background_dark_blue.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android" >

    <item>
<shape android:shape="rectangle" >

            <solid android:color="@color/lightBlue6" />
            <!-- border width and color -->

            <stroke
                android:width="2dp"
                android:color="#FF0404B4" />

            <padding
                android:bottom="2dp"
                android:left="2dp"
                android:right="2dp"
                android:top="2dp" />
        </shape></item>

</layer-list>

边框02.xml

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <shape android:shape="rectangle" android:layout_width="wrap_content">
            <stroke android:width="0.5dp" android:color="#FF000000" />
            <solid android:color="#FFFFFFFF" />
            <padding android:left="0dp" android:top="0dp" android:right="0dp"
                android:bottom="0dp" />
            <corners android:radius="0dp" />
        </shape>
    </item>


</layer-list>
于 2012-05-14T12:23:35.617 回答
1

“android:listSelector”属性用于指定项目被点击时的背景。要突出显示第一项或单击后选择的一项,您需要以编程方式进行。

于 2012-05-14T12:25:59.100 回答
0

ListViews 默认没有chioceMode集合(它被设置为none),因此当前的选择不会在视觉上显示出来。使用该choiceMode属性将使您达到所需的方面。

你也可以看看这个解决方案,也许它也对你有用。

于 2012-05-14T12:28:58.973 回答