Android:TabLayout的一些设置

Tablayout是谷歌自己出的针对带有标题栏的viewpage滚动控件.我在开发中使用到的一些设置:

    <android.support.design.widget.TabLayout
        android:id="@+id/ortsf_tl_table"
        android:layout_width="match_parent"
        app:tabTextColor="@color/blue_l"
        app:tabSelectedTextColor="@android:color/white"
        app:tabIndicatorColor="@android:color/transparent"
        app:tabBackground="@drawable/radiobutton_blue_write_selector"
        android:layout_height="wrap_content"/>
<!--app:tabTextAppearance=""-->针对字体加粗和字体大小的一些设置!需要自己定义一些style来控制.

posted on 2017-02-04 10:44  放纵的卡尔  阅读(1597)  评论(0编辑  收藏  举报

导航