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