我需要在每个网格项内的 3 个文本视图中显示数据,而且我希望每个网格项都是方形的。而且 cursoradapter 都是基于搜索的。
根据我通过研究发现的需要,我应该为每个网格项创建自己的视图组,并将高度设置为与宽度相同(在 onMeasurement 中),从而产生适当的正方形。但是现在我来自 cursoradapter 的数据不会显示在视图中。
我可以说正在引用 cursoradapter,因为 gridview 中白框的数量会根据我搜索的内容而变化。
我哪里错了?
<ubiquia.sqbxsync.main.GridViewGroup
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#ffffff">
<RelativeLayout
android:id="@+id/gridLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#ffffff">
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:ellipsize="end"
android:singleLine="true"
android:text="TextView"
android:textSize="15dp"
android:textColor="#ff000000" />
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_below="@+id/textView1"
android:layout_marginLeft="10dp"
android:ellipsize="end"
android:singleLine="true"
android:text="TextView"
android:textSize="11dp"
android:textColor="#ff000000" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/textView2"
android:layout_marginLeft="10dp"
android:ellipsize="end"
android:singleLine="true"
android:text="TextView"
android:textSize="11dp"
android:textColor="#ff000000" />
</RelativeLayout>
package ubiquia.sqbxsync.main;
import android.content.Context;
import android.util.AttributeSet;
import android.view.ViewGroup;
public class GridViewGroup extends ViewGroup {
public GridViewGroup(Context context, AttributeSet attrs) {
super(context, attrs);
}
@Override
protected void onLayout(boolean changed, int l, int t, int r, int b) {
// Do nothing
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, widthMeasureSpec);
}
}
我的光标适配器
public class GridCursorAdapter extends CursorAdapter {
public GridCursorAdapter(Context context, Cursor c) {
super(context, c);
}
@Override
public View newView(Context context, Cursor cursor, ViewGroup parent) {
LayoutInflater inflater = (LayoutInflater) context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View gridView = inflater.inflate(R.layout.grid_item, null, true);
return gridView;
}
@Override
public void bindView(View view, Context context, Cursor cursor) {
TextView tv1 = (TextView) view.findViewById(R.id.textView1);
TextView tv2 = (TextView) view.findViewById(R.id.textView2);
TextView tv3 = (TextView) view.findViewById(R.id.textView3);
tv1.setText(cursor.getString(cursor.getColumnIndexOrThrow("trackingnumber")));
tv2.setText(cursor.getString(cursor.getColumnIndexOrThrow("recipient_name")));
tv3.setText(cursor.getString(cursor.getColumnIndexOrThrow("carrier_name")));
}
}