gpt4 book ai didi

android - 如何创建圆形的复选框?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:32:25 25 4
gpt4 key购买 nike

我在 android 中创建圆形复选框时遇到了问题。我尝试了很多方法,但我的问题没有解决。我创建了形状并应用于复选框,然后问题也没有解决。请帮助我如何创建圆形复选框。 enter image description here

如何创建如图所示的圆形复选框。

最佳答案

我花了一些时间创建了这个模板,您可以使用它。 您可能需要根据需要进行修改

在activity.xml中

<CheckBox
android:id="@+id/checkb"
android:layout_width="115dp"
android:layout_height="50dp"
android:button="@drawable/custom_checkbox"
android:scaleX="3"
android:scaleY="3"
android:layout_centerVertical="true"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
android:layout_marginRight="15dp"
android:layout_marginEnd="15dp" />

在名为 custom_checkbox.xml 的 drawable 文件夹中创建一个新的 xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:state_checked="true"
android:drawable="@drawable/checked" />
<item android:state_pressed="true"
android:drawable="@drawable/checked" />
<item android:state_pressed="false"
android:drawable="@drawable/unchecked" />
</selector>

在名为 checked.xml 的 drawable 文件夹中创建一个新的 xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true">
<layer-list>
<item>
<shape android:shape="oval">
<corners android:radius="1dp" />
<stroke
android:width="1dp"
android:color="#777" />
<gradient
android:startColor="#990000"
android:centerColor="#990000"
android:endColor="#990000"
android:angle="270" />
<size
android:width="30dp"
android:height="30dp" />
</shape>
</item>

<item
android:width="8dp"
android:height="2dp"
android:top="20dp"
android:left="6dp">
<rotate
android:fromDegrees="45">
<shape android:shape="rectangle">
<solid android:color="#fff"/>
</shape>
</rotate>
</item>

<item
android:width="19dp"
android:height="2dp"
android:top="16dp"
android:left="9dp">
<rotate
android:fromDegrees="-45">
<shape android:shape="rectangle">
<solid android:color="#fff"/>
</shape>
</rotate>
</item>
</layer-list>
</item>

</selector>

在 drawable 文件夹中创建一个名为 unchecked.xml 的新 xml

<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="oval">
<corners android:radius="1dp" />
<stroke
android:width="1dp"
android:color="#777" />
<gradient
android:startColor="#990000"
android:centerColor="#990000"
android:endColor="#990000"
android:angle="270" />
<size
android:width="30dp"
android:height="30dp" />
</shape>

取消选中时,它看起来如下所示。 (可以在checked.xml中添加代码,修改top和left,当checkbox未勾选时给X)

unchecked State

选中后如下所​​示

checked state

如果可行,请将其标记为答案。

关于android - 如何创建圆形的复选框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42761099/

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