gpt4 book ai didi

android - 在 ListView 中分别设置各行的背景颜色

转载 作者:行者123 更新时间:2023-11-29 02:09:06 24 4
gpt4 key购买 nike

我有一个 ListView ,它列出了我的 Android 应用程序中的作业。我想根据他们的工作类型为行着色。下面是我用来设置 ListView 的代码。

    startManagingCursor(cursor);
adapter = new SimpleCursorAdapter(this, R.layout.menu_item, cursor, FROM, TO);
menuList.setAdapter(adapter);

下面是 Listview 项目的 Xml 布局。

<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal"
android:padding="10sp">
<TextView
android:id="@+id/rowid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/exhibitor_header" />
<TextView
android:id="@+id/rowidtwo"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textColor="@color/listview_background"
android:layout_below="@+id/rowid"/>
</RelativeLayout>

如何设置 Listview 以与其工作类别相关的颜色显示每一行。我可以在不使用自定义适配器的情况下完成吗?

最佳答案

这是一个例子:Android – Applying Alternate Row Color in ListView with SimpleAdapter .

定义一个与上述示例相同的自定义适配器,您必须在 getView() 方法中放置一个检查作业类型的条件,并根据该条件应用不同的背景颜色。

关于android - 在 ListView 中分别设置各行的背景颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8473440/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com