使用sqlite数据库绑定listview行以获取自定义行

时间:2010-12-23 16:21:24

标签: android database listview binding

我有一个listview,它从sqlite数据库加载它的数据。 listview中的每一行都有图像,textview和一个复选框。 sqlitedatabase行包含图像和文本数据+其他一些列。

我的问题是我可以将listview与数据库绑定,以便所有行都会自动加载所需的数据。 (image + textview)有一些例子可以绑定一个简单的textview列表。复杂的行怎么样?此外,很少有微调器可以根据其值过滤列表中的数据。 (在我的数据库中充当WHERE子句)

目前我通过为每行生成自定义适配器的视图来管理这一切。所以每次我查询数据库并填充数据。我保留最后的listview结果,根据微调器值等操作/条件创建一个更新的结果,然后通知notifydatdnged to adapter来加载我的新结果。

要添加DELETE,ADD,SEARCH等功能,我必须使用集合管理所有功能。

有没有简单的方法呢?好像数据库很大,那么将大量结果保存在内存中的方法并不好。管理它是痛苦的。 感谢。

2 个答案:

答案 0 :(得分:2)

这是我的行示例,由db + image中的两个记录构建(在当前 - 任何行的一个图像,但可以从db改进特定图像):

    public class DomainAdapter extends SimpleCursorAdapter{
    private Cursor dataCursor;

    private LayoutInflater mInflater;
    ....

    public DomainAdapter(Context context, int layout, Cursor dataCursor, String[] from,
            int[] to) {
        super(context, layout, dataCursor, from, to);
            this.dataCursor = dataCursor;
            mInflater = LayoutInflater.from(context);
    }

    public View getView(int position, View convertView, ViewGroup parent) {
        // A ViewHolder keeps references to children views to avoid unneccessary calls
        // to findViewById() on each row.
        ViewHolder holder;

        // When convertView is not null, we can reuse it directly, there is no need
        // to reinflate it. We only inflate a new View when the convertView supplied
        // by ListView is null.
        if (convertView == null) {
            convertView = mInflater.inflate(layout, null);

            // Creates a ViewHolder and store references to the two children views
            // we want to bind data to.
            holder = new ViewHolder();
            holder.text1 = (TextView) convertView.findViewById(R.id.test_track);
            holder.text2 = (TextView) convertView.findViewById(R.id.test_band);
            holder.icon = (ImageView) convertView.findViewById(R.id.test_artwork);

            convertView.setTag(holder);
        } else {
            // Get the ViewHolder back to get fast access to the TextView
            // and the ImageView.
            holder = (ViewHolder) convertView.getTag();
        }

        // Bind the data efficiently with the holder.
        // Cursor to current item
        dataCursor.moveToPosition(position);
        int title_index = dataCursor.getColumnIndex(fields[0]); 
        String title = dataCursor.getString(title_index);

        int description_index = dataCursor.getColumnIndex(fields[1]); 
        String description = dataCursor.getString(description_index);

        holder.text1.setText(title);
        holder.text2.setText(description);
        holder.icon.setImageResource(R.drawable.alert_dialog_icon);

        return convertView;
    }

    static class ViewHolder {
        TextView text1;
        TextView text2;
        ImageView icon;
    }
}

并使用此适配器:

databaseListAdapter = new DomainAdapter(this, 
                R.layout.test_layout, 
                databaseCursor, 
                new String[] {"title", "description"}, 
                new int[] { R.id.test_track, R.id.test_track });
databaseListAdapter.notifyDataSetChanged();
DomainView.setAdapter(databaseListAdapter);

和布局:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="64dip"
    android:padding="6dip">

    <TextView
        android:id="@+id/test_band"  
        android:layout_width="fill_parent" 
        android:layout_height="26dip" 

        android:layout_below="@+id/test_track"
        android:layout_alignLeft="@id/test_track"
        android:layout_alignParentBottom="true"

        android:gravity="top" />

    <TextView
        android:id="@id/test_track"  
        android:layout_marginLeft="6dip"
        android:layout_width="fill_parent"
        android:layout_height="26dip"

        android:layout_toRightOf="@+id/test_artwork"

        android:textAppearance="?android:attr/textAppearanceMedium"
        android:gravity="bottom" />

    <ImageView
        android:id="@id/test_artwork"
        android:layout_width="56dip"
        android:layout_height="56dip"
        android:layout_gravity="center_vertical" />

</RelativeLayout>

答案 1 :(得分:0)

  

我的问题是我可以绑定我的列表视图   用数据库使所有行   将加载所需的数据   自动。 (图片+ textview)   有一些例子可以绑定一个简单的   文本视图列表。怎么样复杂   行?

是的,您可以通过实施自己的Cursor并覆盖CursorAdapter来执行bindView()复杂的视图映射。