安卓:标签主机重力不起作用



i通过XML创建一个TabHost,并使用findViewByID()在"活动"中调用它。我认为tabhost和tabwidget的重要性是正确的,但它不起作用,我如何使它起作用?

注意:我在活动中调用了此Xml布局,而不是在TabActivity 中调用

这是布局的xml文件,提前感谢

<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent" android:layout_gravity="right" android:foregroundGravity="right" >
    <LinearLayout
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@android:color/white">
    <TabWidget
        android:id="@android:id/tabs"
        android:layout_width="fill_parent"
        android:layout_height="30dp"
        android:background="@drawable/submenu_bg" android:layout_gravity="right"/>
    <FrameLayout
        android:id="@android:id/tabcontent"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent" >
        <ProgressBar
        android:id="@+id/loading_secondary_tabs"
        android:layout_width="wrap_content" 
        android:layout_height="wrap_content" android:layout_gravity="center" />
        </FrameLayout>
</LinearLayout>
</TabHost>

我认为您需要设置android:gravity="right"。只需将其与layout_gravity一起包含,并查看其是否适用于

相关内容

  • 没有找到相关文章

最新更新