我想在 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 来查看数据库?
墨色风雨
相关分类