-1

实际上我有一堆图像,我将这些图像传递给我的自定义数组适配器以显示在列表视图中,我在列表视图中获得了精彩的图像演示。但我想要的是一次显示一张图像以全屏显示在列表中。意味着我想在(100%)全屏活动中显示我的一行。我为此浪费了 2 天时间,但仍然没有得到解决方案。

当我在相对布局(id = subparent)中给出 android:layout_height="wrap_content" 时,它会重叠而不是我想要的,当我给出 android:layout_height="430dp" 时,它看起来就像我想要的。但我不能这样做,因为我不知道它会在哪个设备上运行?

我的 XML 文件如下:

  <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
     >

    <RelativeLayout
        android:id="@+id/subparent"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:layout_alignParentTop="true" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:src="@drawable/img2" />

        <FrameLayout
            android:id="@+id/flbotom"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" 
            android:background="@drawable/bottom_nav"
            android:layout_alignParentBottom="true">
        </FrameLayout>

    </RelativeLayout>

</RelativeLayout>
4

1 回答 1

1

我通过简单地放置虚假视图找到了解决方案。

于 2014-01-29T07:00:49.353 回答