gpt4 book ai didi

android - 什么是android :layout_alignLeft in Android?

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:09:02 26 4
gpt4 key购买 nike

我无法理解 android:layout_alignLeft 属性。我是 android 开发的新手。

<RelativeLayout 
android:id="@+id/r5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/r4"

> <TextView
android:id="@+id/tv3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:layout_marginTop="10dp"
android:textSize="16sp"
android:textColor="#663300"
android:text="TextView"

/>

<TextView
android:id="@+id/tv5"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="10dp"

android:layout_alignLeft="@id/tv3"
android:textSize="16sp"
android:textColor="#663300"
android:text="TextView"


/>
<TextView
android:id="@+id/tv6"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toRightOf="@id/tv5"
android:layout_marginTop="10dp"
android:textSize="16sp"
android:textColor="#663300"
android:text="TextView"

/>

</RelativeLayout>

谁能解释清楚?android:layout_Leftof 和 android:layout_alignLeft 有什么区别?

最佳答案

layout_alignLeft 使您的 View 的左边缘与您将其 ID 用作参数的 View 的左边缘匹配。

layout_toLeftOf 使您的 View 位于您使用其 ID 的 View 的左侧(右边缘将与另一个 View 的左边缘对齐)。

关于android - 什么是android :layout_alignLeft in Android?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14639689/

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