我通过XML创建一个TabHost,并使用findViewByID()在Activity中调用它。 我把tabhost和tabwidget的重力放在了正确但它不起作用,我怎么能让它工作?
注意:我在Activity中调用了这个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>
答案 0 :(得分:0)
我认为您需要设置android:gravity="right"
。只需将其与 layout_gravity 结合使用,看看是否有效