如何调整按钮内的图像大小

时间:2017-07-06 02:56:23

标签: android android-layout

我正在尝试创建一个按钮,其中文本描述位于底部,图像位于顶部。我看到按钮可以通过android:drawableTop属性执行操作,但我无法调整图像大小

adjustViewBounds,android:scaleType =“fitCenter”,fitXY等方法无效。

这是我的按钮

的xml代码
<Button
            android:text="Start Running"
            android:layout_height="match_parent"
            android:layout_width="0dp"
            android:layout_weight="1"
            android:id="@+id/run"
            android:onClick = "RUN"
            android:scaleType="fitCenter"
            android:drawableTop="@drawable/runner"
            android:layout_marginBottom="3sp"
            android:layout_marginLeft="2sp"
            android:layout_marginRight="3sp"
            android:layout_marginTop="0sp"
            />

请提出建议?

1 个答案:

答案 0 :(得分:1)

创建具有2个视图的水平LinearLayout - 将图像设置为背景,使用相应文本设置TextView。之后为此LinearLayout设置OnClickListener并像常规按钮一样处理它。