作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我在 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 andcheck box
at right.
关于android - 如何将复选框与屏幕右侧的文本对齐?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38718438/
我是一名优秀的程序员,十分优秀!