Android Fragment 简介及使用示例(一)

关于 Fragment 可以归纳出如下特征:

  1. Fragment 总是作为 Activity 界面的组成部分。Fragment 可以调用 getActivity() 方法获取它所在的 Activity,Activity 可调用 FragmentManager 的 findFragmentById() 或 findFragmentByTag() 方法来获取 Fragment。在界面布局文件中使用 <fragment ... /> 元素添加 Fragment 时,可以为 <fragment ... /> 元素指定 android:id 或者 android:tag 属性,这两个属性都可以用于标识该 Fragment,之后可以使用 findFragmentById() 或 findFragmentByTag() 方法来获取指定的 Fragment;
  2. 在 Activity 运行的过程中,可以调用 FragmentManager 的 add()、remove()、replace() 方法动态地添加、删除或替换 Fragment;
  3. 一个 Activity 可以同时组合多个 Fragment;同时,一个 Fragment 也可以被多个 Activity 复用;
  4. Fragment 可以响应自己的输入事件,并拥有自己的生命周期,但是它们的生命周期直接被所属的 Activity 的生命周期控制。

为了在 Activity 中显示 Fragment,还必须将 Fragment 添加到 Activity 中。将 Fragment 添加到 Activity 中有如下两种方式:

  1. 在布局文件中使用 <fragment ... /> 元素添加 Fragment,<fragment ... /> 元素的 android:name 属性指定 Fragment 的实现类;
  2. 在 Java 代码中通过 FragmentTransaction 对象的 add() 方法来添加 Fragment。Activity 的 getFragmentManager() 方法可以返回 FragmentManager 对象,FragmentManager 对象的 beginTransaction() 方法即可开启并返回 FragmentTransaction 对象。

Fragment 与 Activity 之间传递数据

  1. Activity 向 Fragment 传递数据:在 Activity 中创建 Bundle 数据包,并调用 Fragment 的 setArgument(Bundle bundle) 方法即可将 Bundle 数据包传给 Fragment。
  2. Fragment 向 Activity 传递数据 或 Activity 需要在 Fragment 运行中进行实时通信:在 Fragment 中定义一个内部回调接口,再让包含该 Fragment 的 Activity 实现该回调接口,这样 Fragment 即可调用该回调接口的方法将数据传给 Activity。

FragmentManager 可以完成如下的功能:

  1. 使用 findFragmentById() 或 findFragmentByTag() 方法来获取指定的 Fragment;
  2. 调用 popBackStack() 方法将 Fragment 从后台栈中弹出(类似用户按下 BACK 键);
  3. 调用 addOnBackStackChangeListener() 注册一个监听器,用于监听后台栈的变化。

如果我们需要添加、删除、替换 Fragment,则需要使用 FragmentTransaction 对象,它 代表 Activity 对 Fragment 执行多个改变。我们可以通过如下方法获取 FragmentTransaction 对象:

FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();

在调用 commit() 方法之前,我们也可以调用 addToBackStack() 方法将事务添加到 back 栈中,该栈由 Activity 负责管理,这样允许用户按下 BACK 键返回到上一个 Fragment 的状态。
示例代码:

FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
fragmentTransaction.replace(R.id.book_detail_container, fragment);
fragmentTransaction.addToBackStack(null);
fragmentTransaction.commit();

下面是源代码部分###

首先是 fragment_book_detail.xml 布局文件:

<?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">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:id="@+id/book_title"
        android:padding="16dp"
        style="?android:attr/textAppearanceLarge"
        />

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:id="@+id/book_desc"
        android:padding="16dp"
        style="?android:attr/textAppearanceMedium"
        />

</LinearLayout>

接下来是 activity_book_twopane.xml 布局文件:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginStart="16dp"
    android:layout_marginEnd="16dp"
    android:divider="?android:attr/dividerHorizontal"
    android:showDividers="middle"
    >

    <fragment
        android:name="com.toby.personal.testlistview.BookListFragment"
        android:id="@+id/book_list"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="1"
        />

    <FrameLayout
        android:id="@+id/book_detail_container"
        android:layout_width="0dp"
        android:layout_height="match_parent"
        android:layout_weight="3"
        />

</LinearLayout>

接下来,是 BookContent.java 文件:

