说, 您在 XML 中定义了文本查看, 以 id < enger> tv streng> 定义
TextViewById(R.id.tv);
t= (TextView) findViewById(R.id.tv);
并要在从数据库查询后设置文本。
假设,您有一个表格,有两个A和B栏,并使用一个查询方式,例如:
String q = "SELECT * FROM table_name where(your_condition)";
Cursor c = db.rawQuery(q, null);
说您想要使用列的值 < 加强> A 强 >, 使用 < code> c. getString (c. get ColumnIndex ("A")); code > 。
使用光标c如下:
if(c.getCount() == 0)
{
//no data found
}
else {
String j="";
c.moveToFirst();
do {
String cm = c.getString(c.getColumnIndex("A"));
j = j+cm;
} while (c.moveToNext());
c.close();
现在将此文本设置为您的 TextBox( 动态 : D) :
t.setText(j);
这是完整的样本 : < a href=" http://www.mediafire.com/?569on9rvb4qoa7w" rel = "nofollow" > Database Project 由我(使用简单的方法)来尝试。