将页眉和页脚放在android中

时间:2011-11-22 13:09:15

标签: android android-layout android-ui

我想将标题和页脚放在TabHost我尝试但是没有显示UI的任何变化继承我的代码

<?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="fill_parent"
>
<LinearLayout 
    android:layout_width="wrap_content"
    android:layout_height="wrap_content">
    <Button 
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Button01"
        />
</LinearLayout>
<TabHost android:layout_width="fill_parent"
    android:layout_height="fill_parent" 
    android:id="@android:id/tabhost">
    <LinearLayout android:id="@+id/LinearLayout01"
        android:orientation="vertical" android:layout_height="fill_parent"
        android:layout_width="fill_parent">
        <TabWidget android:id="@android:id/tabs"
            android:layout_height="wrap_content" android:layout_width="fill_parent"></TabWidget>
        <FrameLayout android:id="@android:id/tabcontent"
            android:layout_height="fill_parent" android:layout_width="fill_parent"></FrameLayout>
    </LinearLayout>

</TabHost></RelativeLayout>

请帮帮我我想在页眉上放置2个按钮和标题,在页脚上放置4个按钮

谢谢

Abhishek

1 个答案:

答案 0 :(得分:0)

你需要使用上面的布局和属性下面的布局!!