第三章(Fragment的使用方式)

Fragment的使用方式

简单用法

我们先看看如何在一个互动弄中添加两个碎片。

  1. 我们新建两个布局文件,一个叫left_fragment:
<?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">

    <Button
        android:id="@+id/button"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="Button" />

    <TextView
        android:id="@+id/left_fragment_textview"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="this is left fragment"
        android:textSize="20sp" />
</LinearLayout>

另一个叫right_fragment:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#ccdebc">
<TextView
    android:layout_height="wrap_content"
    android:layout_width="wrap_content"
    android:layout_gravity="center_horizontal"
    android:textSize="20sp"
    android:text="this is right fragment"
    android:id="@+id/right_fragment_textview"
    />
</LinearLayout>
  1. 接着创建两个Fragment并将刚刚我们创建的布局引入进去,这里需要注意的是有两个不同包的Fragment供选择,一个是系统内置的android.app.Fragment,另一个是android.support.v4.app.Fragment。这里建议使用第二种,因为它可以让碎片在所有Android系统中保持功能一致性
  • LeftFragment:

public class LeftFragment extends Fragment {
    private TextView textView;

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.left_fragment, container, false);
        textView = (TextView) view.findViewById(R.id.left_fragment_textview);
        return view;
    }

    public void changeTextView(String s) {
        textView.setText(s);
    }
}

  • RightFragment:
public class RightFragment extends Fragment {
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.right_fragment, container, false);
        return view;
    }

}

Fragment是通过onCreateView创建视图,然后在这个方法中通过LayoutInflater的inflate方法将刚才定义的fragment布局加载进来

  1. 然后在activity_main中布局中将两个Fragment引入 进去
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    tools:context="com.example.fragmenttest.MainActivity"
    android:orientation="horizontal">

 <fragment
     android:layout_height="match_parent"
     android:layout_width="0dp"
     android:layout_weight="1"
     android:id="@+id/left_fragment"
     android:name="com.example.fragmenttest.LeftFragment"/>
<fragment
     android:layout_height="match_parent"
     android:layout_width="0dp"
     android:layout_weight="1"
     android:id="@+id/right_fragment"
     android:name="com.example.fragmenttest.RightFragment"/>

这里需要通过android:name属性来显示指明要添加的碎片类名,注意一定要将类的包名也加上,这样就将这两个碎片加载进来了。

动态添加碎片

  1. 我们在上面的基础上新建一个AnotherRightFragment:
  • 布局:
<?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:background="#a7d9cf"
    android:orientation="vertical">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center_horizontal"
        android:text="this is another right fragment"
        android:textSize="20sp" />
    <Button
        android:layout_height="wrap_content"
        android:layout_width="wrap_content"
        android:id="@+id/button1"
        android:text="活动里面调用碎片里面的方法"
        android:layout_gravity="center_horizontal"
        />
</LinearLayout>
  • AnotherRightFragment:
package com.example.fragmenttest;

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 android.widget.Button;

/**
 * Created by 侯允林 on 2018/5/26.
 */

public class AnotherRightFragment extends Fragment {
    private Button button;
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.another_right_fragment,container,false);
        button=(Button)view.findViewById(R.id.button1);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                MainActivity activity=(MainActivity) getActivity();//获取与这个碎片关联的Activity
                activity.chageleftlayoutTextView("不帅");
            }
        });
        return view;

    }

}

这里的button待会再解释

  1. 然后修改activity_main:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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"
    tools:context="com.example.fragmenttest.MainActivity"
    android:orientation="horizontal">

 <fragment
     android:layout_height="match_parent"
     android:layout_width="0dp"
     android:layout_weight="1"
     android:id="@+id/left_fragment"
     android:name="com.example.fragmenttest.LeftFragment"/>
    <FrameLayout
        android:layout_height="match_parent"
        android:layout_width="0dp"
        android:layout_weight="1"
        android:id="@+id/right_layout"
        />

</LinearLayout>

这里将右侧的Fragment替换成了一个FrameLayout(帧布局,所有控件都默认摆放在左上角),因为这里仅仅只放一个碎片,不需要任何定位,所以适合FrameLayout。

  1. 修改MainActivity:
package com.example.fragmenttest;

