在我的应用程序中,我在galleryview中显示了图像。但我想要的是图像和该图像下方的文本。考虑到我在图库视图中有大约10个图像,我希望每个图像下方都有一个描述该图像的文本(该图像图像长度)。我尝试了以下 xml 代码。但只有文本显示图像没有出现
我的 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ImageView
android:id="@+id/imageview1"
android:layout_width="120dp"
android:layout_height="100dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="-20dp"
/>
<TextView
android:id="@+id/text"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"
android:layout_below="@+id/imageview1"
/>
</RelativeLayout>
我想要这样的设计:
galleryview1
image1 image2 image3
text1 text2 text3
galleryview2
image1 image2 image3
text1 text2 text3
请帮我。