在Android中拉伸图像

时间:2012-10-01 13:48:02

标签: android android-layout

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:scaleType="fitXY"
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent"
    android:padding="5dip">

    <ImageView android:id="@+id/header"
        android:layout_height="wrap_content"
        android:layout_width="fill_parent"
        android:src="@drawable/green_bg" />

</RelativeLayout>

这是我的标题布局,我需要将图像拉伸到下面的图像。 http://postimage.org/image/gfebtdxgj/

  1. 如何在图像上方左右添加两个按钮。
  2. 如何拉伸标题图片。

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

使用此代码回答两个问题:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:scaleType="fitXY"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dip">
<Button
    android:id="@+id/btn1"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:layout_alignParentLeft="true"
    />
<Button
    android:id="@+id/btn2"
    android:layout_width="100dp"
    android:layout_height="wrap_content"
    android:layout_alignParentRight="true"
    />
<ImageView android:id="@+id/header"
    android:layout_height="wrap_content"
    android:layout_width="fill_parent"
    android:src="@drawable/green_bg"
    android:scaleType="centerCrop"
    android:layout_below="@id/btn1"/>

 </RelativeLayout>