程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> java-在 Textview 來查看數據庫

java-在 Textview 來查看數據庫

編輯:編程綜合問答
在 Textview 來查看數據庫

我想在 activity 中使用一個 Textview 來查看數據庫。
setText()代碼:

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_viewlogs); 
TextView tv = (TextView) findViewById(R.id.tvSqlinfo);
LogsDB info = new LogsDB(this);
info.open();
ArrayList<String> data = info.getData();
info.close();
tv.setText(data);
}

好像在 tv.setText(data);處獲的錯誤:"The method setText(CharSequence) in the type TextView is not applicable for the arguments (ArrayList)"。然後當我建議修復時,tv.setText(data)就變成 tv.setText((CharSequence) data);
當我檢測程序時,有錯誤顯示它不能被cast。如何在 Textview 來查看數據庫?

最佳回答:


0.0 你的data是個Arrylist,把它裡面的數據遍歷出來再settext();

ArrayList data = info.getData();
info.close();
String s = "";
//數據多的時候用線程遍歷~
for(int i = 0; i<data.size(); i++){
s = s + data.get(i);
}
tv.setText(s);

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved