如何与Android中包含的布局中显示的视图元素对齐

时间:2013-02-20 12:00:45

标签: android android-layout android-ui

我想将当前布局中的视图元素与我在Android中通过标记包含的视图元素对齐。

Layout1:(Layout1.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中的第二个LinearLayout与Layout1.xml文件中的RelativeLayout对齐,该文件包含在Layout2.xml文件中。

如果有人知道解决方案,请告诉我。

感谢。

1 个答案:

答案 0 :(得分:0)

你不尝试将要对齐的布局部分放到另一个文件中,只将该文件包含在layout2.xml中,并在layout2.xml中手动编写提醒部分。 我的意思是采取 `

    <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