Android TabLayout导航条属性的设置


静态修改


 <android.support.design.widget.TabLayout
        android:id="@+id/synthesize_tablayout"
        android:layout_width="match_parent"
    --1tab的高度-->
    android:layout_height="wrap_content"
    
    android:background="#ecebeb"
    
    app:tabTextColor="#8e8d8d"
    
    app:tabSelectedTextColor="#08b110"
    
    app:tabIndicatorColor="#08b110"
    
    app:tabIndicatorHeight="15dp"
    
    app:tabMode="scrollable(fixed)"
    
    app:tabTextAppearance="@android:style/TextAppearance.Holo.Large"/>

你可能感兴趣的:(android_UI)