作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我无法理解 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/
我无法理解 android:layout_alignLeft 属性。我是 android 开发的新手。 谁能解释清楚?android
这个问题在这里已经有了答案: What is the difference between Android margin start/end and right/left? (3 个答案) 关闭 4
我是一名优秀的程序员,十分优秀!