一. TabLayout 横滑布局文件xml

来源:互联网 发布:江南大学网络接入系统 编辑:程序博客网 时间:2024/05/22 06:41

1.首先导入依赖   compile 'com.android.support:design:25.2.0'

  (右击工程名  倒数第二个 open module settings ---》找到Dependencies ---》右上角加号 ----》尾缀是design:版本号)

<!--
    app:tabGravity="center"    设置居中对齐
        app:tabIndicatorColor="@color/colorAccent" 下滑线的颜色
        app:tabMode="scrollable"  设置tabLayoout菜单的模式,,,scrollable可以横向滚动
        app:tabSelectedTextColor="@color/colorPrimaryDark"  选中的时候文字的颜色
        app:tabTextColor="@color/colorPrimary"       文本默认的颜色
    -->

<android.support.design.widget.TabLayout    android:layout_width="match_parent"    android:layout_height="40dp"    android:id="@+id/my_table"    app:tabGravity="center"    app:tabIndicatorColor="@color/colorAccent"    app:tabMode="scrollable"    app:tabSelectedTextColor="@color/colorPrimaryDark"    app:tabTextColor="@color/colorPrimary"    ></android.support.design.widget.TabLayout>

原创粉丝点击