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.
我有一个简单的问题,哪种方法最好,为什么?使用 ListView 或 Innflate 视图并将它们添加到视图中?
肯定用ListView,如果没有,为什么存在listview?
您必须使用列表视图和自定义适配器。
Listviews 是标准的 Android UI 元素。所有开发人员都使用列表视图,因此如果有一天其他开发人员必须帮助/继续您的代码,您的代码会更好
列表视图也会更有效率。
希望这可以帮助
这取决于。你想滚动你添加的视图吗?然后更喜欢ListView
ListView
如果您不想在新添加的视图中滚动,请考虑TableLayout动态添加新行。
TableLayout