我正在尝试为列表视图提供备用背景颜色。我正在使用游标适配器。 这是我的CustomCursorAdapter类
CustomCursorAdapter.java
public class CustomCursorAdapter extends CursorAdapter {
public CustomCursorAdapter(Context context, Cursor c) {
super(context, c);
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
View retView = inflater.inflate(R.layout.single_row_item, parent, false);
return retView;
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
TextView textViewPersonName = (TextView) view.findViewById(R.id.tv_person_name);
textViewPersonName.setText(cursor.getString(cursor.getColumnIndex(cursor.getColumnName(1))));
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
final View row = super.getView(position, convertView, parent);
if (position % 2 == 0)
row.setBackgroundColor(Color.parseColor("#191919"));
else
row.setBackgroundColor(Color.parseColor("#323232"));
return row;
}
}
在getView()中;我有setBackgroundColor来查看。但它们没有得到正确分配只有texview背景颜色受到影响。这是我的single_row_item.xml
single_row_item.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp">
<ImageView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/imageView2"
android:src="@drawable/icon" />
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:textAppearance="?android:attr/textAppearanceMedium"
android:text="Medium Text"
android:id="@+id/tv_person_name"
android:layout_marginLeft="10dp" />
</LinearLayout>
这是我的输出。请告诉我怎么做。
答案 0 :(得分:0)
尝试将用于设置替代行颜色的逻辑移至bindView()
方法,而不是getView()
。
在CursorAdapter中,您将获得newView()
中的布局并绑定bindView()
中的数据。 CursorAdapter已经在getView()
中重复使用模式,因此您不必再次执行此操作。
getView()
CursorAdapter
代表newView()
bindView()
和getView()
。
因此newView()
方法使用视图回收机制以及将行构造委派给bindView()
和CursorAdapter
方法。
这意味着在newView()
的情况下,通过实施bindView()
和{{1}}来解决所有问题。
答案 1 :(得分:0)