我需要创建一个由不同宽度和颜色的矩形列表组成的布局。所以我决定创建一个自定义视图,它绘制一个矩形并创建一个CursorAdapter
的子类,它将用我的矩形填充ListView
,用Cursor中的数据设置它们的大小和颜色。
我尝试在newView()
方法中创建视图并将其添加到root,但它无效。
我是否需要创建一些布局并在newView()
中对其进行充气?我该如何设置矩形的大小和颜色?
我看过this answer,与我的问题没有任何共同之处。请在将其标记为已回答之前阅读该问题。
更新
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
//View is created programmatically
//Set color depending on context type.
View view = LayoutInflater.from(context).inflate(R.layout.record_item_layout, parent, false);
Log.i(LOG_TAG, "(newView)new view have been created");
return view;
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
Log.i(LOG_TAG, "(bindView) binding to out view");
int colorId = cursor.getInt(cursor.getColumnIndex(TrackerContract.UserRecordsEntry.COLUMN_CONTEXT_ID));
RecordView recordView = (RecordView) view;
//These layout params we need to set height to MAX, and width depending on record duration.
recordView.setLayoutParams(new ViewGroup.LayoutParams(200, ViewGroup.LayoutParams.MATCH_PARENT));
recordView.setColorId(colorId);
recordView.invalidate();
//do something?
}
<?xml version="1.0" encoding="utf-8"?>
<mypackage.RecordView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="200dp"
android:layout_height="match_parent"
android:id="@+id/record_view"
custom:colorId="5"/>
答案 0 :(得分:0)
有点自己解决了这个问题。在newView()
方法中扩展自定义视图的最简单方法是创建包含该项目的布局。在我的情况下
<?xml version="1.0" encoding="utf-8"?>
<mypackage.RecordView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:custom="http://schemas.android.com/apk/res-auto"
android:layout_width="200dp"
android:layout_height="match_parent"
android:id="@+id/record_view"
custom:colorId="5"/>
之后,我可以在bindView()
方法中更改视图大小和颜色。