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.
我的应用程序中有一个页面,用户可以在其中看到新闻提要(主要是图像)。如何显示这些图像(也许使用 LinearLayout?)?如果是这样,我如何在向下滚动时动态增加这个可滚动布局的大小?(加载更多图像)
您必须使用ListView。从文档:
A view that shows items in a vertically scrolling list.
您必须向ListAdapter您的 ListView 提供一个。基本上 apdater 是填充ListView. 它是高度可定制的。您可以简单地将您的数据集或适配器传递给extend适配器并自定义getView方法以获得所需的数据表示。
ListAdapter
ListView
extend
getView
教程可以在这里找到
是的,您必须使用 listview,只需添加内容并通知适配器。