在Android中的TabBar布局中需要帮助

时间:2011-02-11 11:35:19

标签: android android-layout

请帮我一点TabBar android

我使用TabBar,代码在

下面
<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个小图像然后它应该显示一个标签栏。在屏幕的另一部分..请帮助我指导我如何添加到它..

一堆......

1 个答案:

答案 0 :(得分:1)

您可以关注this example,将Line10上的TextView替换为图片视图。