1

我有一个带有自定义适配器的 listView。选择时,我已使 listView 项目的背景更改颜色。这在三星 Galaxy S2 上的 Ice Cream Sandwich 4.0.4 和模拟器上的 ICS 4.0.3 上完美运行。但它不适用于 4.2.2 JellyBean 模拟器。在 JB 上,当一个项目被选中时,它的背景保持不变。

这是我的代码的一部分,其中我有在选择项目时设置背景颜色的逻辑:

private int mItemIndex = -1;

@Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View v = convertView;           
        ....

        if (convertView == null) {
            ....
            ....

        } else {
            /* To highlight the selected item */
            if (position == mItemIndex) {
                convertView.setSelected(true);
                convertView.setPressed(true);
                convertView.setBackgroundColor(context.getResources().getColor(R.color.SkyBlue));
            } else {
                convertView.setSelected(false);
                convertView.setPressed(false);
                convertView.setBackgroundColor(context.getResources().getColor(R.color.WhiteSmoke));
            }
            /* To highlight the selected item - end */

            ....
            ....

        return v;
    }

或者,我尝试 convertView.setBackgroundResource(context.getResources().getColor(R.color.SkyBlue));了而不是 setBackgroundColor,但它也不起作用。

有没有办法让它在 Jellybean 上工作?还是我在代码中遗漏了什么?

谢谢。

4

1 回答 1

0

采用具有两个不同状态图像的自定义选择器进行选择和非选择

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

    <item android:drawable="@drawable/pause_button"
          android:state_selected="true" />
    <item android:drawable="@drawable/play_button" />
</selector>

1.在你的活动中创建一个全局变量

View previous;(以您的列表行视图组)

在你的 onCreate 方法中,在 setContentView 之后像这样初始化

previous=new View(context);

在你的 listView 的 onItemClick 侦听器中这样做

list.setOnItemClickListener(new OnItemClickListener() {

                public void onItemClick(AdapterView<?> arg0, View view,
                        int arg2, long arg3) {
                    view.setSelected(true);
                                       previous.setSelected(false);
                                        previous=current;
                }
            });
于 2013-03-23T15:20:26.167 回答