TabLayout+ViewPager+Fragment实现滑动菜单

最近闲来无事,想想滑动菜单好久没做了,写写熟悉一下


简书2.jpg

开启一个新的app,创建MainActivity和布局activity_main
在写布局文件的时候用到了ConstraintLayout控件(ConstraintLayout 为 约束布局,也有人把它称作 增强型的相对布局,由 2016 年 Google I/O 推出),ConstraintLayout有优化渲染布局的性能,如果在里面嵌套布局时
报错,请参考


1541059391.jpg

TabLayout布局可以通过app:tabIndicatorColor="@color/color_blue"设置选中下划线颜色,设置成透明就是不显示,也可以通过app:tabIndicatorHeight="0dp"将高度设置为0dp
具体请看代码
TabLayout布局属性https://www.jianshu.com/p/23863e4bbea1

        <?xml version="1.0" encoding="utf-8"?>
         <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@mipmap/bg"
    android:fitsSystemWindows="true">

    <RelativeLayout
        android:id="@+id/signin_title_ll"
        android:layout_width="0dp"
        android:layout_height="0dp"
        android:background="@mipmap/title_bg"
        tools:layout_constraintTop_creator="1"
        tools:layout_constraintRight_creator="1"
        app:layout_constraintRight_toRightOf="parent"
        tools:layout_constraintLeft_creator="1"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <ImageView
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:background="@mipmap/logo_bg"
            android:layout_centerVertical="true"
            android:layout_marginLeft="10dp"/>

        <TextView
            android:id="@+id/signin_title_tv"
            android:layout_width="wrap_content"
            android:layout_height="49dp"
            android:layout_centerInParent="true"
            android:gravity="center"
            android:text="签到系统"
            android:textColor="@color/color_black"
            android:textSize="16sp" />

    </RelativeLayout>


    <android.support.design.widget.TabLayout
        android:id="@+id/signin_tabs"
        android:layout_width="0dp"
        android:layout_height="40dp"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/signin_title_ll"
        app:tabIndicatorColor="@color/color_blue" 下划线颜色,设置成透明就是不显示
        app:tabIndicatorHeight="0dp"  下划线不显示
        app:tabBackground="@drawable/tab_background" 背景改变
        app:tabSelectedTextColor="@color/color_white"     文字被选中颜色
        app:tabTextColor="@color/color_1A"                       文字不被选中颜色
        android:padding="10dp"     背景图片内置距离
        app:tabMode="scrollable"/>
  
    <android.support.v4.view.ViewPager
        android:id="@+id/viewpager"
        android:layout_width="0dp"
        android:layout_height="502dp"
        android:layout_marginEnd="14dp"
        android:layout_marginStart="14dp"
        android:background="@mipmap/contain"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        app:layout_constraintLeft_toLeftOf="parent"
        app:layout_constraintRight_toRightOf="parent"
        app:layout_constraintTop_toBottomOf="@+id/signin_tabs"
        tools:layout_constraintLeft_creator="1"
        tools:layout_constraintRight_creator="1"
        android:layout_marginLeft="14dp"
        android:layout_marginRight="14dp" />

</android.support.constraint.ConstraintLayout>

