Fragment解析创建和传参,动态添加fragment

一下是个人的一些总结。

为fragment创建XML

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <ListView
            android:id="@+id/yulelist"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"/>
</LinearLayout>

/然后创建一个类,这个类是继承Fragment

public class Yule extends ListFragment {
         @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        return inflater.inflate(R.layout.yule,container,false);
    }
//主要就是加载我们刚刚写好的fragment.xml布局文件并返回

然后打开或新建activity_main.xml作为主Activity的布局文件,在里面加入两个Fragment的引用,使用android:name前缀来引用具体的Fragment:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:baselineAligned="false" > 

    <fragment
        android:id="@+id/fragment1"
        android:name="com.example.fragmentdemo.Fragment1"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1" /> 

    <fragment
        android:id="@+id/fragment2"
        android:name="com.example.fragmentdemo.Fragment2"
        android:layout_width="0dip"
        android:layout_height="match_parent"
        android:layout_weight="1" /> 

</LinearLayout>  

动态添加fragment将activity_main.xml中的两个fragmnet控件删除,只留下linearlayout布局。为这个布局设置一个id

//将MainActivity中的代码修改如下

public class MainActivity extends Activity { 

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        //获取屏幕尺寸
        Display display = getWindowManager().getDefaultDisplay();
        if (display.getWidth() > display.getHeight()) {
            Fragment1 fragment1 = new Fragment1();
            getFragmentManager().beginTransaction().replace(R.id.main_layout, fragment1).commit();
        } else {
            Fragment2 fragment2 = new Fragment2();
            getFragmentManager().beginTransaction().replace(R.id.main_layout, fragment2).commit();
        }
    }
}

首先,我们要获取屏幕的宽度和高度,然后进行判断,如果屏幕宽度大于高度就添加fragment1,如果高度大于宽度就添加fragment2。动态添加Fragment主要分为4步:

1.获取到FragmentManager,在Activity中可以直接通过getFragmentManager得到。

2.开启一个事务,通过调用beginTransaction方法开启。

3.向容器内加入Fragment,一般使用replace方法实现,需要传入容器的id和Fragment的实例。

4.提交事务,调用commit方法提交。

//fragment的生命周期,与activity不同的

onAttach方法:Fragment和Activity建立关联的时候调用。

onCreateView方法:为Fragment加载布局时调用。

onActivityCreated方法:当Activity中的onCreate方法执行完后调用。

onDestroyView方法:Fragment中的布局被移除时调用。

onDetach方法:Fragment和Activity解除关联的时候调用。

Fragment之间通信:使用了接口传参和getActivity两种方式

fragment1.xml布局:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent">
    <ListView
            android:id="@+id/onelist"
            android:layout_width="match_parent"
            android:layout_height="wrap_content">
    </ListView>
</LinearLayout>

fragment2.xml布局:

<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="@android:color/holo_green_dark">
    <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="555555555555555"
            android:layout_weight="3"
            android:id="@+id/one"/>
</LinearLayout>

fragment1:

public class Fragment1 extends Fragment implements AdapterView.OnItemClickListener{
    private ListView listView;
    private String str[]={"sssss","ddddd","ffffff","gggggg","hhhhhh","jj","mmmm"};
//传参接口
    private OnHeadlineSelectedListener mOnHeadlineSelectedListener;

    @Override
    public void onItemClick(AdapterView<?> adapterView, View view, int i, long l) {
        mybaseAdapter = (MybaseAdapter) adapterView.getAdapter();
        String item=mybaseAdapter.getItem(i).toString();
     //使用接口传参
       // mOnHeadlineSelectedListener.onSelectItemClick(item);
     //使用getActivity()获取fragment2的TextView进行传参
        TextView textView=(TextView)getActivity().findViewById(R.id.one);
        Log.e("getActivity()",getActivity()+"");
        textView.setText(item);
    }
//定义传参的接口
    public interface OnHeadlineSelectedListener{
        public void onSelectItemClick(String message);
    }
//和activity建立关系
    @Override
    public void onAttach(Activity activity) {
        super.onAttach(activity);
        mOnHeadlineSelectedListener=(OnHeadlineSelectedListener)activity;
    }
//为这个fragment加载布局
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
       View view= inflater.inflate(R.layout.fragment1,container,false);
       listView=(ListView)view.findViewById(R.id.onelist);
        return view;
    }
//当Activity加载完成后将数据用adapter存入
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
       ArrayAdapter arrayAdapter=new ArrayAdapter(getActivity(),android.R.layout.simple_list_item_1,str);
    }

fragment2:

public class Fragment2 extends android.support.v4.app.Fragment{
    private TextView mtext;
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.fragment2,container,false);

        mtext= (TextView) view.findViewById(R.id.one);
        mtext.setBackgroundColor(getResources().getColor(android.R.color.holo_blue_bright));
       // mtext.setText("内容");
        return  view;
    }
