gpt4 book ai didi

Android:将徽章添加到按钮上可绘制的角

转载 作者:行者123 更新时间:2023-11-29 17:56:01 26 4
gpt4 key购买 nike

将徽章图标(带有数字的圆圈)添加到按钮的可绘制对象的最佳方法是什么?

drawable 只是一个图像。我希望有一种方法可以更改我用作可绘制按钮的内容,并可能将其设置为另一个可绘制对象,中间有我的图像,右上角有一个形状。我需要以编程方式更新形状的文本。

现在这是我的按钮:

<Button
android:id="@+id/SpecialsMenuButton"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:textColor="#FFFFFF"
android:text="@string/specials_tab_title"
android:background="@drawable/menu_button"
android:padding="4dp"
android:drawableBottom="@drawable/collections_labels"
android:textAppearance="?android:attr/textAppearanceSmall"
android:layout_weight="1" />

我还创建了一个圆形徽章:

<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="oval">
<solid
android:color="#F00" />
<stroke
android:width="2dip"
android:color="#FFF" />
<padding
android:left="5dip"
android:right="5dip"
android:top="5dip"
android:bottom="5dip" />
</shape>

我想尽可能轻松地将 android:drawableBottom 替换为使我的图像具有图像右上角形状的东西。我能否将其作为可绘制对象来执行此操作,还是必须在按钮之外执行此操作?

谢谢!

最佳答案

如果您希望将其作为 Drawable,您必须创建一个 Bitmap,在其中将圆圈和数字绘制到按钮的图像上。

但我会这样做:将徽章作为 ImageViewTextView 放在按钮上方,这样您就可以轻松编辑 的文本 TextView

关于Android:将徽章添加到按钮上可绘制的角,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19234360/

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