gpt4 book ai didi

android - 如何将复选框与屏幕右侧的文本对齐?

转载 作者:太空狗 更新时间:2023-10-29 15:59:59 27 4
gpt4 key购买 nike

我在 TableRow 中有一个复选框。我想将复选框和文本都对齐到屏幕的右侧,但是当我使用 android:gravity="right" 时,它只会将文本对齐到屏幕的右侧而不是正方形(复选框本身)。看起来它们是分开对齐的(屏幕左侧的复选框和右侧的文本)。

这是引用复选框的 xml fragment :

<TableRow android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginBottom="10dp">

<CheckBox
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Select"
android:id="@+id/checkboxSelect"
android:layout_column="0"
android:layout_weight="1"
android:gravity="right"/>
</TableRow>

如何将复选框及其上的文本都对齐到屏幕的右侧?

提前致谢!

最佳答案

只需添加 Checkbox 如下。

<?xml version="1.0" encoding="utf-8"?>
<CheckBox xmlns:android="http://schemas.android.com/apk/res/android"
android:text="hello"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:button="@null"
android:drawableRight="?android:attr/listChoiceIndicatorMultiple"/>

It will show you text at left and check box at right.

关于android - 如何将复选框与屏幕右侧的文本对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38718438/

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