Android-是应用程序的单独页眉和页脚

时间:2015-01-19 14:15:29

标签: android xml android-layout

我是Android app设计的新手。有没有想法像在web应用程序中那样维护页眉和页脚的集中代码。

接下来的疑问是,当我使用多个线性布局时,它的显示错误为

  

根元素后面的文档中的标记必须格式正确。

请给我一些建议,提前致谢。 我的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="180dp"
    android:background="#FF6347"
    android:gravity="center"
    android:orientation="vertical" >

    <EditText
        android:id="@+id/editText2"
        android:layout_width="wrap_content"
        android:layout_height="35dp"
        android:background="@drawable/border"
        android:ems="10"
        android:inputType="text"
        android:padding="2dp"
        android:text="@string/name" >
    </EditText>

    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="35dp"
        android:layout_margin="5dp"
        android:background="@drawable/border"
        android:ems="10"
        android:inputType="number"
        android:padding="2dp"
        android:text="@string/mobile_number" />

    <Button
        android:id="@+id/button1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/done_button"
        android:background="@drawable/border" />

</LinearLayout>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff">

    <Button
         android:id="@+id/button3"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="@string/done_button"
        android:background="@drawable/border" />


</LinearLayout>

0 个答案:

没有答案