2016-10-06 63 views
0

我用viewpager顯示了4個標籤,但標籤的文本變得有點受到干擾。因此,我想一次顯示3個選項卡並訪問第4個選項卡,用戶可以瀏覽選項卡。 請告訴我如何一次顯示3個選項卡?顯示具體編號。在android的viewpager中的標籤頁

這是我正在使用的xml文件。

<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android" 
 
    xmlns:app="http://schemas.android.com/apk/res-auto" 
 
    android:layout_width="match_parent" 
 
    android:layout_height="match_parent" > 
 

 
    <android.support.design.widget.AppBarLayout 
 
     android:layout_width="match_parent" 
 
     android:layout_height="wrap_content" 
 
     android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar" > 
 

 
     <android.support.design.widget.TabLayout 
 
      android:id="@+id/tabs" 
 
      android:layout_width="match_parent" 
 
      android:layout_height="wrap_content" 
 
       android:background="#EF3B3B" 
 
      app:tabGravity="fill" 
 
      app:tabMode="fixed" /> 
 
    </android.support.design.widget.AppBarLayout> 
 

 
    <android.support.v4.view.ViewPager 
 
     android:id="@+id/viewpager" 
 
     android:layout_width="match_parent" 
 
     android:layout_height="match_parent" 
 
     
 
     app:layout_behavior="@string/appbar_scrolling_view_behavior" /> 
 

 
</android.support.design.widget.CoordinatorLayout>

回答

相關問題