gpt4 book ai didi

Android RelativeLayout 和等对齐

转载 作者:行者123 更新时间:2023-11-30 04:13:21 31 4
gpt4 key购买 nike

我有一个使用相对布局的表格行设置。它有 2 个 TextView,我希望它们具有相等的间距和左对齐的文本。请参阅下面的当前设置。这有一个 TextView 左对齐,另一个右对齐。当我更改为对齐左侧内容重叠时。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dip">
<TextView
android:id="@+id/displayLabel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginLeft="20dp"
android:layout_toRightOf="@+id/row_image"
android:text="adasd"
android:textSize="18sp" />
<TextView
android:id="@+id/displayValue"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="20dp"
android:text="adasd"
android:textSize="18sp"/>

</RelativeLayout>

任何建议。预先感谢您的帮助。

最佳答案

这似乎是加权 LinearLayout 的工作 - 显示两个大小相等的 TextView :

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout02"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:padding="10dip">

<TextView
android:id="@+id/displayLabel"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginLeft="20dp"
android:text="adasd"
android:textSize="18sp"
android:layout_weight="1"/>

<TextView
android:id="@+id/displayValue"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginRight="20dp"
android:text="adasd"
android:textSize="18sp"
android:layout_weight="1"/>

</LinearLayout>

然后在模拟器中它看起来像: screenshot

请注意 TextView 中的 layout_weight 属性和零 layout_width。基本上这意味着 View 将获得与指定权重成比例的额外可用空间量。因此,对于相同的权重,这些 View 将具有相同的宽度。

参见 layout guide on developer.android.com以供进一步引用。

关于Android RelativeLayout 和等对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10462596/

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