布局应该采取android中背景图像的大小

时间:2015-06-23 08:41:55

标签: android android-layout

我正在设计android并且我知道我不擅长它,但是这就是事情,我想要做的是有些事情可能很简单或者可能不可能,我正在设置背景在相对布局下使用的布局 比如

我想要的是我希望我的布局填充父级的宽度,它应该采取高度作为背景高度,我不想缩放,我也不想设置高度在dps,也出于某些原因,我不想在其中添加imageview设置图像,然后包装布局的高度。

有没有办法做到这一点?

1 个答案:

答案 0 :(得分:0)

//试试这个

<?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="@drawable/img_bg_wood">

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:background="@drawable/nine_man_morris"
        android:gravity="center">

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

    </RelativeLayout>

</RelativeLayout>