2

使用我可以使用的将一个元素与另一个元素对齐。

android:layout_alignLeftETC..

但是如何添加边距或填充:

<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没有任何效果。

4

1 回答 1

1

看起来你正在混淆填充和边距。将第二个更改TextView为:

layout_marginTop="30dp" 

代替

paddingTop="30dp".

填充垫View本身,使其更大。边距改变TextView其容器 ( RelativeLayout) 内的位置,并且不改变其大小。

于 2013-01-06T07:26:10.317 回答