我的应用程序有SQLiteDataBase表有两个字段
1.sender .... 2.message
messagedb=context.openOrCreateDatabase("message",0, null);
messagedb.execSQL("CREATE TABLE IF NOT EXISTS tab2(sender INT(13),body varchar)");
mydb.execSQL("INSERT INTO tab2 VALUES('"+sender+"','"+sb+"')");
//sb contains message
如何从数据库填充ListView,如
http://a6.sphotos.ak.fbcdn.net/hphotos-ak-ash4/483993_349052115164919_754938581_n.jpg
图片空间包含联系人图片,上面的文本字段包含发件人姓名(联系人姓名),下面放置消息....我也希望添加消息收到日期和时间....还有任何想法吗?
答案 0 :(得分:0)
创建自定义SimpleCursorAdapter。我认为您足够聪明,可以在数据库中查询所需的列。 一旦您的cusror准备就绪,请将其传递给Custom Adapter。
以下代码段将为您提供帮助。
cursor = managedQuery(ContactsContract.Contacts.CONTENT_URI, null,
null, null, null);
contactList.setAdapter(new MyCursorAdapter(this, R.layout.row, cursor,
new String[] { ContactsContract.Contacts.DISPLAY_NAME,
ContactsContract.Contacts.LAST_TIME_CONTACTED },
new int[] { R.id.name, R.id.email }));
<强> MyCursorAdapter.java 强>
public class MyCursorAdapter extends SimpleCursorAdapter {
private Cursor cursor;
private int layout;
private Context context;
public MyCursorAdapter(Context context, int layout, Cursor cursor,
String[] from, int[] to) {
super(context, layout, cursor, from, to);
this.context = context;
this.cursor = cursor;
this.layout = layout;
}
@Override
public View getView(int position, View convertView, ViewGroup parent) {
cursor.moveToPosition(position); <---- This is very important.
LayoutInflater inflater = (LayoutInflater) context
.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view = inflater.inflate(layout, null);
TextView txtName = (TextView) view.findViewById(R.id.name);
TextView txtEmail = (TextView) view.findViewById(R.id.email);
int nameColumnIndex = cursor
.getColumnIndex(ContactsContract.Contacts.DISPLAY_NAME);
int frequencyColumnIndex = cursor
.getColumnIndex(ContactsContract.Contacts.TIMES_CONTACTED);
txtName.setText(cursor.getString(nameColumnIndex));
txtEmail.setText(cursor.getString(frequencyColumnIndex));
return view;
}
}