我想在 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 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; is = s + data.get(i);
}
tv.setText(s);
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。