..我想列出不同的图片..所以
答案 0 :(得分:0)
我不完全明白你的确切要求。无论如何,您可以使用ListViews制作图像和文本视图列表。
假设您想要一个ListView,其中每行必须包含图像和文本,您必须在/ layout /文件夹中定义一个xml。这是一个示例custom_row.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="horizontal">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="10dip"
/>
</LinearLayout>