gpt4 book ai didi

Android 将 Drawable 和 Shape 合并为一个 Drawable(以编程方式)

转载 作者:行者123 更新时间:2023-12-02 03:44:42 34 4
gpt4 key购买 nike

我正在以编程方式设置 RadioButton 的 android:drawable,如下所示:

Drawable unchecked = getResources().getDrawable(R.drawable.ic_room_car);

Drawable d= getResources().getDrawable(R.drawable.ic_room_car);

Shape circle = ?????;
??? checked = combine circle and d


SateListDrawable states= new StateListDrawable();
states.addState(new int[] {android.R.attr.state_checked}, checked);
states.addState(new int[] {}, unchecked);

((RadioButton)findViewById(R.id.icon_1)).setButtonDrawable(states);

基本上它有一个自定义图标,在未选中时我会从资源中读取该图标,而在选中时我想在图标后面画一个圆圈。

未检查的行为在第二个 addState 行中设置,并且它正在工作。我的问题是如何以编程方式绘制一个圆圈,然后以某种方式将其与我从资源中读取的可绘制对象结合起来。

最佳答案

这是一个图层列表。

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
<item android:drawable="@mipmap/ic_launcher" android:left="10dp" android:right="10dp" android:top="10dp" android:bottom="10dp">
</item>
<item>
<shape android:shape="oval">
<solid android:color="@android:color/transparent"></solid>
<stroke android:color="#4b14b1" android:width="1dp"></stroke>
<size android:height="50dp" android:width="50dp"></size>
</shape>
</item>
</layer-list>

关于Android 将 Drawable 和 Shape 合并为一个 Drawable(以编程方式),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34531007/

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