如何从图像的顶部和底部删除多余的空格,请参见下面的屏幕截图:
<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" />
答案 0 :(得分: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" />
答案 1 :(得分: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"
/>
答案 2 :(得分: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" />