0

さまざまなデバイスでアプリの見栄えを良くしようとしています。私はGalaxy S2とGoogle Nexus 7で試しました.私の画像はtheS2の幅をカバーしていますが、Nexusでは十分ではありません. なんで?ここで何が間違っていますか?

私のImageViewのコードは次のとおりです。

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/relativeLayout"
    android:orientation="horizontal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">

    <include
        android:id="@+id/include"
        layout="@layout/actionbar"/>

    <ImageView
        android:id="@+id/imageView1"
        android:layout_height="match_parent"
        android:layout_width="fill_parent"
        android:layout_marginTop="44dp"
        android:src="@drawable/rect"/>

</RelativeLayout>
4

3 に答える 3

0

try this -->

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_marginTop="44dp"
    android:scaleType="fitXY"
    android:src="@drawable/rect"/>
于 2013-10-04T11:04:42.653 に答える
0

の幅と高さを設定してみてImageViewくださいfill_parent

于 2013-10-04T10:58:46.570 に答える
0

imageview の scaletype 属性を設定する

于 2013-10-04T10:59:12.707 に答える