12

を含むビューを動的に作成LinearLayoutし、それらをアウターに追加していLinearLayoutます。作成したビューの周囲にマージンを設定したいのlayout_marginですが、XML ファイルの が無視されます。コードでパラメーターを設定すると機能しますが、レイアウト XML でマージンを指定したいと思います。

XML レイアウトでのマージンの設定は無視されます。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_margin="20dp"
    android:orientation="vertical" >

    ...
</LinearLayout>

作成中にマージンを設定することは尊重されます:

LinearLayout productView = (LinearLayout) getLayoutInflater().inflate(R.layout.product_preview, null);

LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.WRAP_CONTENT);
params.setMargins(50, 50, 50, 50);  
productView.setLayoutParams(params);

これが外側のレイアウトです。ビューが に追加されdealer_activity_product_listます。

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical" >

    <ImageView
        android:id="@+id/dealer_activity_dealer_image"
        android:layout_width="match_parent"
        android:layout_height="150dp"
        android:contentDescription="@string/dealer_activity_dealer_image_desc" />

    <TextView
        android:id="@+id/dealer_activity_dealer_address"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal" >

        <LinearLayout
            android:id="@+id/dealer_activity_product_list1"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical" />

        <LinearLayout
            android:id="@+id/dealer_activity_product_list2"
            android:layout_width="0dp"
            android:layout_height="match_parent"
            android:layout_weight="1"
            android:orientation="vertical" />
    </LinearLayout>
</LinearLayout>

4

3 に答える 3

1

内側のLinearLayout またはそれを含むLinearLayoutの属性を設定していますか? 少なくとも、以下は LinearLayout 内で機能します。

<TextView
    android:id="@+id/xxx"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:textSize="20sp"
    android:layout_margin="10dp"
    />
于 2013-10-23T10:25:46.827 に答える
-1

一般的な「ネストされたレイアウト」パターンがあります。つまり、補助コンテナー レイアウトを作成し、コンテナー レイアウト内に内部レイアウトを配置して目的の効果を達成します。

並べ替え:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <LinearLayout
        ...
        android:layout_margin="20dp"
        >
    ...
    </LinearLayout>
</LinearLayout>
于 2013-10-24T09:03:37.203 に答える