package com.toby.personal.testlistview;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * Created by toby on 17-3-29.
 */

class BookContent {

    static class Book {
        public Integer id;
        String title;
        String desc;

        Book(Integer id, String title, String desc) {
            this.id = id;
            this.title = title;
            this.desc = desc;
        }

        @Override
        public String toString() {
            return title;
        }
    }

    static List<Book> ITEMS = new ArrayList<>();
    static Map<Integer, Book> ITEM_MAP = new HashMap<>();

    static {
        addItem(new Book(1, "小狗钱钱", "理财入门读物"));
        addItem(new Book(2, "小狗钱钱的爸爸", "理财入门读物"));
        addItem(new Book(3, "穷爸爸和富爸爸", "理财入门读物"));
    }

    private static void addItem(Book book) {
        ITEMS.add(book);
        ITEM_MAP.put(book.id, book);
    }

}

接下来,是 BookListFragment.java 文件:

package com.toby.personal.testlistview;

import android.app.ListFragment;
import android.content.Context;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.View;
import android.widget.ArrayAdapter;
import android.widget.ListView;

/**
 * Created by toby on 17-3-29.
 */

public class BookListFragment extends ListFragment {

    private Callbacks callbacks;

    interface Callbacks {
        void onItemSelected(Integer id);
    }

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        setListAdapter(new ArrayAdapter<>(getActivity(),
                android.R.layout.simple_list_item_activated_1,
                android.R.id.text1, BookContent.ITEMS));
    }

    @Override
    public void onAttach(Context context) {
        super.onAttach(context);
        if (!(context instanceof Callbacks)){
            throw new IllegalStateException("Callbacks interface must be implemented!");
        }

        callbacks = (Callbacks) context;
    }

    @Override
    public void onDetach() {
        super.onDetach();
        callbacks = null;
    }

    @Override
    public void onListItemClick(ListView l, View v, int position, long id) {
        super.onListItemClick(l, v, position, id);
        callbacks.onItemSelected(BookContent.ITEMS.get(position).id);
    }

    public void setActivateOnItemClick(boolean activateOnItemClick) {
        getListView().setChoiceMode(activateOnItemClick ?
                ListView.CHOICE_MODE_SINGLE: ListView.CHOICE_MODE_NONE);
    }

}

接下来,是 BookDetailFragment.java 文件:

package com.toby.personal.testlistview;

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

/**
 * Created by toby on 17-3-29.
 */

public class BookDetailFragment extends Fragment {

    final public static String ITEM_ID = "item_id";

    private BookContent.Book book;

    @Override
    public void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);

        if (getArguments().containsKey(ITEM_ID)) {
            book = BookContent.ITEM_MAP.get(getArguments().getInt(ITEM_ID));
        }
    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {

        View rootView = inflater.inflate(R.layout.fragment_book_detail, container, false);

        if (book != null) {
            ((TextView) rootView.findViewById(R.id.book_title)).setText(book.title);
            ((TextView) rootView.findViewById(R.id.book_desc)).setText(book.desc);
        }

        return rootView;
    }
}

接下来,是 SelectBookActivity.java 文件:

package com.toby.personal.testlistview;

import android.app.Activity;
import android.app.FragmentTransaction;
import android.os.Bundle;
import android.support.annotation.Nullable;

/**
 * Created by toby on 17-3-29.
 */

public class SelectBookActivity extends Activity implements BookListFragment.Callbacks {

    @Override
    protected void onCreate(@Nullable Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_book_twopane);
    }

    @Override
    public void onItemSelected(Integer id) {
        Bundle arguments = new Bundle();
        arguments.putInt(BookDetailFragment.ITEM_ID, id);
        BookDetailFragment fragment = new BookDetailFragment();
        fragment.setArguments(arguments);
        FragmentTransaction fragmentTransaction = getFragmentManager().beginTransaction();
        fragmentTransaction.replace(R.id.book_detail_container, fragment);
        fragmentTransaction.addToBackStack(null);
        fragmentTransaction.commit();
    }
}

最后,调整 AndroidManifest.xml 文件:

        <activity android:name=".SelectBookActivity" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>

程序在虚拟机上的运行效果:

程序在虚拟机上的运行效果

参考文献:《疯狂Android讲义(第2版)》

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

推荐阅读更多精彩内容