我正在尝试为我的应用程序实现滚动类型的图库(就像全尺寸图片浏览器一样,我们在默认的android gallery上获得了)

我得到什么

相反,我希望图库图像显示在整个屏幕上。

main.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"
    android:background="@android:color/white"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/left_arrow_imageview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerVertical="true"
        android:layout_marginLeft="15dip"
        android:src="@drawable/arrow_left_disabled" />

    <Gallery
        android:id="@+id/gallery"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_marginLeft="20dip"
        android:layout_marginRight="20dip"
        android:layout_toLeftOf="@+id/right_arrow_imageview"
        android:layout_toRightOf="@+id/left_arrow_imageview"
        android:scaleType="fitXY"
        android:spacing="20dip" />

    <ImageView
        android:id="@+id/right_arrow_imageview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true"
        android:layout_marginRight="15dip"
        android:src="@drawable/arrow_right_enabled" />

</RelativeLayout>

最佳答案

尝试将主要相对布局设置为fill_parent,将ImageView设置为match_parent

10-07 22:47