• 两个fragment传值

    方式一

    • 布局文件代码:

      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="horizontal"
      tools:context=".MainActivity" > <!-- 静态 必须要写ID--> <fragment
      android:id="@+id/fragment1"
      android:name="com.qf.day14_fragment_4.fragment.MyFragment1"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1" /> <View
      android:layout_width="1dp"
      android:layout_height="match_parent"
      android:background="#0f0" />
      <!-- 动态 --> <LinearLayout
      android:id="@+id/ll_fragment_id"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1"
      android:orientation="horizontal" /> </LinearLayout>
    • 布局文件逻辑代码:

      package com.qf.day14_fragment_4;
      
      import com.qf.day14_fragment_4.fragment.MyFragment2;
      
      import android.os.Bundle;
      import android.app.Activity;
      import android.app.FragmentManager;
      import android.app.FragmentTransaction;
      import android.view.Menu; public class MainActivity extends Activity { @Override
      protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main); //管理者对象
      FragmentManager manager = getFragmentManager();
      FragmentTransaction transaction = manager.beginTransaction(); MyFragment2 myFragment2 = new MyFragment2(); transaction.replace(R.id.ll_fragment_id,myFragment2); transaction.commit();
      } @Override
      public boolean onCreateOptionsMenu(Menu menu) {
      getMenuInflater().inflate(R.menu.main, menu);
      return true;
      } }
    • 其中一个fragment逻辑代码:

      package com.qf.day14_fragment_4.fragment;
      
      import android.app.Fragment;
      import android.app.FragmentManager;
      import android.app.FragmentTransaction;
      import android.os.Bundle;
      import android.view.LayoutInflater;
      import android.view.View;
      import android.view.View.OnClickListener;
      import android.view.ViewGroup;
      import android.widget.Button; import com.qf.day14_fragment_4.R; public class MyFragment1 extends Fragment{ private Button btn; @Override
      public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {
      // TODO Auto-generated method stub
      View v = inflater.inflate(R.layout.fragment1_layout, container, false); btn = (Button) v.findViewById(R.id.btn);
      //点击按钮传值
      btn.setOnClickListener(new OnClickListener() { @Override
      public void onClick(View v) {
      // TODO Auto-generated method stub //管理者对象
      FragmentManager manager = getFragmentManager();
      FragmentTransaction transaction = manager.beginTransaction(); MyFragment2 myFragment2 = new MyFragment2(); Bundle bundle = new Bundle(); bundle.putString("msg", "左边Fragment向右边Fragment传值"); myFragment2.setArguments(bundle); transaction.replace(R.id.ll_fragment_id, myFragment2); transaction.commit();
      }
      });
      return v;
      }
      }

    方式二 前提:必须两个静态fragment

    • 界面xml代码:

      <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      xmlns:tools="http://schemas.android.com/tools"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:orientation="horizontal"
      tools:context=".MainActivity" > <fragment
      android:id="@+id/leftfragment"
      android:name="com.qf.day14_fragment_demo5.fragment.Fragment1"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1" /> <View
      android:layout_width="1dp"
      android:layout_height="match_parent"
      android:background="#00f" /> <fragment
      android:id="@+id/rightfragment"
      android:name="com.qf.day14_fragment_demo5.fragment.Fragment2"
      android:layout_width="0dp"
      android:layout_height="match_parent"
      android:layout_weight="1" /> </LinearLayout>
    • 其中核心fragment代码

      package com.qf.day14_fragment_demo5.fragment;
      
      import android.app.Fragment;
      import android.os.Bundle;
      import android.view.LayoutInflater;
      import android.view.View;
      import android.view.View.OnClickListener;
      import android.view.ViewGroup;
      import android.widget.Button;
      import android.widget.EditText;
      import android.widget.TextView; import com.qf.day14_fragment_demo5.R; public class Fragment1 extends Fragment{ private EditText etContent;
      private Button btnSend; @Override
      public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {
      // TODO Auto-generated method stub View view = inflater.inflate(R.layout.layout01, container, false);
      etContent = (EditText) view.findViewById(R.id.et_content);
      btnSend = (Button) view.findViewById(R.id.btn_send); btnSend.setOnClickListener(new OnClickListener() { @Override
      public void onClick(View v) {
      // TODO Auto-generated method stub String msg = etContent.getText().toString().trim(); //通过Fragment的id 获取Fragment2的对象
      // Fragment2 fragment2 = (Fragment2) getFragmentManager().findFragmentById(R.id.rightfragment);
      // fragment2.setTextValues(msg); //TextView tv = (TextView) getFragmentManager().findFragmentById(R.id.rightfragment).getView().findViewById(R.id.tv_show);
      TextView tv = (TextView) getActivity().findViewById(R.id.tv_show);
      tv.setText(msg); } }); return view;
      } }
  • fragment给界面传值(Activity) 接口回调

    • 界面代码

      package com.qf.day14_fragment_demo3;
      
      import com.qf.day14_fragment_demo3.callback1.CallBackValue;
      
      import android.os.Bundle;
      import android.annotation.SuppressLint;
      import android.app.Activity;
      import android.app.FragmentManager;
      import android.app.FragmentTransaction;
      import android.view.Menu;
      import android.widget.TextView; public class MainActivity extends Activity implements CallBackValue{ private TextView tv; @SuppressLint("NewApi")
      @Override
      protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main); tv = (TextView) findViewById(R.id.tv); FragmentManager manager = getFragmentManager();
      FragmentTransaction transaction = manager.beginTransaction();
      transaction.replace(R.id.ll_fragment_id, new MyFragment());
      transaction.commit();
      } //回调接口的方法
      @Override
      public void sendMessage(String msg) {
      // TODO Auto-generated method stub
      tv.setText(msg);
      } }
    • 接口代码

      package com.qf.day14_fragment_demo3.callback1;
      
      public interface CallBackValue {
      
          public void sendMessage(String msg);
      
      }
    • fragment代码

      package com.qf.day14_fragment_demo3;
      
      import com.qf.day14_fragment_demo3.callback1.CallBackValue;
      
      import android.annotation.SuppressLint;
      import android.app.Activity;
      import android.app.Fragment;
      import android.os.Bundle;
      import android.view.LayoutInflater;
      import android.view.View;
      import android.view.View.OnClickListener;
      import android.view.ViewGroup;
      import android.widget.Button;
      import android.widget.EditText; @SuppressLint("NewApi")
      public class MyFragment extends Fragment{ CallBackValue callBackValue; private EditText et;
      private Button btnFTA; /**
      * 与Activity第一次链接是调用
      */
      @Override
      public void onAttach(Activity activity) {
      // TODO Auto-generated method stub
      super.onAttach(activity); //Fragment归属的Activity是getActivity
      callBackValue = (CallBackValue) getActivity();
      } @Override
      public View onCreateView(LayoutInflater inflater, ViewGroup container,
      Bundle savedInstanceState) {
      // TODO Auto-generated method stub
      View v = inflater.inflate(R.layout.fragment_layout, container,false);
      et = (EditText) v.findViewById(R.id.et);
      btnFTA = (Button) v.findViewById(R.id.btn_FTA); btnFTA.setOnClickListener(new OnClickListener() { @Override
      public void onClick(View v) {
      // TODO Auto-generated method stub
      //将值传给Activity
      String msg = et.getText().toString().trim(); callBackValue.sendMessage(msg);
      }
      }); return v;
      } }
  • fragment 获取 界面数据(Activity)

    • 可以fragment中直接getActivity 或者getContext 获取其对象
    • 或者动态创建时用setAgunment 在fragment中getAgument

