2

複数のデバイス用の Android 2.2 アプリケーションを開発していますが、画像に問題があります。

これは私のレイアウトです:

<?xml version="1.0" encoding="utf-8"?>
    <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/scrollView1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >

        <ImageView
            android:id="@+id/imageView1"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:contentDescription="@string/layout_empty"
            android:src="@drawable/faqs" />

    </ScrollView>

そして、これは私のタブレットデバイスに表示されるものです:

ここに画像の説明を入力

私のHTC Desireにぴったりです。

なにが問題ですか?

4

2 に答える 2

8

android:scaleType="fitXY"ImageViewに追加します

于 2012-08-02T16:44:13.957 に答える
1

ここで受け入れられた回答を参照してください。画像ビューのlayout_heightをfill_parentに設定する必要があります

于 2012-08-02T16:39:54.810 に答える