我想在 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);