gpt4 book ai didi

android - LinearLayout 无法正确对齐

转载 作者:行者123 更新时间:2023-11-29 15:33:59 25 4
gpt4 key购买 nike

你好,我想要一个像下面这样的布局

Main amount         120 usd
Extra charge 2 usd
----------------------------
Sub Total 122 usd
Discount 5 usd
----------------------------
Total amount 117 usd

我完全不熟悉约束布局我尝试使用 LinearLayout gravity/layout/alignment gravity right 作为右侧部分但它不起作用,全部从左侧对齐。如果有人为此布局提供示例代码,我将很高兴.

更新:我当前的代码

<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:text="Main Amount"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:gravity="left"
android:layout_gravity="left"
android:textAlignment="gravity"
android:text="10 "
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:gravity="left"
android:layout_gravity="left"
android:textAlignment="gravity"
android:text="USD"
android:layout_height="match_parent" />
</LinearLayout>

最佳答案

对于这种 View ,对父 LinearLayout 使用带有 weightSum 属性的 LinearLayout,对子 LinearLayout 使用 layout_weight

<LinearLayout 
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:weightSum="4">

<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="2">
<TextView
android:layout_width="wrap_content"
android:text="Main Amount"
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1">
<TextView
android:layout_width="wrap_content"
android:gravity="left"
android:layout_gravity="left"
android:textAlignment="gravity"
android:text="10 "
android:layout_height="wrap_content" />
</LinearLayout>
<LinearLayout
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1">
<TextView
android:layout_width="wrap_content"
android:gravity="left"
android:layout_gravity="left"
android:textAlignment="gravity"
android:text="USD"
android:layout_height="match_parent" />

</LinearLayout>
</LinearLayout>

关于android - LinearLayout 无法正确对齐,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56531137/

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