import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    private Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);//也可以用savedInstanceState保存临时数据
        setContentView(R.layout.activity_main);
        button = (Button) findViewById(R.id.button);
        button.setOnClickListener(this);
        replaceFragment(new RightFragment());
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.button:
                replaceFragment(new AnotherRightFragment());
                break;
            default:
                break;
        }
    }
  private void replaceFragment(Fragment fragment) {
        FragmentManager manager = getSupportFragmentManager();
        FragmentTransaction transaction = manager.beginTransaction();
        transaction.replace(R.id.right_layout, fragment);
        transaction.addToBackStack(null);//将碎片添加到返回栈中
        transaction.commit();
    }
    
}


我们将左边的Fragment的Button在MainActivity里设置了一个监听,调用replaceFragment方法,这个方法实现动态添加碎片。

  • 首先通过getSupportFragmentManager方法获取一个FragmentManager的实例
  • 然后通过FragmentManager实例调用beginTransaction获取FragmentTransaction实例开启一个事务
  • 调用replace方法,传入容器的id和待添加的碎片实例
  • 提交事物,调用commit方法来实现
  • transaction.addToBackStack(null);将碎片添加到返回栈中,传入的是一个名字用于描述返回栈的状态,一般为null

碎片和活动之间的通信

为了方便碎片和活动之间进行通信,FragmentManager提供了一个类似于findViewbyId的方法,专门用于从布局中获取碎片实例的方法:

 LeftFragment leftFragment = (LeftFragment) getSupportFragmentManager().findFragmentById(R.id.left_fragment);

我们来实现在AnotherRightFragment里面修改LeftFragment里面的TextView显示的内容,办法是要在AnotherRightFragment里面调用MainActivity里面的方法来修改LeftFragment里面的TextView显示的内容

  1. 修改MainActivity:

public class MainActivity extends AppCompatActivity implements View.OnClickListener {
    private Button button;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);//也可以用savedInstanceState保存临时数据
        setContentView(R.layout.activity_main);
        button = (Button) findViewById(R.id.button);
        button.setOnClickListener(this);
        replaceFragment(new RightFragment());
    }

    private void replaceFragment(Fragment fragment) {
        FragmentManager manager = getSupportFragmentManager();
        FragmentTransaction transaction = manager.beginTransaction();
        transaction.replace(R.id.right_layout, fragment);
        transaction.addToBackStack(null);//将碎片添加到返回栈中
        transaction.commit();
    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.button:
                replaceFragment(new AnotherRightFragment());
                break;
            default:
                break;
        }
    }

    public void chageleftlayoutTextView(String s) {
        LeftFragment leftFragment = (LeftFragment) getSupportFragmentManager().findFragmentById(R.id.left_fragment);
        leftFragment.changeTextView(s);
    }

    @Override
    public void onBackPressed() {
        replaceFragment(new RightFragment());
        chageleftlayoutTextView("left_fragment_textview");
    }
}

  1. 修改AnotherRightFragment

public class AnotherRightFragment extends Fragment {
    private Button button;
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.another_right_fragment,container,false);
        button=(Button)view.findViewById(R.id.button1);
        button.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View v) {
                MainActivity activity=(MainActivity) getActivity();//获取与这个碎片关联的Activity
                activity.chageleftlayoutTextView("不帅");
            }
        });
        return view;

    }

getActivity方法能获取与这个碎片关联的Activity,这样不仅实现了碎片与活动之间的通信,还实现了碎片与碎片之间的通信


image

关于碎片的简单用法就先讲到这儿

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

推荐阅读更多精彩内容

  • 1. 引言   现如今移动设备的发展非常的迅速,手机和平板都非常的普及了。这两者的差距除了屏幕的大小以外,其他的差...
    忆念成风阅读 720评论 1 1
  • Fragment 描述:   翻译可以译为:碎片、片段,Android 3.0开始引入fragments 的概念;...
    Lost_Robot阅读 1,692评论 0 11
  • 前言 Fragment想必大家不陌生吧,在日常开发中,对于Fragment的使用也很频繁,现在主流的APP中,基本...
    斜杠时光阅读 2,579评论 4 22
  • 【引子】聚会过去已经一周多了,烟花散尽,选择这时候回望,多一些冷静和理性。...... 好吧,就是懒...... ...
    温而阅读 245评论 0 0
  • 我们班非常流行抄作业,学习好的差的都在抄作业,一天晚上,我依旧在抄别人的作业,第二天早上,我本想将作业还回去,无奈...
    幽怜兮妍阅读 298评论 1 0