0

如何从图像的顶部和底部删除多余的空格,请参见下面的屏幕截图:

在此处输入图像描述

<ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:contentDescription="@string/About"
        android:src="@drawable/menu" />
4

3 回答 3

5

好像你需要使用这个 android:adjustViewBounds="true"。试试这个:

<ImageView
        android:id="@+id/imageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:contentDescription="@string/About"
        android:src="@drawable/menu"
        android:adjustViewBounds="true" />
于 2013-10-30T04:31:28.690 回答
0

您可以将其用作图像视图。

<ImageView
    android:id="@+id/imageView1"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_alignParentLeft="true"
    android:layout_alignParentTop="true"
    android:contentDescription="@string/About"
    android:src="@drawable/menu"
     />
于 2013-10-30T04:36:10.027 回答
0

试试这种方式:

            <ImageButton
                android:id="@+id/imgbtn_menu"
                android:layout_width="wrap_content"
                android:layout_height="match_parent"

                android:background="@android:color/transparent"
                android:src="@drawable/menu" />
于 2013-10-30T04:36:30.493 回答