安卓Fragment

Fragment是在Android 3.0开始引用的新的API技术。Fragment作为Activity界面的一部分组成出现。

Fragment作为Activty的它的生命周期受Activity的影响。

安卓Fragment_第1张图片

1.Fragment的创建

①静态创建 (xml文件中创建

1.通过id/tag找到Fragment

2.class继承Fragment

3.关联Fragment

xml代码

xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/activity_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="example.com.a2018116a.MainActivity">

    <fragment
        class="example.com.a2018116a.fragment.MyFragment1"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:tag="myfragment1" />

    
LinearLayout>
安卓Fragment_第2张图片


创建class继承Fragment(v4包)

安卓Fragment_第3张图片

fragment1.xml如下

xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:background="@color/colorAccent">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="我是静态的fragmnet"
        android:textSize="30sp" />
LinearLayout>

安卓Fragment_第4张图片

MyFragment.java代码

package example.com.a2018116a.fragment;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;

import example.com.a2018116a.R;

/**
 * Created by 11941 on 2018/1/16.
 */

public class MyFragment1 extends Fragment {
    /**
     *
     * @param inflater      布局 转换器
     * @param container     容器
     * @param savedInstanceState     保存
     * @return
     */
    @Nullable
    @Override

    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment1, container, false);
        return view;
    }
}

②动态创建(java代码中创建)

1.容器 RelativeLayout LinerLayout

<RelativeLayout
    android:id="@+id/container"
    android:layout_width="match_parent"
    android:layout_height="200dp">RelativeLayout>
2.java Activity

fragment2.xml

<TextView
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:text="我是动态创建的fragmnet2"
    android:textSize="30sp" />

MyFragment2.java自动创建

安卓Fragment_第5张图片

安卓Fragment_第6张图片

MainActivity.java代码

package example.com.a2018116a;

import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

import example.com.a2018116a.fragment.MyFragment2;

public class MainActivity extends AppCompatActivity {
    MyFragment2 mfragment2;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //1.new Fragment
        mfragment2 = new MyFragment2();
        //2.管理类
        FragmentManager fm = getSupportFragmentManager();
        //事务类
        FragmentTransaction ft = fm.beginTransaction();
        ft.add(R.id.container, mfragment2);
        //提交
        ft.commit();
    }
}
安卓Fragment_第7张图片

2.Fragment的传值

3.Fragment的生命周期

你可能感兴趣的:(安卓Fragment)