//写个方法为text放入参数
    public void setMtext(String message){
        mtext.setText(message);
    }
}

MainActivity:

public class MyActivity extends FragmentActivity implements Fragment1.OnHeadlineSelectedListener{
   Fragment2 fragment2;
    Fragment1 fragment1;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);
        fragment1=new Fragment1();
        fragment2=new Fragment2();
        android.support.v4.app.FragmentTransaction fragmentTransaction=getSupportFragmentManager().beginTransaction();
        fragmentTransaction.add(R.id.onefragment,fragment1);
        fragmentTransaction.add(R.id.twofragment,fragment2);
        fragmentTransaction.commit();
    }
    @Override
    public void onSelectItemClick(String message) {
        //(( Fragment2)fragment2).setMtext(message);
        fragment2.setMtext(message);
    }
}
时间: 2024-10-08 14:50:05

Fragment解析创建和传参,动态添加fragment的相关文章

动态添加Fragment的报错信息

05-29 21:23:28.406: E/AndroidRuntime(23636): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.***.Main}: java.lang.IllegalStateException: The specified child already has a parent. You must call removeView() on the child's parent

动态添加Fragment碎片

1.      创建待添加的碎片实例. 2.      获取到FragmentManager,在活动中可以直接调用getFragmentManager()方法得到. 3.      开启一个事务,通过调用beginTransaction()方法开启. 4.      向容器内加入碎片,一般使用replace()方法实现,需要传入容器的id和待添加的碎片实例 5.      提交事务,调用commit()方法来完成 package com.jia.fragmenttest; import andr

函数的第二节课,动态传参,动态关键字参数,作用域,关键字global和nonlocal

今日内容总结: 一.函数参数--动态传参 动态参数必须是在位置参数后面,比如:def chi(a,b,*food): print("我要吃",a,b,food)chi("大米饭","小米饭","黄瓜","西红柿") 默认值参数必须是在最后位置,比如:def chi(a,b,*food,c="馒头"): print(a,b,food,c)chi("香蕉", "

Android动态添加Fragment

Android动态添加Fragment 效果图如下: 项目结构图如下: Fragment1: package com.demo.dongtaifragment; import android.app.Fragment; import android.os.Bundle; import android.support.annotation.NonNull; import android.support.annotation.Nullable; import android.view.LayoutI

Postman接口测试动态传参——动态获取token值

上午刚学会jmeter动态传参,下午研究了下postman也知道怎么动态获取token了. 主要就是第1行和第2行代码,第3行加上是希望Test Results有个返回值,如果不加第3行运行成功后也看不到个反馈. 第2行打码的位置就是开发自定义的responseBody里返回的token的定位,类似于一级级索引. 例如Body里直接返回的就是token:x***9.eyJ***,那么第2行直接就是postman.setGlobalVariable("token",jsonData.to

Activity动态添加Fragment时遇到的问题

1.Activity动态调用代码 TitleFragement a = new TitleFragement();        getFragmentManager().beginTransaction().add(R.id.tt, a)            .commit(); 异常信息: The specified child already has a parent. 经分析: 对应Fragment代码: View view = inflater.inflate(R.layout.ti

Java学习小结(1)-数组的创建与传参

(一)数组的创建 数组的创建包括两部分:数组的申明与分配内存空间. int score[]=null; //申明一维数组 score=new int[3]; //分配长度为3的空间 数组的申明还有另外一种方式: int[] score=null; //把中括号写在数组名前面 通常,在写代码时,为了方便,我们将两行合并为一行: int score[]=new int score[3]; //将数组申明与分配内存写在一行 (二)传递参数 由于初学java,这里只讨论值传递,不考虑地址传递.主要有3点

Postman 串行传参和动态传参详解

Postman是一款功能强大的网页调试与发送网页HTTP请求的Chrome插件 用Postman做接口测试的时候,要把多条用例一起执行,就需要把用例连接起来,一次性执行 目录 串行传参 动态传参 使用的接口是微信公众号开发文档里面的接口,详细请看开发文档:https://mp.weixin.qq.com/wiki?t=resource/res_main&id=mp1445241432 首先需要获取到接口测试号,开始开发>接口测试号申请>获得appID和appsecret,位置为:htt

Android Fragment 解析和使用

Android Fragment的生命周期和Activity类似,实际可能会涉及到数据传递,onSaveInstanceState的状态保存,FragmentManager的管理和Transaction,切换的Animation. 我们首先简单的介绍一下Fragment的生命周期. 大致上,从名字就可以判断出每个生命周期是干嘛的. AppCompatActivity就是FragmentActivity的子类,如果想使用Fragment,是要继承FragmentActivity,因为考虑到兼容的问