需要Android中TabBar布局的帮助吗

需要Android中TabBar布局的帮助吗,android,android-layout,Android,Android Layout,请在TabBar android中帮我一点忙 我正在使用一个标签栏,代码如下 <TabHost android:layout_width="fill_parent" android:layout_height="wrap_content" xmlns:android="http://schemas.android.com/apk/res/android" android:id="@android:id/tabhost"> <LinearLayout andro

请在TabBar android中帮我一点忙

我正在使用一个标签栏,代码如下

<TabHost android:layout_width="fill_parent"
android:layout_height="wrap_content" 
    xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@android:id/tabhost">
    <LinearLayout android:id="@+id/LinearLayout01"
        android:orientation="vertical" android:layout_height="fill_parent"
        android:layout_width="fill_parent">
        <FrameLayout android:id="@android:id/tabcontent"
            android:layout_height="fill_parent" 
            android:layout_width="fill_parent"
            android:layout_weight="1">
        </FrameLayout>
        <TabWidget android:id="@android:id/tabs"
            android:layout_height="wrap_content" 
            android:layout_width="fill_parent"
            android:layout_weight="0">
        </TabWidget>

    </LinearLayout>

</TabHost>

现在,我的选项卡栏显示在整个屏幕上。。 我想要的是,在右上角,我想显示2个小图像,然后它应该显示一个选项卡栏。在屏幕的另一部分。。请帮助我指导如何添加到它中

Thnks a buck…

您可以使用图像视图替换第10行的文本视图