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 回答
1

使用 ImageView 属性中的 Scaletype 选项并选择 fitXY 。这应该将图像拉伸到 imageview

于 2013-07-19T06:46:49.390 回答
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 回答