0

在我的应用程序中,我在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

请帮我。

4

1 回答 1

0
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:orientation = "vertical"
    android:layout_height="fill_parent"
    >

    <ImageView
            android:id="@+id/imageview1"
            android:layout_width="120dp"
            android:layout_height="100dp"
                />

             <TextView
            android:id="@+id/text"
            android:layout_width="50dp"
            android:layout_height="wrap_content"   
            android:layout_marginTop="10dp" 



             />         


</LinearLayout>
于 2012-12-19T09:35:13.603 回答