gpt4 book ai didi

android - 在 TableLayout 中对齐文本单元格

转载 作者:行者123 更新时间:2023-11-29 14:33:10 26 4
gpt4 key购买 nike

如何在两列的 TableLayout 中对齐文本内容,使左列中的文本向右对齐,左列中的文本向左对齐,使它们在周围“固定”在一起屏幕中间?

它应该看起来像这样:

+-----------------------------------+
| Title: | Value |
+-----------------------------------+

最佳答案

这是一个提供你想要的东西的小例子

<?xml version="1.0" encoding="utf-8"?>
<TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<TableRow
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:weightSum="2">
<TextView
android:text="left at right"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="right"
android:paddingRight="5dp" />
<TextView
android:text="right at left"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:gravity="left"
android:paddingLeft="5dp" />
</TableRow>
</TableLayout>

关于android - 在 TableLayout 中对齐文本单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12090935/

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