列表视图问题

发布于 2024-11-15 05:35:51 字数 576 浏览 3 评论 0原文

我在列表视图中遇到问题..我想将不同的字段放在同一个列表视图中这可能吗?

像这样?

DBAdapter db = new DBAdapter(.this);
        db.open();
        List<String> ct = new ArrayList<String>();      
        ct = db.getAllAccounts();   
        List<String> sd = new ArrayList<String>();      
        sd = db.getAllAmount();         
        Account = (ListView) findViewById(R.id.ListView_addAccount);
        Account.setAdapter(new ArrayAdapter<String>(this,R.layout.list_contas_layout,R.id.text1,R.id.text2, ct,sd));

有这样的东西可以用吗? 对不起我的英语;)

i have a problem in a list view.. i want to put different fields in the same listview is this possible?

like this?

DBAdapter db = new DBAdapter(.this);
        db.open();
        List<String> ct = new ArrayList<String>();      
        ct = db.getAllAccounts();   
        List<String> sd = new ArrayList<String>();      
        sd = db.getAllAmount();         
        Account = (ListView) findViewById(R.id.ListView_addAccount);
        Account.setAdapter(new ArrayAdapter<String>(this,R.layout.list_contas_layout,R.id.text1,R.id.text2, ct,sd));

theres something like this to use?
sorry about my english;)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

绝对地。看一下 SimpleCursorAdapter。我不确定您正在使用什么数据库,但是使用 Cursor 类对于此类事情来说是很正常的。否则,您将必须创建自己的自定义适配器。

Absolutely. Take a look at SimpleCursorAdapter. I'm not sure what database you're using, but using the Cursor class is pretty normal for this sort of thing. Otherwise you're going to have to create your own custom adapter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文