gpt4 book ai didi

android - 如何在形状为椭圆形按钮的按钮内添加图标

转载 作者:太空宇宙 更新时间:2023-11-03 11:47:01 26 4
gpt4 key购买 nike

我创建了一个可绘制的 button_oval.xml

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

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

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

<stroke
android:width="3dp"
android:color="#29395e" />

<size
android:width="300dp"
android:height="120dp" />

</shape>

然后我像这样在我的布局上使用它:

// I want to add a icon inside this button
<Button
android:id="@+id/goToPersonalPage"
android:layout_width="110dp"
android:layout_height="50dp"
android:layout_marginLeft="30dp"
android:background="@drawable/button_oval"
android:text="@string/memberButton"
android:textColor="#29395e"
android:textSize="18dp" />

我想在 Button 中添加一个图标,是否可以通过更改我的 button_oval.xml 来完成它?

最终输出应该如下图所示:

enter image description here

如有任何帮助,我们将不胜感激。

最佳答案

您必须在 Button 元素中添加这些行 -

android:drawableLeft="@mipmap/ic_launcher_round" // to set an icon
android:drawablePadding="10dp" // to set the padding of icon from text
android:paddingLeft="20dp" // to set the padding of the icon and text

根据需要调整值。

它看起来像-

enter image description here

关于android - 如何在形状为椭圆形按钮的按钮内添加图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44580113/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com