按钮图像和文本居中

时间:2012-07-06 12:36:09

标签: android image button

我需要在文本中间和图标左侧显示文本的按钮。

我的按钮:

<Button
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:onClick=""
            android:text="@string/search_button"
            android:textColor="@drawable/button_text"
            android:layout_weight="1"
            android:background="@drawable/button"
            android:drawableLeft="@drawable/new_star_nonactive" />

我需要宽度为fill_parent(所有屏幕宽度)的按钮

但我有这个: enter image description here

如何在文本附近设置图像位置中心?

3 个答案:

答案 0 :(得分:14)

然后只有这样做,就是使用填充。在您的情况下,您希望图像向右移动,因此请使用android:paddingLeft="50dp"或您想要移动的下降量。

编辑: 还要添加android:gravity="left | center"以便使图片正确显示文字。

答案 1 :(得分:0)

试试这个你肯定会得到结果:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
     >

    <Button 
        android:id="@+id/btn"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="hi"
        android:textSize="24sp"
        android:background="@drawable/wood"/>

    <Button
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignBaseline="@+id/btn"
        android:layout_alignBottom="@+id/btn"
        android:layout_alignParentLeft="true"
        android:layout_marginLeft="90dp"
        android:background="@drawable/ic_launcher"
        android:gravity="center" />

</RelativeLayout>

答案 2 :(得分:0)

试试这个,

<Button 
    android:background="@null"
    android:layout_marginLeft="0dp" 
    android:text="HOME"
    android:layout_width="62dp"
    android:marqueeRepeatLimit="marquee_forever"
    android:textColor="#ffffff" 
    android:layout_height="50dp" 
    android:ellipsize="marquee" 
    android:drawableLeft="@drawable/icon_home" 
    android:id="@+id/homebtn" 
    android:singleLine="true"
    android:textSize="10dp"
   android:paddingTop="6dp"
    android:layout_alignParentLeft="true">
  </Button>