2

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

我得到了什么在此处输入图像描述

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

主要的.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>
4

1 回答 1

2

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

于 2013-07-17T11:10:49.027 回答