Android按钮背景图片大小

时间:2014-05-04 16:57:33

标签: android android-button

我创建了一个个人键盘,并将背景图像设置为其中一个按钮,但之后按钮大小(与我的背景)不同。

<Button
    android:id="@+id/buttonShift"
    android:paddingTop="0dip"
    android:textSize="22sp"
    android:layout_height="match_parent"
    android:layout_width="0dp"
    android:layout_weight="1"
    android:textStyle="bold" />

设置背景:

<Button
    android:id="@+id/buttonShift"
    android:background="@drawable/sym_keyboard_shift_off"
    android:paddingTop="0dip"
    android:textSize="22sp"
    android:layout_height="match_parent"
    android:layout_width="0dp"
    android:layout_weight="1"
    android:textStyle="bold" />

请参阅按钮屏幕

在:

enter image description here

后:

enter image description here

图片大小:106x68

1 个答案:

答案 0 :(得分:0)

我建议你:

  1. 稍微更改您的drawable - 删除橙色矩形背景,只保留透明背景的箭头(从现在开始,我将使用名称 shift_off_arrow 作为描述drawable的名称)。透明背景应该只保留整个箭头所需的大小。不大。

  2. 定义一种新颜色 - 橙色背景的颜色(从这一刻开始我假设你已经定义了它,我将使用名称 orange_background

  3. 使用ImageButton代替Button(就像satnam singh和Hamid Shatu在对你的问题的评论中所说的那样)

  4. 使用这样的代码(使用所有填充来操作以获得完全符合您想要的箭头大小):

  5. <ImageButton
        android:id="@+id/buttonShift"
        android:background="@color/orange_background"
        android:src="@drawable/shift_off_arrow"
        android:paddingTop="0dip"
        android:layout_height="match_parent"
        android:layout_width="0dp"
        android:layout_weight="1" />