图像/文字位于背景中心的按钮

时间:2018-10-29 08:27:34

标签: android android-layout

我已经看到很多解决问题的方法,但是没有一个对我有用。 我的目标是要有一个带有图像,一些文本和背景的圆形按钮。图片和文字应在背景中居中。

我将以下内容用作背景:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:dither="true"
    android:shape="rectangle">

    <corners android:radius="120sp" />

    <solid android:color="#FF5F00" />

    <size
        android:width="120sp"
        android:height="36sp" />

</shape>

图像的以下内容:

<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:width="24sp"
    android:height="24sp"
    android:viewportWidth="24"
    android:viewportHeight="24">
  <path
      android:pathData="M5,12L19,12"
      android:strokeLineJoin="round"
      android:strokeWidth="2"
      android:fillColor="#00000000"
      android:strokeColor="#FFFFFF"
      android:strokeLineCap="round"/>
  <path
      android:pathData="M12,5L12,19"
      android:strokeLineJoin="round"
      android:strokeWidth="2"
      android:fillColor="#00000000"
      android:strokeColor="#FFFFFF"
      android:strokeLineCap="round"/>
</vector>

最后是按钮:

    <Button android:layout_columnSpan="6" 
android:layout_gravity="center" android:drawableStart="@drawable/ic_plus_24px" 
android:text="Evaluer" 
android:id="@+id/doEvalQOL" android:background="@drawable/roundedyakabutton" android:textColor="#FFFFFF" 
android:gravity="center" 
android:textSize="12sp" 
fontPath="fonts/Ubuntu-Medium.ttf" />

这给了我这个: enter image description here

一旦我删除了背景,图像和文本就会按照我希望的背景放置:

enter image description here

我在这里想念什么? 预先感谢。

2 个答案:

答案 0 :(得分:3)

您可以使用drawablePadding,paddingLeft和paddingRight在按钮中心对齐文本及其图标。我使用了下面的代码,并将结果作为屏幕快照附加。尝试一次,希望对您有帮助。

    <Button
    android:id="@+id/doEvalQOL"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:background="@drawable/roundedyakabutton"
    android:drawableLeft="@drawable/ic_plus_24px"
    android:text="Evaluer"
    android:drawablePadding="2dip"
    android:gravity="center"
    android:paddingLeft="30dip"
    android:paddingRight="26dip"
    android:singleLine="true"
    android:textColor="#FFFFFF"
    android:textSize="12sp"
     />

Out put of above button

答案 1 :(得分:0)

问题

您无法在Button / TextView中设置gravity中的drawableLeft。在这里,将重力设置为“按钮”,使文本居中,但图像保持在左侧。

解决方案

  • android:drawablePadding="-20sp"使用负边距drawableLeft
  • 或者不要将ImageView和Button环绕使用父视图(带有背景)而不是Button。