直播平臺原始碼,TabLayout標籤較少時,如何居中顯示

zhibo系統開發發表於2023-10-19

直播平臺原始碼,TabLayout標籤較少時,如何居中顯示

 <android.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">
        </android.support.design.widget.TabLayout>

 app:tabGravity=”fill”和 app:tabMode=”fixed”:在標籤較少的時候,這兩個屬性同時使用,得到居中顯示效果。

 以上就是直播平臺原始碼,TabLayout標籤較少時,如何居中顯示, 更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2989877/,如需轉載,請註明出處,否則將追究法律責任。

相關文章