14 fragment传值的更多相关文章

  1. 14 fragment 创建

    静态展示 注意 静态的开始进入界面的生命周期和动态的不同 详情:14 fragment注意点 步骤一:创建一个类继承 Fragment 代码类型一: package com.fmy.demo1; im ...

  2. 14 Fragment 碎片总结

    Fragment 碎片 一, Fragment是什么? Android 3.0以后出现的 Api11 以上 Activity的组成部分 Fragment(小的Activity) Fragment可以显 ...

  3. Android FragmentActivity 给Fragment传值

    1.Fragment给Activity传值 定义一个在fragment 中 定义interface 监听器,让activity实现,并将activity的引用传递给fragment.即setListe ...

  4. 【android】activity、fragment传值例子

    1:Activity篇 1.1向Activity传值 关键点在于putExtra.如果传递类的话,记得类实现Serializable接口 Intent intent = new Intent(Firs ...

  5. Activity向Fragment传值

    发送数据 //Activity传值,通过Bundle Bundle bundle = new Bundle(); bundle.putString("MainActivity", ...

  6. 【Android】安卓开发之activity如何传值到fragment,activity与fragment传值

    作者:程序员小冰,GitHub主页:https://github.com/QQ986945193 新浪微博:http://weibo.com/mcxiaobing 大家知道,我们利用activity使 ...

  7. 两个activity或者activity和fragment传值

    使用Fragment的时候可能需要在两个Fragment之间进行参数的传递,开始想着可以使用SharedPreferences进行处理,想想这些简单的参数没有必要使用这么麻烦的方式去实现,翻了一下Fr ...

  8. 14 Fragment的V4包的使用

    activity_main.xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android ...

  9. 14 Fragment 注意点

    API 过时问题 API 23过时 public void onAttach(Activity activity)替换为public void onAttach(Context context) 注意 ...

随机推荐

  1. [HNOI2013]比赛

    题目描述 沫沫非常喜欢看足球赛,但因为沉迷于射箭游戏,错过了最近的一次足球联赛.此次联 赛共N支球队参加,比赛规则如下: (1) 每两支球队之间踢一场比赛. (2) 若平局,两支球队各得1分. (3) ...

  2. 51 nod 1766 树上的最远点对(线段树+lca)

    1766 树上的最远点对 基准时间限制:3 秒 空间限制:524288 KB 分值: 80 难度:5级算法题   n个点被n-1条边连接成了一颗树,给出a~b和c~d两个区间,表示点的标号请你求出两个 ...

  3. hdu 5489(LIS最长上升子序列)

    题意:一个含有n个元素的数组,删去k个连续数后,最长上升子序列        /*思路参考GoZy 思路: 4 2 3 [5 7 8] 9 11 ,括号表示要删掉的数, 所以  最长上升子序列  = ...

  4. 【codevs 1911 孤岛营救问题】

    ·为了分析方便,可以先做一个题目简化.去掉"钥匙"这个条件,那么就是一个BFS或者SPFA--现在加上该条件.如本题只给出最多两种钥匙,当然你可以继续坚持BFS等方式,时间不会太差 ...

  5. bzoj4447[Scoi2015]小凸解密码

    4447: [Scoi2015]小凸解密码 Time Limit: 20 Sec  Memory Limit: 128 MBSubmit: 150  Solved: 58[Submit][Status ...

  6. 【UOJ UNR #1】争夺圣杯

    来自FallDream的博客,未经允许,请勿转载,谢谢. 传送门 考虑直接对每个数字,统计它会产生的贡献. 单调栈求出每个数字左边第一个大等于他的数,右边第一个大于他的 (注意只能有一边取等) 假设左 ...

  7. bzoj 3631: [JLOI2014]松鼠的新家

    Description 松鼠的新家是一棵树,前几天刚刚装修了新家,新家有n个房间,并且有n-1根树枝连接,每个房间都可以相互到达,且俩个房间之间的路线都是唯一的.天哪,他居然真的住在"树&q ...

  8. [bzoj4823][Cqoi2017]老C的方块

    来自FallDream的博客,未经允许,请勿转载,谢谢. 挺有意思的一道题.... 看完题面比较明确是最小割,考虑怎么建图 想了比较久 突破口应该是题目中那张奇怪的图 观察这个奇怪的图和方块,很容易发 ...

  9. bzoj1010[HNOI2008]玩具装箱toy 斜率优化dp

    1010: [HNOI2008]玩具装箱toy Time Limit: 1 Sec  Memory Limit: 162 MBSubmit: 11893  Solved: 5061[Submit][S ...

  10. jvm 指令集代码

    指令码 助记符 说明 0x00 nop 什么都不做 0x01 aconst_null 将null推送至栈顶 0x02 iconst_m1 将int型-1推送至栈顶 0x03 iconst_0 将int ...