Android入门——UI(8)——Fragment(2)

先演示一下如何在一个activity中放置两个Fragment,先定义两个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:gravity="center"
    android:orientation="vertical">

    <Button
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:gravity="center"
        android:text="注销登陆" />
</LinearLayout>

fragment_indexbottom.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">

    <TextView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:gravity="center"
        android:text="上面的片段显示用户信息" />
</LinearLayout>

fragment_indextop.xml

package com.ouc.wkp.ui1;

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;

/**
 * Created by wkp on 2016/8/25.
 */
public class FragmentIndexBottom extends Fragment {
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.fragment_indexbottom,container,false);
        return view;
    }
}

FragmentIndexBottom.java

package com.ouc.wkp.ui1;

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;

/**
 * Created by wkp on 2016/8/25.
 */
public class FragmentIndexTop extends Fragment{
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.fragment_indextop,container,false);
        return view;
    }
}

FragmentIndexTop.java

然后定义Activity,放置两个FrameLayout

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

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

    <FrameLayout
        android:id="@+id/fragment_layout_bottom"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"></FrameLayout>
</LinearLayout>

fragment_demo2.xml

package com.ouc.wkp.ui1;

import android.os.Bundle;
import android.os.PersistableBundle;
import android.support.annotation.Nullable;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;

/**
 * Created by wkp on 2016/8/25.
 */
public class FragmentDemo2 extends FragmentActivity {

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

        FragmentManager fm = getSupportFragmentManager();
        FragmentTransaction ft = fm.beginTransaction();
        ft.replace(R.id.fragment_layout_top, new FragmentIndexTop());
        ft.replace(R.id.fragment_layout_bottom, new FragmentIndexBottom());
        ft.commit();
    }
}

FragmentDemo2.java

上面的例子比较简单,和上一篇基本类似,所以很容易看出使用Fragment是为了代码的复用。

下面介绍fragment和activity之间的通信。有两种形式,一种是fragment->activity,另一种是activity->fragment。

实现方式是定义modify函数或者定义事件监听方法回调。方法回调的方式比较不好理解

<?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="#f00"
    android:orientation="vertical">

    <TextView
        android:id="@+id/tv_in_fragment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="这是一个Fragment,通过动态方式加载" />

    <Button
        android:id="@+id/btn_in_fragment"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />
</LinearLayout>

fragment_index.xml

package com.ouc.wkp.ui1;

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.TextView;

/**
 * Created by wkp on 2016/8/25.
 */
public class FragmentIndex extends Fragment {//app包下3.0以后才可以使用

    private OnBtnClickListener onBtnClickListener;

    public void setOnBtnClickListener(OnBtnClickListener onBtnClickListener) {
        this.onBtnClickListener = onBtnClickListener;
    }

    public interface OnBtnClickListener{
        void onBtnClick();
    }

    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        //别遗忘第三个false参数,否则会出现 java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child‘s parent first.
        View view=inflater.inflate(R.layout.fragment_index,container,false);

        view.findViewById(R.id.btn_in_fragment).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
//                FragmentDemo fragmentDemo=(FragmentDemo) getActivity();
//                fragmentDemo.modify();
                if(onBtnClickListener!=null){
                    onBtnClickListener.onBtnClick();
                }
            }
        });
        return view;
    }

    public void modify(){
        TextView textView=(TextView) getView().findViewById(R.id.tv_in_fragment);
        textView.setText("已经修改fragment里面的UI元素的值");
    }
}

FragmentIndex.java

<?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/btn_addd"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="增加" />

    <Button
        android:id="@+id/btn_deletee"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="减少" />

    <FrameLayout
        android:id="@+id/frame_layout"
        android:layout_width="match_parent"
        android:layout_height="200dp"></FrameLayout>

    <Button
        android:id="@+id/btn_modify"
        android:text="修改fragment的界面"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" />

    <TextView
        android:id="@+id/tv_in_activity"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="哈哈哈"/>
</LinearLayout>

fragment_demo.xml

package com.ouc.wkp.ui1;

import android.os.Bundle;
import android.support.annotation.Nullable;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentManager;
import android.support.v4.app.FragmentTransaction;
import android.view.View;
import android.widget.TextView;

/**
 * Created by wkp on 2016/8/25.
 */
public class FragmentDemo extends FragmentActivity{

    FragmentIndex fragmentIndex;

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

        fragmentIndex=new FragmentIndex();
        //接口回调
        fragmentIndex.setOnBtnClickListener(new FragmentIndex.OnBtnClickListener(){

            @Override
            public void onBtnClick() {
                TextView textView=(TextView)findViewById(R.id.tv_in_activity);
                textView.setText("修改activity中的textView(通过方法回调)");
            }
        });

