横向中的Android actionBar标签不占用全宽

时间:2014-08-21 12:00:01

标签: android tabs android-actionbar landscape

我想在我的操作栏中只显示标签,所以我以编程方式隐藏标题和主页图标

    viewPager = (ViewPager) findViewById(R.id.pager); 
    actionBar = getActionBar();
    mAdapter = new TabsPagerAdapter(getSupportFragmentManager());

    viewPager.setAdapter(mAdapter);

    actionBar.setDisplayShowTitleEnabled(false);
    actionBar.setDisplayShowHomeEnabled(false);       
    actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);

在肖像模式下一切正常。标签占据宽度的整个空间。

enter image description here

但是如果我切换到横向模式,标签大约占宽度的40%。

enter image description here

我想在横向模式下扩展标签,就像在纵向模式下一样。我尝试了很多东西,但我找不到任何解决方案。有可能或只有一种方法是使用TabHost?

编辑:我的寻呼机布局:

<android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/pager"
android:layout_width="match_parent"
android:layout_height="match_parent" /> 

1 个答案:

答案 0 :(得分:0)

您可以在XML文件中显示与寻呼机相关的部分吗?以下是一些可以应用于他们的建议;

android:layout_width="match_parent"

android:gravity="center_horizontal"

android:layout_centerInParent="true"

或者,尝试将alignLeft和alignRight属性设置为相同的参考点。