Android:比他的实际尺寸小的图像

时间:2012-12-03 11:23:31

标签: android image scale

我有这段代码:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:gravity="top"
android:background="@drawable/db_bg_color">
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:id="@+id/noise_bar_red"
    android:src="@drawable/noise_bar_red"
    android:contentDescription="@string/app_name"
    android:layout_centerHorizontal="true" />
<ImageView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:adjustViewBounds="true"
    android:id="@+id/noise_bar"
    android:src="@drawable/noise_bar"
    android:contentDescription="@string/app_name"
    android:layout_centerHorizontal="true" />
</RelativeLayout>

问题是最后的图像,像db_bg_color一样大,就像屏幕一样,是缩放的,我不知道......但是它没有填满屏幕......也没有用fill_parent。 见:http://img835.imageshack.us/img835/7121/schermata20121203alle12.png 为什么呢?

1 个答案:

答案 0 :(得分:1)

我想你可以使用:

android:scaleType="fitXY"