0

我是 Android 开发新手,在格式化某些按钮时遇到问题。

在此处输入图像描述

<LinearLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:layout_margin="0dp"
    android:padding="0dp">

    <Button
        android:id="@+id/char_str_plus"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_margin="0dp"
        android:padding="0dp"
        android:text="+"
        android:textSize="16sp" />

    <Button
        android:id="@+id/char_str_min"
        android:layout_width="30dp"
        android:layout_height="30dp"
        android:layout_margin="0dp"
        android:padding="0dp"
        android:text="-"
        android:textSize="16sp" />

正如您从图片中看到的那样,按钮没有填充蓝色方块。我不确定为什么。感谢任何帮助。

4

1 回答 1

0

不确定这是否可行,但你可以试试这个:

android:scaleType="fitEnd"

这就是我在 imagebuttons 上使用的。

于 2013-01-22T16:13:48.280 回答