Android-相对于父元素对齐元素+边距

时间:2013-01-06 06:51:38

标签: android-layout

使用我们可以使用的元素相对于其他元素对齐。

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中的填充顶部没有任何效果。

1 个答案:

答案 0 :(得分:1)

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

layout_marginTop="30dp" 

而不是

paddingTop="30dp".

填充View本身,使其更大。保证金会更改TextView在其容器(RelativeLayout)内的位置,并且不会改变其大小。