为了账号安全,请及时绑定邮箱和手机立即绑定

将列表添加到 ArrayList<String> 并在 ListView 上显示

将列表添加到 ArrayList<String> 并在 ListView 上显示

噜噜哒 2021-07-12 13:05:20
我想从我从 TimePicker 获得的时间开始制作 ListView 我成功地将时间添加到变量中。但是当我尝试将它们添加到 ListView 时,我什么也没得到。    addArray = new ArrayList<String>();    ArrayAdapter<String> adapter = new ArrayAdapter(chart_houres_cosher.this,android.R.layout.simple_list_item_1,addArray);    ListView listView = (ListView) findViewById(R.id.leassons);    listView.setAdapter(adapter);单击按钮    textView.setText( firstHouer + " : " + firstdMinute + " - " + seccoundHouer + " : " + seccoundMinute );    addArray.add(firstHouer + " : " + firstdMinute + " - " + seccoundHouer + " : " + seccoundMinute);我可以在 TextView 上看到结果,但在 ListView 上看不到。
查看完整描述

2 回答

?
慕尼黑8549860

TA贡献1818条经验 获得超11个赞

你的数据在哪里?从您的代码中,您正在尝试添加一个空数组。

addArray = new ArrayList<String>();

你只是声明了addArray,它里面没有任何数据。您正在向 ListView 添加空数组。


查看完整回答
反对 回复 2021-07-14
  • 2 回答
  • 0 关注
  • 254 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信