我有这个代码:
<?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 为什么?