美文网首页移动客户端
android之Fragment介绍

android之Fragment介绍

作者: Lee_5566 | 来源:发表于2020-12-06 12:04 被阅读0次
    image.png

    Fragment

    Fragment:是Android3.0开始新增的概念,意为碎片。Fragment是依赖于Activity的,不能独立存在的。

    Android运行在各种各样的设备中,有小屏幕的手机,还有大屏幕的平板,电视等。

    同样的界面在手机上显示可能很好看,在大屏幕的平板上就未必了,手机的界面放在平板上可能会有过分被拉长、控件间距过大等情况。

    针对屏幕尺寸的差距,Fragment的出现能做到一个App可以同时适应手机和平板。

    Fragment是一种可以嵌入在Activity当中的UI片段,用来组建Activity界面的局部模块, 也可以说一个Actiivty界面可以由多个Fragment组成。

    其行为与Activity很相似, 有自己对应的布局(包含具体的View), 它有自己的生命周期,接收自己的输入事件,并且可以从运行中的activity中添加或移除。

    一个fragment必须总是嵌入在一个activity中,同时fragment的生命周期受activity的影响。本质上会产生一个FrameLayout,它加载的布局为其子布局。

    优势:

    • 模块化:我们不必把所有代码全部写在Activity中,而是把代码写在各自的Fragment中。

    • 可重用:多个Activity可以重用一个Fragment。

    • 可适配:根据硬件的屏幕尺寸、屏幕方向,能够方便地实现不同的布局,这样用户体验更好。

    Fragment的生命周期

    image.png

    onCreateView是创建的时候调用,onViewCreated是在onCreateView后被触发的事件,前后关系
    就是fragment中的onCreateView和onViewCreated的区别和联系。
    且onStart运行时间位于onViewCreated之后

    方法 含义
    onAttach方法 Fragment和Activity建立关联的时候调用(获得activity的传递的值)
    onCreateView方法 为Fragment创建视图(加载布局)时调用(给当前的fragment绘制UI布局,可以使用线程更新UI)
    onActivityCreated方法 当Activity中的onCreate方法执行完后调用(表示activity执行oncreate方法完成了的时候会调用此方法)
    onDestroyView方法 Fragment中的布局被移除时调用(表示fragment销毁相关联的UI布局)
    onDetach方法 Fragment和Activity解除关联的时候调用(脱离activity)

    使用实例

    fragment_tab.xml

    <?xml version="1.0" encoding="utf-8"?>
    <androidx.constraintlayout.widget.ConstraintLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    
        <TextView
            android:id="@+id/tv_bg"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="TextView" />
    </androidx.constraintlayout.widget.ConstraintLayout>
    

    TabFragment.java:

    package com.exmple.tabloayout;
    
    import android.graphics.Color;
    import android.os.Bundle;
    import android.view.LayoutInflater;
    import android.view.View;
    import android.view.ViewGroup;
    import android.widget.TextView;
    
    import androidx.annotation.NonNull;
    import androidx.annotation.Nullable;
    import androidx.fragment.app.Fragment;
    
    public class TabFragment extends Fragment {
        public static TabFragment newInstance(String label) {
            Bundle args = new Bundle();
            args.putString("label", label);
            TabFragment fragment = new TabFragment();
            fragment.setArguments(args);
            return fragment;
        }
    
        @Nullable
        @Override
        public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
            return inflater.inflate(R.layout.fragment_tab, container, false);
        }
    
        @Override
        public void onStart() {
            super.onStart();
            String label = getArguments().getString("label");
            TextView text = getView().findViewById(R.id.tv_bg);
            text.setText(label);
            text.setBackgroundColor(Color.rgb((int)(Math.random() * 255), (int)(Math.random() * 255), (int)(Math.random() * 255)));
        }
    }
    

    相关文章

      网友评论

        本文标题:android之Fragment介绍

        本文链接:https://www.haomeiwen.com/subject/kurxwktx.html