0

現在のレイアウトのビュー要素を、Android のタグで含めたビュー要素に合わせたいと思います。

レイアウト1: (レイアウト1.xml)

<?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="wrap_content"
    android:orientation="horizontal" >

    <ImageView
        android:id="@+id/click_icon"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:contentDescription="@string/desc"
        android:padding="4dp"
        android:src="@drawable/icon_click" />

    <RelativeLayout
                    android:id="@+id/relativeLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/textView1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentLeft="true"
            android:layout_alignParentTop="true"
            android:gravity="bottom"
            android:paddingLeft="8dp"
            android:paddingTop="6dp"
            android:text="@string/textview1"
        />

        <TextView
            android:id="@+id/textView2"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_below="@+id/textView1"
            android:text="@string/textView2"
        />
    </RelativeLayout>

</LinearLayout>

レイアウト2:

<?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:orientation="vertical" >

    <include
        android:id="@+id/includedLayout"
        layout="@layout/Layout1" />

    <View
        android:id="@+id/seperator"
        android:layout_width="wrap_content"
        android:layout_height="1dp"
        android:alpha="0.3"
        android:background="#FFFFFF" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >
        <!-- I want to align this layout with relative layout present in the 
        Layout1.xml file which is included above -->

    </LinearLayout>

</LinearLayout>

Layout2.xml の 2 番目の LinearLayout を、Layout2.xml ファイルに含まれている Layout1.xml ファイルの RelativeLayout に揃えたいと考えています。

解決策を知っている方がいましたら教えてください。

ありがとう。

4

1 に答える 1

0

整列させたいレイアウト部分を別のファイルに入れて、そのファイルのみをlayout2.xmlに含め、layout2.xmlにremining部分を手動でコーディングしようとしないでください。私が意味するのは、`を取るこ​​とです

    <TextView
        android:id="@+id/textView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:gravity="bottom"
        android:paddingLeft="8dp"
        android:paddingTop="6dp"
        android:text="@string/textview1"
    />

    <TextView
        android:id="@+id/textView2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_below="@+id/textView1"
        android:text="@string/textView2"
    />
</RelativeLayout>`

この部分を別の別のファイルに追加し、手動でimageviewをlayout2.xmlに追加します

于 2013-02-20T13:03:09.840 に答える