我有这段代码:
<?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 为什么呢?
答案 0 :(得分:1)
我想你可以使用:
android:scaleType="fitXY"