gpt4 book ai didi

android - 如何更改 RadioButton 的轮廓大小

转载 作者:行者123 更新时间:2023-11-29 19:02:36 28 4
gpt4 key购买 nike

我正在为我的应用程序使用 RadioButton,它看起来很大而且厚度也很高。我想知道有没有办法减少轮廓粗细?

<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/statusRadioGroup"
android:buttonTint="@color/order_inprocess"
android:checkedButton="@+id/radioActive"
android:orientation="horizontal">

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/radioActive"
android:textColor="@color/order_inprocess"
android:layout_weight="1"
fontPath="fonts/Roboto-Regular.ttf"
app:buttonTint="@color/order_inprocess"
android:textSize="14dp"
android:text="Active" />

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:id="@+id/radioDeactive"
android:textColor="@color/order_inprocess"
fontPath="fonts/Roboto-Regular.ttf"
app:buttonTint="@color/order_inprocess"
android:textSize="14dp"
android:text="Deactive" />

</RadioGroup>

enter image description here

最佳答案

您必须创建自定义可绘制对象。

<RadioButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/custom_radio_button"/>

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

如果您对动画感兴趣,请查看 StateListAnimatorAnimatedVectorDrawable

https://developer.android.com/training/material/animations.html#ViewState

关于android - 如何更改 RadioButton 的轮廓大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48456474/

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