Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在开发一个 Activity 有 8 个 ListView 的 App,我需要分别在 MySql 中插入数据,我该怎么做?
ListView只显示数据,点击时没有动作,所以没有ListView会更好,也许是在TextView中输入数据?
您应该决定显示数据的最佳方式。同一个活动中的 8 个列表视图对我来说听起来有点奇怪。在像平板电脑这样的设备中,它可能会没问题,但在像手机这样的小型设备上,它会非常难以处理。
如果你要显示大量数据,listview 是最好的选择。但如果只有一两个字符串,请使用文本视图。
反正。要在每个列表视图中显示数据,您应该为每个列表视图创建一个适配器。
祝你好运!