为什么图像周围有这么多空间?

时间:2013-07-19 06:44:10

标签: android

我正在开发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>

但是对于日食设计师我看到了:

enter image description here

为什么图片周围有这么多空间?我使用了wrap_content

这是图像。您可以看到周围没有任何边距或空白区域。 enter image description here

3 个答案:

答案 0 :(得分:2)

将图像设置为ImageView背景,它将被解决

android:background="@drawable/informacionpersonal" 

答案 1 :(得分:1)

在ImageView的属性中使用Scaletype选项并选择fitXY。应该将图像切换到imageview

答案 2 :(得分: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>