        findViewById(R.id.btn_addd).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                FragmentManager fm=getSupportFragmentManager();
                FragmentTransaction ft=fm.beginTransaction();

                ft.replace(R.id.frame_layout,fragmentIndex);
                ft.commit();
            }
        });

        findViewById(R.id.btn_deletee).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                FragmentManager fm=getSupportFragmentManager();
                FragmentTransaction ft=fm.beginTransaction();

                ft.remove(fragmentIndex);
                ft.commit();
            }
        });

        findViewById(R.id.btn_modify).setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                //从Activity修改Fragment的值
                fragmentIndex.modify();;
            }
        });
    }

    public void modify(){
        TextView textView=(TextView) findViewById(R.id.tv_in_activity);
        textView.setText("修改activity中的textView");
    }
}

FragmentDemo.java

时间: 2024-12-30 04:16:51

Android入门——UI(8)——Fragment(2)的相关文章

Android入门——UI(9)

SwipRefreshLayout下拉刷新控件 <?xml version="1.0" encoding="utf-8"?> <android.support.v4.widget.SwipeRefreshLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical" android

android入门——UI(3)

Spinner控件   ListView控件 一.Spinner控件 点击Spinner会弹出一个包含所有可选值的dropdown菜单,从该菜单中可以为Spinner选择一个新值. 有两种指定数据源的方式 (1)通过数组资源文件指定 <?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="grade"> <item>

android入门——UI(1)

一.使用TextView ImageView Button EditView做出登录页面 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" an

Android入门——构建UI布局的多种方式

引言 作为Android App,给人第一印象的就是用户界面(UI),简洁友好的UI,自然会给用户优秀的体验,自然很容易就得到用户的认可和赞许,这样App才变得真正的有价值.所以作为开发App的第一步,UI尤为重要,构建UI有很多种方式:xml静态布局.java动态代码.HTML构建(借助WebView)和第三方开源框架等. 一.构成UI的基本元素--View和ViewGroup概述 在Android中绝大部分的UI组件都是存放在android.widget包及其子包.android.view包

前端之Android入门(2) – 程序目录及UI简介

一,Android程序的目录结构 打开我们上次创建的HelloWorld项目,会看到一个目录结构,这就是Android的程序目录,这些目录的大致作用如下: src:源码的组织管理目录. gen:自动生成的目录,会生成一些重要的文件,如R.java,该目录一般不需要我们编写. assets:该目录文件不会被编译成二进制编码,多用于放音视频,文本等原始格式文件. bin:用于存放编译后的Java文件及apk文件. libs:存放Android的源码包或需要引入的源码包. res:程序资源的所在目录,

Android入门教程之我见

真正的从安卓入门学习到实际工作也差不多一年时间了,也做了几个项目.在这期间经历了一开始学习Android的基本知识后仍旧无从下手,不知道如何开始开发一个app,到现在也开始学会注意Android架构的设计优化,学会开始阅读源码,渐渐地向Android更高级的知识进阶. 首先要感谢一下Google把Android开源了,加上Android开发人员十分活跃且富有分享精神,这才让网上关于Android的资料十分丰富,往往遇到一个问题都能从网上找到答案,这对于初学者特别是靠自学没有人带的情况下提供很多的

小猪的Android入门之路 Day 7 part 1

小猪的Android入门之路 Day 7 part 1 Android的数据存储与访问之--文件                                            ----转载请注明出处:coder-pig 本节引言: 在开始新的一天之前,先整合下前面6天我们所学的 Day 1: android的背景知识,平台架构与相关特性,还有开发环境的搭建 Day 2: 四大组件的初步了解,app的生命周期,app工程目录的理解,开发简单的电话拨号器,             六大布局,

【Android发展】它Fragment发展1

一直知道Fragment非常强大.可是一直都没有去学习,如今有些空暇的时间,所以就去学习了一下Fragment的简单入门.我也会把自己的学习过程写下来,假设有什么不足的地方希望大牛指正,共同进步. 一.Fragment简单介绍 1.Fragment作为Activity界面的一部分组成出现: 2.能够在一个Activity中同一时候出现多个Fragment,而且,一个Fragment亦可在多个Activity中使用: 3.在Activity执行过程中,能够加入.移除或者替换Fragment(add

小猪的Android入门之路——目录(持续更新)

小猪的Android入门之路专栏目录                     --转载请注明:coder-pig 欢迎转载,请乎用于商业用途! 写本专栏的一些感慨:      小猪的Android入门之路写了已经有一段时间了,记录的是小猪在Android学习路上的一些点点 滴滴,记得第一篇是2014.7.31号写的,当时正好是放暑假,脑子一热就决定写一个这样的系列了, 自学之路并不容易,你想想突然要你去接触一门你完全不会的东西,有多难,记得刚学Android就 加了几个Android开发群,在群