可能重复:
How to use an existing database with an Android application
我正在使用c#编写Android应用程序,而我使用sqlite来存储我的数据。 我想从数据库中获取数据并显示到textview中但返回null。
protected void GetCursorView(string username, string sValue)
{
Android.Database.ICursor icTemp = dt.GetRecordCursor(username, sValue);
if (icTemp != null)
{
icTemp.MoveToFirst();
name.Text = icTemp.GetString(1);//name is TextView
post.Text = icTemp.GetString(3);
}
else
{
tresult.Text = dt.Message;
}
}
如何在Textview上显示sqlite的数据?