通常使用 ListView 将图像和文本添加到 ListView 项目是直截了当的。您可以使用自定义适配器创建和适配器以及 setListAdapter(adapter)。
我想创建一个片段应用程序,其中包含与 ImageView 相同的列表。我已经搜索了一个示例,但找不到任何具有图像的示例。有人可以指点我一个例子,这样我就可以看到它是如何完成的?
它是在布局领域的 XML 中完成的吗?例如,您将如何使用以下 xml 声明它。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent" android:layout_height="match_parent">
<fragment class="com.demo.android.FragmentLayout$ArticleFragment"
android:id="@+id/article" android:layout_weight="1"
android:layout_width="0px" android:layout_height="match_parent" />
<FrameLayout android:id="@+id/details" android:layout_weight="1"
android:layout_width="0px" android:layout_height="match_parent"
android:background="?android:attr/detailsElementBackground" />
</LinearLayout>