我正在用 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 的数据?