在drawable中添加tab_background.xml文件

    <selector xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:drawable="@mipmap/title_sel" android:state_selected="true" />
        <item android:drawable="@drawable/sel" android:state_focused="false"  />
    </selector>```
在drawable中添加sel.xml文件,这个就是为了设置透明属性
   ```   <?xml version="1.0" encoding="utf-8"?>
        <shape xmlns:android="http://schemas.android.com/apk/res/android">
            <solid android:color="@color/color_tralate" />
        </shape>```

布局就简单的完成了(注意添加依赖
    compile 'com.android.support:design:25.3.1'
    compile 'com.android.support:support-v4:25.3.1'
)
接下来就是Activity中的实现

    public class MainActivity extends BaseActivity {
    
        private TabLayout mSigninTabs;
        private TextView mSigninTitle;
        private ViewPager mViewPager;
        private Context context = null;
    
        @Override
        protected void onCreate(Bundle savedInstanceState) {
            super.onCreate(savedInstanceState);
            setContentView(R.layout.activity_main);//为了让图片覆盖title而进行的自定义
            context = this;
            initData();
            initView();
            initViewPager();
        }
    
        private void initViewPager() {
            List<String> titles = new ArrayList<>();
            titles.add("第1节课");
            titles.add("第2节课");
            titles.add("第3节课");
            titles.add("第4节课");
            titles.add("第5节课");
            titles.add("第6节课");
            titles.add("第7节课");
            titles.add("第8节课");
            titles.add("第9节课");
            titles.add("第10节课");
    
            for (int i = 0; i < titles.size(); i++) {
                //滑动菜单文字的写入
                mSigninTabs.addTab(mSigninTabs.newTab().setText(titles.get(i)));
            }
            //加入相应的Fragment
            List<Fragment> fragments = new ArrayList<>();
            for (int i = 0; i < titles.size(); i++) {
                if(i==0){
                    fragments.add(new ListsFragment());
                }else {
                    fragments.add(new ListsFragment2());
                }
    
            }
    
            FragmentAdapter mFragmentAdapteradapter = new FragmentAdapter(getSupportFragmentManager(), fragments, titles);
            //给ViewPager设置适配器
             mViewPager.setAdapter(mFragmentAdapteradapter);
            // 将TabLayout和ViewPager关联起来。
            mSigninTabs.setupWithViewPager(mViewPager);
            // 给TabLayout设置适配器
            mSigninTabs.setTabsFromPagerAdapter(mFragmentAdapteradapter);
    
        }
    
        private void initView() {
            mSigninTitle = (TextView) findViewById(R.id.signin_title_tv);
            mSigninTabs = (TabLayout) findViewById(R.id.signin_tabs);
            mViewPager = (ViewPager) findViewById(R.id.viewpager);
        }
    
        private void initData() {
        }
    }

ListsFragment与ListsFragment2中的代码是一样的只是显示个布局
    public class ListsFragment extends Fragment {
        private View mView;
    
        @Override
        public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
            mView = (View) inflater.inflate(R.layout.list_fragment, container, false);
            return mView;
        }
        
    }
布局文件list_fragment
  <?xml version="1.0" encoding="utf-8"?>
    <android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true">
    
        <TextView
            android:id="@+id/lesson_detail_tv"
            android:layout_width="150dp"
            android:layout_height="26dp"
            android:layout_marginTop="@dimen/px_70"
            android:background="@mipmap/lesson_bg"
            android:gravity="center"
            android:text="课程详细信息"
            android:textColor="@color/color_1A"
            android:textSize="@dimen/px_36"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toTopOf="parent"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1" />
    
        <RelativeLayout
            android:id="@+id/lesson_detail_re1"
            android:layout_width="0dp"
            android:layout_height="30dp"
            android:layout_marginTop="@dimen/px_90"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/lesson_detail_tv"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
    
                android:text="课程:  综合汉语一 \nCourse"
                android:textColor="@color/color_1A"
                android:layout_marginLeft="@dimen/px_140"
                android:textSize="@dimen/px_40" />
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="@dimen/px_140"
                android:layout_alignParentRight="true"
    
                android:text="应到人数:  40\nno.ofpeople"
                android:textColor="@color/color_1A"
                android:textSize="@dimen/px_40" />
        </RelativeLayout>
        <RelativeLayout
            android:id="@+id/lesson_detail_re2"
            android:layout_width="0dp"
            android:layout_height="30dp"
            android:layout_marginTop="@dimen/px_50"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/lesson_detail_re1"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
    
                android:text="教室:  TRB201 \nClassroom"
                android:textColor="@color/color_1A"
                android:layout_marginLeft="@dimen/px_140"
                android:textSize="@dimen/px_40" />
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="@dimen/px_140"
                android:layout_alignParentRight="true"
    
                android:text="实到人数:  36\nActual no."
                android:textColor="@color/color_1A"
                android:textSize="@dimen/px_40" />
        </RelativeLayout>
        <RelativeLayout
            android:id="@+id/lesson_detail_re3"
            android:layout_width="0dp"
            android:layout_height="30dp"
            android:layout_marginTop="@dimen/px_50"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/lesson_detail_re2"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
    
                android:text="班级:   08春A1-01 \nClass"
                android:textColor="@color/color_1A"
                android:layout_marginLeft="@dimen/px_140"
                android:textSize="@dimen/px_40" />
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="@dimen/px_140"
                android:layout_alignParentRight="true"
    
                android:text="迟到人数:  2  \nlate no."
                android:textColor="@color/color_1A"
                android:textSize="@dimen/px_40" />
        </RelativeLayout>
        <RelativeLayout
            android:id="@+id/lesson_detail_re4"
            android:layout_width="0dp"
            android:layout_height="30dp"
            android:layout_marginTop="@dimen/px_50"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/lesson_detail_re3"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1">
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
    
                android:text="教师:  张春光 \nTeacher"
                android:textColor="@color/color_1A"
                android:layout_marginLeft="@dimen/px_140"
                android:textSize="@dimen/px_40" />
    
            <TextView
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginRight="@dimen/px_140"
                android:layout_alignParentRight="true"
    
                android:text="未到人数:  4  \nAbsence no."
                android:textColor="@color/color_1A"
                android:textSize="@dimen/px_40" />
        </RelativeLayout>
        <TextView
            android:id="@+id/lesson_detail_tv2"
            android:layout_width="150dp"
            android:layout_height="26dp"
            android:layout_marginTop="@dimen/px_70"
            android:background="@mipmap/lesson_bg"
            android:gravity="center"
            android:text="学生刷卡信息"
            android:textColor="@color/color_1A"
            android:textSize="@dimen/px_36"
            app:layout_constraintTop_toBottomOf="@id/lesson_detail_re4"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1" />
        <RelativeLayout
            android:id="@+id/students_detail_re5"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_marginTop="@dimen/px_132"
            app:layout_constraintLeft_toLeftOf="parent"
            app:layout_constraintRight_toRightOf="parent"
            app:layout_constraintTop_toBottomOf="@id/lesson_detail_tv2"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1">
    
            <ImageView
                android:layout_width="81.33dp"
                android:layout_height="111.33dp"
                android:background="@mipmap/students_bg"
                android:src="@mipmap/students"
                android:padding="5dp"
                android:textColor="@color/color_1A"
                android:layout_marginLeft="@dimen/px_140"
                android:textSize="@dimen/px_40" />
    
            <TextView
                android:id="@+id/name"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/px_534"
                android:layout_alignParentLeft="true"
    
                android:text="姓名:  小赵\nName"
                android:textColor="@color/color_1A"
                android:textSize="@dimen/px_40" />
            <TextView
                android:id="@+id/time"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/px_534"
                android:layout_alignParentLeft="true"
                android:layout_below="@id/name"
                android:layout_marginTop="@dimen/px_30"
                android:text="签到时间:  08:29:36\nCheck in time"
                android:textColor="@color/color_1A"
                android:textSize="@dimen/px_40" />
            <TextView
                android:id="@+id/status"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_marginLeft="@dimen/px_534"
                android:layout_alignParentLeft="true"
                android:layout_below="@id/time"
                android:layout_marginTop="@dimen/px_30"
                android:text="刷卡状态:  正常\nSwipe status"
                android:textColor="@color/color_1A"
                android:textSize="@dimen/px_40" />
        </RelativeLayout>
    </android.support.constraint.ConstraintLayout>

这个只是简单的布局实现,还有很多地方需要优化

这个简单的滑动菜单就实现了,根据需要可以添加不停的Fragment内容
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,100评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,308评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,718评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,275评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,376评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,454评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,464评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,248评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,686评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,974评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,150评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,817评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,484评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,140评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,374评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,012评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,041评论 2 351

推荐阅读更多精彩内容

  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,383评论 0 17
  • Day1: 在代码中通过R.string.hello_world可以获得该字符串的引用; 在XML中通过@stri...
    冰凝雪国阅读 1,395评论 0 5
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,944评论 25 707
  • 用两张图告诉你,为什么你的 App 会卡顿? - Android - 掘金 Cover 有什么料? 从这篇文章中你...
    hw1212阅读 12,709评论 2 59
  • 文/湘邵铁炉 晚上好,【今日铁炉说——会倾听是情商高的一种表现】:口才好、会演讲是一个人...
    湘邵铁炉阅读 138评论 0 4