美文网首页
CheckBox 左边文本 右边框

CheckBox 左边文本 右边框

作者: 微笑中的你 | 来源:发表于2020-10-26 09:39 被阅读0次

CheckBox 默认是 左框右文
那么怎么实现 左边文字 右边选中框
百度了一下,没搜索到,就自己试试

QQ截图20201026093601.png
<CheckBox
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layoutDirection="rtl"
            android:paddingStart="10dp"
            android:text="不显示实时温度"
            />

android:layoutDirection="rtl" 即可实现
android:paddingStart="10dp" 设置框文间的间距

相关文章

网友评论

      本文标题:CheckBox 左边文本 右边框

      本文链接:https://www.haomeiwen.com/subject/netamktx.html