具有可绘制背景的自定义按钮:Android 4与Android 2.3中的填充差异

时间:2013-01-24 02:21:12

标签: android android-layout android-drawable

以下代码用于在Android中显示自定义按钮。不幸的是,这些不同位置的所有填充值都会影响按钮仅针对Android 2.3呈现的方式,但在Android 4.X上它没有任何效果,即填充总是相同的,无论您在此处设置什么。为什么呢?

布局XML:

<Button
    android:id="@+id/sample_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="@string/button_caption"
    android:padding="6dp"
    android:layout_marginBottom="6dp"
    android:layout_marginRight="6dp"
    style="@style/CustomButton"
    android:textSize="16sp" />

风格:

<style name="CustomButton">
    <item name="android:layout_gravity">center_horizontal</item>
    <item name="android:padding">6dp</item>
    <item name="android:background">@drawable/custom_button</item>
    <item name="android:textColor">#ffffff</item>
    <item name="android:gravity">center</item>
    <item name="android:textStyle">bold</item>
</style>

可绘制:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_pressed="true">
        <shape>
            <solid
                android:color="#60ff0000" />
            <stroke
                android:width="1dp"
                android:color="#ffffff" />
            <corners
                android:radius="4dp" />
            <padding
                android:left="6dp"
                android:top="6dp"
                android:right="6dp"
                android:bottom="6dp" />
        </shape>
    </item>
    <item>
        <shape>
            <solid
                android:color="#90ff0000" />
            <stroke
                android:width="1dp"
                android:color="#ffffff" />
            <corners
                android:radius="4dp" />
            <padding
                android:left="6dp"
                android:top="6dp"
                android:right="6dp"
                android:bottom="6dp" />
        </shape>
    </item>
</selector>

当我将所有这些填充值设置为较小的值(例如2)时,按钮在Android 2.3.3上显示几乎没有填充(可能是正确的)但在Android 4.X上的填充仍然非常大(可能是错的)。有人能看出原因吗?

2 个答案:

答案 0 :(得分:31)

Android的Holo主题在system styles.xml resource for Holo.Widget.Button中设置minWidth和minHeight,除了非全息按钮Widget.Button使用的规则之外,还指定规则。即使使用小按钮标题,该按钮也会在Android 4.2中占用64x48dip。

<Button
    android:id="@+id/sample_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="Z"
    android:padding="6dp"
    android:minHeight="1dp"
    android:minWidth="1dp"
    android:layout_marginBottom="6dp"
    android:layout_marginRight="6dp"
    style="@style/CustomButton"
    android:textSize="16sp" />

答案 1 :(得分:0)

大卫的回答可能确实是问题。

但是,我认为如果最小宽度和高度是48 / 64dp,将填充从6dp更改为2pd或反之亦然不应该有很大的不同,除非你的实际按钮已经正好在48/64 dp大小

如果是这种情况,我想知道它是否可能是Android上的一个错误。 如果未指定View上的填充,则使用后台drawable中的填充(如果有) 如果指定了View上的填充,则忽略背景drawable中的任何填充,并使用View上的填充。

只是为了它,你有没有尝试使填充物真的很大而不是小,看看是否有任何影响?