В моем приложении я хочу иметь две статические части как верхний и нижний колонтитулы. я добавил это в макет XML и с помощью относительного макета он работал нормально для меня. Но когда я попытался добавить заголовок xml отдельно, используя include. Заголовок и середина экрана перекрываются. Просьба предложить, как я могу устранить это.
вот заголовок xml,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:stretchColumns="*">
<TableRow android:layout_width="wrap_content" android:layout_height="10px" android:gravity="center|center_vertical|center_horizontal">
<ImageView android:id="@+id/icon" android:src="@drawable/iconhome" android:layout_width="wrap_content" android:layout_gravity="left" android:layout_height="wrap_content"/>
<TextView android:text="Application" android:id="@+id/txtTitlevalue" android:textColor="#800517" android:textSize="18px" android:layout_height="wrap_content" android:gravity="center|left" android:textStyle="bold" android:layout_width="wrap_content" android:layout_weight="1"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:background="#800517" android:gravity = "center|center_vertical">
<TextView android:text=" \n " android:layout_height="3px"/>
</TableRow>
</TableLayout>
</RelativeLayout>
и другие xml, где я включаю header.xml,
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="#FFFFFF"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include android:layout_height="wrap_content" layout="@layout/header" />
<ScrollView android:layout_width="fill_parent" android:layout_height="wrap_content">
<TableLayout android:layout_width="fill_parent" android:layout_height="wrap_content" android:padding="15px" android:stretchColumns="*">
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:padding="5px" android:gravity="center_vertical|left">
<TextView android:text=" SEARCH FOR PROPERTY " android:layout_height="wrap_content" android:textSize="14px" android:textColor="#000000"/>
<ImageView android:id="@+id/redarrow" android:src="@drawable/redarrow" android:layout_width="wrap_content" android:layout_gravity="left" android:layout_height="wrap_content"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:layout_height="15px" android:gravity = "center_vertical">
<TextView android:id="@+id/acct_number1" android:layout_width="fill_parent" android:layout_height="25px" android:text=" I want to: " android:background="#EBDDE2" android:textColor="#000000" android:textSize="13px" android:gravity="center_vertical" android:layout_weight="1"/>
</TableRow>
<TableRow android:layout_width="fill_parent" android:paddingLeft="15px" android:paddingTop="3px" android:paddingBottom="3px" android:paddingRight="15px" android:layout_height="15px" android:gravity = "center_vertical">
<RadioButton android:text="Buy" android:id="@+id/radioButton1" android:textColor="#000000" android:textSize="13px" android:layout_width="0dip" android:layout_height="40px"/>
<RadioButton android:text="Rent" android:id="@+id/radioButton2" android:textColor="#000000" android:textSize="13px" android:layout_width="wrap_content" android:layout_height="40px" android:layout_weight="1"/>
</TableRow>
</TableLayout>
</ScrollView>
</RelativeLayout>
спасибо,