android图像在屏幕上看起来太小,如何缩放以适应屏幕?wrap_content 似乎不起作用
<RelativeLayout
android:id="@+id/layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<ImageView
android:layout_alignParentTop="true"
android:layout_marginTop="100dip"
android:id="@+id/imageview"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:src="@drawable/splash_screen"/>
<ProgressBar
android:layout_alignParentBottom="true"
android:layout_marginBottom="20dip"
android:id="@+id/progressbar"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</RelativeLayout>