Android 9-Patch Error

时间:2011-10-28 17:28:06

标签: android button

我正在尝试创建一个9补丁图像,但文本没有正确地容纳在按钮上。

enter image description here

文本应位于Facebook登录按钮的中心。

这是原来的png

enter image description here

试过这种9patch

enter image description here

最终像这样

enter image description here

按钮XML代码:

    <Button
        android:id="@+id/button1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:layout_marginLeft="25dp"
        android:layout_marginRight="25dp"
        android:background="@drawable/splash_facebook_button_selector"
        android:gravity="center"
        android:text="@string/splash_facebook"
        android:textColor="#FFFFFF"
        android:textSize="8pt"
        android:textStyle="bold" />

1 个答案:

答案 0 :(得分:1)

您需要为按钮设置重力:

Button signInBtn = (Button)findViewById(R.id.signInBtn);
signInBtn.setGravity(Gravity.CENTER); //or Gravity.CENTER_VERTICAL or any other you need