当前位置: 首页 > 知识库问答 >
问题:

如何更改列表视图中选定项目的颜色?

那博瀚
2023-03-14

我需要在单击ListView时更改选定项目的颜色,以便用户知道单击了什么。

到目前为止,我已经为此编写了以下代码:

listview.setOnItemClickListener(new OnItemClickListener() {
        @Override
        public void onItemClick(AdapterView<?> parent, View view,
                int position, long id) {
    for (int a = 0; a< parent.getChildCount();a++){
    parent.getChildAt(a).setBackgroundColor(Color.TRANSPARENT);
    view.refreshDrawableState();
     if(parent.getChildAt(a) == view){
         view.setBackgroundColor(getResources().getColor(R.color.soft_opaque));
         view.refreshDrawableState();
    }
}

它所做的是更改所选项目的背景色,并保持原样,直到我单击另一个项目,使其仅更改当前项目所选的背景色

我还想知道是否有一种XML方法可以做到这一点。到目前为止,我发现:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@color/orange" /> <!-- pressed -->
    <item android:state_focused="true" android:drawable="@color/black" /> <!-- focused -->
    <item android:state_selected="true" android:state_pressed="true" android:drawable="@color/black" /> <!-- focused and pressed-->
    <item android:drawable="@color/black" /> <!-- default -->
</selector> 

但我还没有得到之前代码的功能。不过,它所做的是更改背景颜色,并在单击时更改背景颜色,但不使用特定的颜色保留选定的项目

编辑:我的适配器

    public class ExtraAdapter extends ArrayAdapter<String> {
    Context context;
    String[] tittleArray;

    public ExtraAdapter(Context c, String[] titles) {
        super(c, R.layout.custom_listview_extra, titles);
        this.context = c;
        this.tittleArray = titles;
    }

    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        View row = convertView;
        if (row == null) {
            LayoutInflater inflater = (LayoutInflater) context
                    .getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            row = inflater.inflate(R.layout.custom_listview_extra, parent,
                    false);
        }
        TextView myTitle = (TextView) row.findViewById(R.id.plato_extra);
        myTitle.setText(tittleArray[position]);

        return row;
    }

}

我的活动

    public class ExtraMenu extends ActionBarActivity {
    ListView lcategory;
    ListView lextras;
    ExtraAdapter adapter;
    String[] categoria;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_extra_test);
        lcategory = (ListView) findViewById(R.id.categorias);
        String[] listaExtras = getResources().getStringArray(R.array.listaExtras);
        adapter = new ExtraAdapter(getApplicationContext(), listaExtras);
        lcategory.setAdapter(adapter);

        lcategory.setOnItemClickListener(new OnItemClickListener() {
            @Override
            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id) {
                parent.setSelected(true);
                /*
                for (int a = 0; a< parent.getChildCount();a++){
                    parent.getChildAt(a).setBackgroundColor(Color.TRANSPARENT);
                    view.refreshDrawableState();
                    if(parent.getChildAt(a) == view){
                        view.setBackgroundColor(getResources().getColor(R.color.soft_opaque));
                        view.refreshDrawableState();
                    }
                }*/
            }
        });
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        super.onCreateOptionsMenu(menu);
        getMenuInflater().inflate(R.menu.extra_test, menu);
        return true;
    }
    }

我的活动XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    android:weightSum="2" >

    <ImageView
        android:id="@+id/logo"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_weight="1.5"
        android:src="@drawable/logo" />

    <ListView
        android:id="@+id/categorias"
        android:layout_weight="0.5"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        //android:background="@drawable/list_color"
        android:layout_marginTop="20dp">
    </ListView>

</LinearLayout>

我的适配器XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    style="@style/Widget.AppCompat.ListView.Menu"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="horizontal"
    android:paddingTop="10dip"
    android:paddingBottom="10dip">

    <TextView
        android:id="@+id/plato_extra"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="20dp"
        //android:background="@drawable/list_color"
        android:textColor="#000000"
        android:textSize="25sp" />

</RelativeLayout>

共有2个答案

郝昊天
2023-03-14

使用

listView.setOnItemSelectedListener(new OnItemSelectedListener() {

                @Override
                public void onItemSelected(AdapterView<?> arg0, View arg1,
                        int arg2, long arg3) {
                    // TODO Auto-generated method stub
                    arg0.setSelected(true);
                }

                @Override
                public void onNothingSelected(AdapterView<?> arg0) {
                    // TODO Auto-generated method stub

                }
            });

在你的选择器Drawable中

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@color/green" /> <!-- pressed -->
    <item android:state_focused="true" android:drawable="@color/black" /> <!-- focused -->
    <item android:state_selected="true"  android:drawable="@color/black" /> <!-- selected-->
    <item android:drawable="@color/black" /> <!-- default -->
</selector> 

我还没有测试它,但肯定这将工作。

陆子石
2023-03-14

按你写选择器的方式,当你按下该行时,就会变成黑色。这是因为按下的视图也是聚焦的,并且第一个匹配被按下并聚焦。更改顺序,放弃onItemClick的实现

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true" android:drawable="@color/green" /> <!-- pressed -->
    <item android:state_focused="true" android:drawable="@color/black" /> <!-- focused -->
    <item android:state_focused="true" android:state_pressed="true" android:drawable="@color/black" /> <!-- focused and pressed-->
    <item android:drawable="@color/black" /> <!-- default -->
</selector> 
 类似资料:
  • 我正在使用带有的,我想知道如何最有效地更改TabLayout中选定选项卡的图标的颜色。 谷歌的Youtube应用程序是如何实现这一点的完美参考。在主页上,有四个深灰色图标。选择特定选项卡后,选项卡图标变为白色。 没有任何第三方库,我怎样才能达到同样的效果? 一个可能的解决方案显然是用选择器。但是在这种情况下,我必须找到图标的白色和灰色版本,然后在选项卡被选中或取消选中时切换图标。我想知道是否有一个

  • 我的xml代码如下: 我怎么在这里更改标题的颜色?我对android很陌生。

  • 问题内容: 我所希望的是能够将列表中项目符号的颜色更改为浅灰色。它默认为黑色,我不知道如何更改它。 我知道我只能使用图像;如果可以的话,我宁愿不这样做。 问题答案: 项目符号从文本中获取颜色。因此,如果您要使用不同于列表中文本颜色的项目符号,则必须添加一些标记。 将列表文本换成跨度: 然后稍微修改您的样式规则:

  • 我有一个具有自定义列表视图的应用程序,它具有文本视图和图像(删除),当我单击图像时,该行的背景颜色应更改,当我再次单击相同的图像时,其背景应更改为默认颜色。我可以改变背景颜色,但只有一次,我不能改变它两次,我的意思是我不能恢复到它的默认颜色。 这是我的密码。。。 CustomListView.java 还有一个问题是,背景色不是我在《颜色》中提到的颜色。xml,我通过放置不同的颜色进行了测试,但是

  • 我有一个列表视图,当我的活动开始时,我想要第一个项目将有背景,其他项目没有任何背景。之后,如果用户选择任何其他项目,则该特定项目的背景现在将为蓝色,其余部分将没有任何背景。请帮帮我。 My layout_effect.xml 设置默认背景的GetView代码 listview的任何我的onclickListner 我的列表视图xml 请帮帮我,我怎么才能解决这个问题,我从昨天开始就被困在里面了。

  • 我尝试使用谷歌图表,谷歌图表中的数据格式像 打印时间输出为: 问题是我不知道如何添加'new Date()',并将Date放入括号中不加引号。有什么想法吗??提前谢谢!