0

私の質問: 2 つのコンポーネントの間隔をあけるにはどうすればよいですか? すべての側面のパディングを既に 2dp に設定していますが、それらはまだ下部で互いにくっついています。2 dp に。コメントをお待ちしております。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#d8d8d8"
    android:orientation="vertical"
    android:padding="2dp" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ff0043"
        android:orientation="vertical"
        android:padding="2dp" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center"
            android:text="KELANA JAYA LINE"
            android:textAppearance="?android:attr/textAppearanceLarge"
            android:textColor="#fff"
            android:textStyle="bold" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="#d8d8d8"
        android:orientation="horizontal"
        android:paddingRight="2dp" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="74dp"
            android:layout_height="wrap_content"
            android:background="#001eff"
            android:paddingRight="2dp"
            android:text="TIME"
            android:textColor="#fff"
            android:textSize="20dp"
            android:textStyle="bold" />

    </LinearLayout>

</LinearLayout>
4

3 に答える 3

1

margin(left,right,top,bottom)代わりに属性を試してください

于 2013-07-29T07:40:01.847 に答える
0

パディングはビュー境界の「内側」のスペースであり、ビューがそれを尊重することは必須ではありませんが、システムビューはそれを行います(少なくともそれらのほとんど)。

2 つのビューを分離するには、layout_margin を使用します。

<LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#ff0043"
        android:orientation="vertical"
        android:layout_margin="2dp" >
    <TextView />
</LinearLayout>

おつりがあります

android:padding="2dp"

android:layout_margin="2dp"
于 2013-07-29T07:49:41.803 に答える