gpt4 book ai didi

android - 带有图像而不是文本选项的单选按钮

转载 作者:IT王子 更新时间:2023-10-28 23:34:32 32 4
gpt4 key购买 nike

如何在 android 应用程序中添加单选按钮,选项为图像,而不是文本。我们可以通过 android:setText 属性将文本设置为单选按钮。但我希望在那里显示图像而不是文本。请帮帮我?

最佳答案

这个使用属性 android:drawableRight 怎么样?

<RadioGroup
android:id="@+id/maptype"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/line1"
android:orientation="horizontal" >
<RadioButton
android:id="@+id/map"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:drawableRight="@drawable/map" />

<RadioButton
android:id="@+id/satellite"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:drawableRight="@drawable/sat" />
</RadioGroup>

关于android - 带有图像而不是文本选项的单选按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11081919/

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