RelativeLayout Android的问题

时间:2014-04-30 19:11:28

标签: android android-layout

我是Java和Android的新手,我遇到了这个问题:

我想在Rectangle的左上角添加一张照片。但是,我的照片的ImageView总是占用更多空间,因此,它会在顶部创建一个我不想拥有的空白区域。这是一个截图:

enter image description here

我的布局代码是:

<?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:padding="25dp">

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_centerHorizontal="true"
    android:layout_centerVertical="true"
    android:src="@drawable/profile_frame" />

<ImageView
    android:id="@+id/imageView2"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/imageView1"
    android:layout_centerVertical="true"
    android:src="@drawable/foto_facebook_juan_mejorada" />

</RelativeLayout>

3 个答案:

答案 0 :(得分:2)

试试这个:

android:scaleType="fitStart"
android:adjustViewBounds="true"

答案 1 :(得分:0)

可能是因为  图像的大小。如果图像不适合给定的空间,则会添加空格。

答案 2 :(得分:0)

// try this way
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center">

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_margin="30dp">
    <ImageView
        android:id="@+id/imageView1"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:src="@drawable/profile_frame" />

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"
        android:src="@drawable/foto_facebook_juan_mejorada" />
    </FrameLayout>

</LinearLayout>