TabLayout标签较少时,如何居中显示

 .support.design.widget.TabLayout
            android:id="@+id/tabLayout"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            app:tabBackground="@color/colorPrimary"
            app:tabGravity="fill"
            app:tabIndicatorColor="@color/colorAccent"
            app:tabMode="fixed"
            android:elevation="3dp"
            app:tabSelectedTextColor="@color/colorAccent"
            app:tabTextColor="#ffffffff">
        .support.design.widget.TabLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12

app:tabGravity=”fill”app:tabMode=”fixed”在标签较少的时候,这两个属性同时使用,得到居中显示效果。

全屏显示 :

getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN); 用在 setContentView 之前

你可能感兴趣的:(效果初现,用法概括)