0

Android アプリケーションを開発していますが、レイアウトについて質問があります。

私はこれを持っていますImageView

    <ImageView
        android:id="@+id/imageView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:src="@drawable/informacionpersonal" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp" >

        <TextView
            android:id="@+id/textName"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.3"
            android:text="@string/layout_name"
            android:textAppearance="?android:attr/textAppearanceMedium" />

        <EditText
            android:id="@+id/editName"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="0.7"
            android:ems="10"
            android:inputType="text" >

            <requestFocus />
        </EditText>

    </LinearLayout>

しかし、Eclipseデザイナーでは次のように表示されます:

ここに画像の説明を入力

画像の周りにこれほど多くのスペースがあるのはなぜですか? 私は使用しましwrap_contentた。

これがイメージです。周囲に余白や余白がないことがわかります。 ここに画像の説明を入力

4

3 に答える 3

2

画像をImageViewの背景として設定すると解決されます

android:background="@drawable/informacionpersonal" 
于 2013-07-19T06:45:43.053 に答える
0

ここでは ic_launcher アイコンに使用しました。その動作は正しい..これを試してみてください..

     <LinearLayout
    android:id="@+id/linear"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
     android:layout_alignParentRight="true"
     android:layout_alignParentBottom="true">

    <ImageView
        android:id="@+id/imgv"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/ic_launcher"/>
</LinearLayout>
于 2013-07-19T06:58:19.177 に答える