使用我们可以使用的元素相对于其他元素对齐。
android:layout_alignLeft
等。
但是如何添加边距或填充:
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="5dp" >
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:text="@string/students"
android:textSize="30sp"
android:typeface="normal"
android:layout_marginTop="10dp"
android:paddingTop="5dp"
android:paddingBottom="5dp"
android:id="@+id/student" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@id/student"
android:paddingLeft="20dp"
android:paddingTop="30dp"
android:text="@string/stud_describe"
android:textSize="10sp"
android:textStyle="italic"
android:typeface="sans" />
</RelativeLayout>
第二个TextView
中的填充顶部没有任何效果。
答案 0 :(得分:1)
看起来你的填充和边距混淆了。将第二个TextView
更改为:
layout_marginTop="30dp"
而不是
paddingTop="30dp".
填充View
本身,使其更大。保证金会更改TextView
在其容器(RelativeLayout
)内的位置,并且不会改变其大小。