4

我使用以下代码来显示我的按钮

(因为我需要在按钮上添加文字,所以我不会使用ImageButton)

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
    <ImageView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:src="@drawable/bottom001"
        android:adjustViewBounds="true"
        android:scaleType="fitXY"/>
</RelativeLayout>

但是 ImageView 在视图中会有一些空白区域

我认为“fitXY”会填充视图,但它没有

底部

在这种情况下我该怎么办?

谢谢你的帮助 :)

4

1 回答 1

1

设置android:layout_width="wrap_content"并使用LinearLayout

最后

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="match_parent">
<ImageView
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:src="@drawable/test"
    android:adjustViewBounds="true"
    android:scaleType="fitXY"/>

详情请阅读 android-imageview-scaletype-samples

FIT_XY

使用 FILL 缩放图像。在可用宽度和高度内拉伸图片,忽略纵横比。

于 2015-08-03T11:50:31.717 回答