教你使用Fragment + ViewPager制作一款底部滑动APP

滑动切换页面是一个很普遍基础的技术,很多APP的开发都会涉及到这部分。今天就由我来带领你们“吃通”这个技术。

先展示一下效果:

483488.gif

项目源代码的地址:
https://github.com/WeCheir/Fragment-ViewPager

首先,创建一个空的MainActivity

public class MainActivity extends AppCompatActivity {
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
    }
}

修改activity_main中的布局,添加三个RadioButton和一个ViewPager。
为了减少代码代码量,先在style.xml中添加下面几段代码:

<style name="radioBtn">
        <item name="android:button">@null</item>
        <item name="android:padding">15dp</item>
        <item name="android:gravity">center</item>
    </style>

在每一个RadioButton中都调用这个style

style="@style/radioBtn"
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".MainActivity">

    <RadioGroup
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintBottom_toBottomOf="parent"
            android:orientation="horizontal"
            android:background="#EDEDED"
            android:id="@+id/radioGroup">

        <RadioButton
                android:text="首页"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/home"
                android:layout_weight="1"
                style="@style/radioBtn"
                android:padding="15dp"
                android:checked="true" />
        <RadioButton
                android:text="新闻"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/news"
                android:layout_weight="1"
                style="@style/radioBtn"/>
        <RadioButton
                android:text="消息"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/info"
                android:layout_weight="1"
                style="@style/radioBtn"/>

    </RadioGroup>

    <android.support.v4.view.ViewPager
            android:id="@+id/viewPager"
            android:layout_width="0dp"
            android:layout_height="0dp"
            app:layout_constraintTop_toTopOf="parent"
            app:layout_constraintStart_toStartOf="parent"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintBottom_toTopOf="@+id/radioGroup"/>
</android.support.constraint.ConstraintLayout>

PS:有关ConstraintLayout的用法我就不再这里讲解了,如果有需要的话我后面会再出一篇关于这方面的博客。
这段代码贴上去后应该是酱紫的:


48615.png

看上去是不是有种空落落的感觉?我们来美化一下RadioButton的样子吧。
在drawable文件夹中创建一个名叫draw_bg的Drawable Resuurce File来让按钮选中时背景变色。
使用下面的这段代码放进去:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item   android:state_checked="true">
        <color android:color="#138DF1"/>
    </item>
    <item>
        <color android:color="#EDEDED"/>
    </item>
</selector>

看不懂的话听我给你解释一下。
这个selector是android自定义控件属性用的东西,用于展示控件不同状态时的样子。selector中的基本结构为:

<selector>
  <item 状态1 color或drawable>
  <item 状态2 color或drawable>
  <item  color或drawable>
<selector/>

在selector的每个节点中,都可以指定一种状态,常见的状态属性名称有:

android:state_pressed:按下
android:state_focused:获得焦点
android:state_selected:选中
android:state_checkable:可勾选
android:state_checked:勾选
android:state_enable:可用

在selector中的诶个<item>下还可以添加<shape>、<color>、<bitmap>等节点设置更多的显示效果。
听完后有点感觉没?没有话就忽略了吧(嘿嘿)。
再来创建一个draw_text来变一下它的文字颜色吧:

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:state_checked="true" android:color="#FFF"/>
    <item android:color="#000"/>
</selector>

再RadioButton中调用一下看看效果:

android:background="@drawable/draw_bg"
android:textColor="@drawable/draw_text"
866663.png

完成上面的任务后,来添加一下需要切换的页面:
创建三个Fragment(Home、Message、News):

public class Home extends Fragment {
    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return (View) inflater.inflate(R.layout.home,null);
    }    
    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
    }
}
public class Message extends Fragment {
    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return (View) inflater.inflate(R.layout.message,null);
    }
    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
    }
}
public class News extends Fragment {
    @Nullable
    @Override
    public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        return (View) inflater.inflate(R.layout.news,null);
    }
    @Override
    public void onActivityCreated(@Nullable Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
    }
}

布局的话你们随意,如果怕麻烦的话就直接粘贴下面的吧:

<?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="#099EE2">

    <TextView
        android:text="首页"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:id="@+id/textView" android:layout_marginTop="8dp"
        app:layout_constraintTop_toTopOf="parent" app:layout_constraintStart_toStartOf="parent"
        android:layout_marginStart="8dp" app:layout_constraintEnd_toEndOf="parent" android:layout_marginEnd="8dp"
        android:layout_marginBottom="8dp" app:layout_constraintBottom_toBottomOf="parent" android:textSize="30sp"
        android:textColor="#FFF"/>
</android.support.constraint.ConstraintLayout>

现在是时候来拿MainActivity开刀了,把刚刚创建的Fragment与ViewPager关联起来:

public class MainActivity extends AppCompatActivity {
    private ViewPager viewPager;
    private RadioGroup radioGroup;
    private List<Fragment> fragmentList;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        init();
        //装载Fragment的容器
        fragmentList = new ArrayList<Fragment>();
        fragmentList.add(new Home());
        fragmentList.add(new News());
        fragmentList.add(new Message());
        //利用FragmentStatePagerAdapter来对数据进行适配
        FragmentStatePagerAdapter adapter = new FragmentStatePagerAdapter(getSupportFragmentManager()) {
            @Override
            public Fragment getItem(int i) {
                return fragmentList.get(i);
            }

            @Override
            public int getCount() {
                return fragmentList.size();
            }
        };
        //给ViewPager指定适配器
        viewPager.setAdapter(adapter);
    }
    private void init() {
        viewPager = findViewById(R.id.viewPager);
        radioGroup = findViewById(R.id.radioGroup);
    }
}

如果你把上面的代码运行了一遍,你就会惊喜的发现——诶,怎么我的按钮不起作用呢?
这是因为我们还没有给按钮设置监听事件,它并不会这么聪明的知道你按下了它,它就应该踢掉一页Fragment,叫下一个来顶替。
这里呢,也很简单就能实现,添加下面段代码就行了:

radioGroup.setOnCheckedChangeListener(new RadioGroup.OnCheckedChangeListener() {
            @Override
            public void onCheckedChanged(RadioGroup group, int checkedId) {
                switch(checkedId){
                    case R.id.home:
                        viewPager.setCurrentItem(0);
                        break;
                    case R.id.news:
                        viewPager.setCurrentItem(1);
                        break;
                    case R.id.info:
                        viewPager.setCurrentItem(2);
                        break;
                    default:
                        break;
                }
            }
        });

这个setCurrentItem()就是让ViewPager切换到指定页面。

//ViewPager滑动时会自动让RadioButton选中
 viewPager.addOnPageChangeListener(new ViewPager.OnPageChangeListener() {
            //viewPager滑动时会触发
            @Override
            public void onPageScrolled(int i, float v, int i1) {

            }
            //viewPager选中时会触发
            @Override
            public void onPageSelected(int i) {
                switch(i){
                    case 0:
                        radioGroup.check(R.id.home);
                        break;
                    case 1:
                        radioGroup.check(R.id.news);
                        break;
                    case 2:
                        radioGroup.check(R.id.info);
                        break;
                    default:
                        break;
                }
            }
            //viewPager状态改变时会触发
            @Override
            public void onPageScrollStateChanged(int i) {

            }
        });

好的,终于完工了,午饭加个鸡腿犒劳一下自己。

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

推荐阅读更多精彩内容