0

私のimageViewは、電話が垂直モードのときに水平方向に最大サイズを埋めています。しかし、水平モードに切り替えると、imageView が一致しません。画像を画面の境界まで拡張する必要があります。私は何を間違っていますか?

私のxml:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent"
android:layout_width="fill_parent" 
android:orientation="vertical">
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<RelativeLayout 
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:padding="5dp">
<ImageView
android:id="@+id/picture"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:src="@drawable/keks1"
    />
4

2 に答える 2

3

ImageView の Background を src ではなく設定します。

android:background="@drawable/keks1"
于 2012-05-03T05:41:52.810 に答える