如何更改颜色并删除单击的列表视图项?

发布于 2024-12-07 03:00:42 字数 70 浏览 0 评论 0原文

我在程序中使用列表视图来扩展活动。我需要更改单击的列表项的颜色并删除单击的列表项。怎么做呢?非常感谢任何帮助,并提前致谢...

I am using listview in my program that extends activity. I need to change the color of the clicked list item and strike out the clicked list item. How to do it? any help is really appreciated and thanks in advance...

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

酷到爆炸 2024-12-14 03:00:42

您需要为列表项创建自定义背景可绘制对象。

此链接有帮助: http://developer.android.com/guide/topics /resources/drawable-resource.html

You'll need to create your custom background drawable for list item.

this links helps: http://developer.android.com/guide/topics/resources/drawable-resource.html

樱花坊 2024-12-14 03:00:42

那么您可以将 OnItemClickListener 添加到列表视图。当选择一个项目时。设置该项目的背景并在文本视图上使用以下代码将其删除

textView.setPaintFlags(textView.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);

Well you could add a OnItemClickListener to the list view. And when a item is selected. Set the background of that item and use the following code on the textview to strike it out

textView.setPaintFlags(textView.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
清引 2024-12-14 03:00:42

您需要为列表构建自定义适配器。
此外,在自定义适配器中,您将需要覆盖该功能

@Override         
public View getView(int position, View convertView, ViewGroup parent) 
{              
    View view = super.getView(position, convertView, parent); 
    view.setBackgroundColor(Color.parseColor("#ffffff"));               

    return view;         
}

,这样您就可以在选择时以及在某些操作后返回时执行文本删除单元格颜色更改。

请输入您列表中的代码片段,适配器将为您提供更好的帮助。


维布

You need to build the custom adapter for the List.
Also in Custom adapter will need to override the function

@Override         
public View getView(int position, View convertView, ViewGroup parent) 
{              
    View view = super.getView(position, convertView, parent); 
    view.setBackgroundColor(Color.parseColor("#ffffff"));               

    return view;         
}

This way you can do Text Striking out cell color change on selection and when it comes back after some operation.

Please either put your code snippet of you list and adapter will help you better than.


Vib

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文