我有一个列表视图,其中列出了我的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以显示与其作业类别相关的颜色中的每一行。我可以不使用自定义适配器吗?
答案 0 :(得分:1)
以下是您的示例:Android – Applying Alternate Row Color in ListView with SimpleAdapter。
定义与上例相同的自定义适配器,您必须设置一个条件来检查getView()
方法中的作业类型,并根据您可以应用不同的背景颜色。