当前位置: 首页 > news >正文

特价网站建设价格低国际物流公司网站

特价网站建设价格低,国际物流公司网站,建服务网站需要多少钱,o2o系统软件本文主要内容 如何管理Fragment回退栈 Fragment如何与Activity交互 Fragment与Activity交互的最佳实践 没有视图的Fragment的用处 使用Fragment创建对话框 如何与ActionBar#xff0c;MenuItem集成等 管理Fragment回退栈 类似与Android系统为Activity维护一个任务栈#…本文主要内容 如何管理Fragment回退栈 Fragment如何与Activity交互 Fragment与Activity交互的最佳实践 没有视图的Fragment的用处 使用Fragment创建对话框 如何与ActionBarMenuItem集成等 管理Fragment回退栈 类似与Android系统为Activity维护一个任务栈我们也可以通过Activity维护一个回退栈来保存每次Fragment事务发生的变化。如果你将Fragment任务添加到回退栈当用户点击后退按钮时将看到上一次的保存的Fragment。一旦Fragment完全从后退栈中弹出用户再次点击后退键则退出当前Activity。 看这样一个效果图 如何添加一个Fragment事务到回退栈 FragmentTransaction.addToBackStack(String) 下面讲解代码很明显一共是3个Fragment和一个Activity. 先看Activity的布局文件 RelativeLayout xmlns:androidhttp://schemas.android.com/apk/res/android xmlns:toolshttp://schemas.android.com/tools android:layout_widthmatch_parent android:layout_heightmatch_parent FrameLayout android:idid/id_content android:layout_widthfill_parent android:layout_heightfill_parent /FrameLayout /RelativeLayout 不同的Fragment就在这个FrameLayout中显示。 MainActivity.java package com.zhy.zhy_fragments; import android.app.Activity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import android.view.Window; public class MainActivity extends Activity { Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main); FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.add(R.id.id_content, new FragmentOne(),ONE); tx.commit(); } } 很简单直接将FragmentOne添加到布局文件中的FrameLayout中注意这里并没有调用FragmentTransaction.addToBackStack(String)因为我不喜欢在当前显示时点击Back键出现白板。而是正确的相应Back键即退出我们的Activity. 下面是FragmentOne package com.zhy.zhy_fragments; 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; public class FragmentOne extends Fragment implements OnClickListener { private Button mBtn; Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view inflater.inflate(R.layout.fragment_one, container, false); mBtn (Button) view.findViewById(R.id.id_fragment_one_btn); mBtn.setOnClickListener(this); return view; } Override public void onClick(View v) { FragmentTwo fTwo new FragmentTwo(); FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.replace(R.id.id_content, fTwo, TWO); tx.addToBackStack(null); tx.commit(); } } 我们在点击FragmentOne中的按钮时使用了replace方法如果你看了前一篇博客一定记得replace是remove和add的合体并且如果不添加事务到回退栈前一个Fragment实例会被销毁。这里很明显我们调用tx.addToBackStack(null);将当前的事务添加到了回退栈所以FragmentOne实例不会被销毁但是视图层次依然会被销毁即会调用onDestoryView和onCreateView证据就是仔细看上面的效果图我们在跳转前在文本框输入的内容在用户Back得到第一个界面的时候不见了。 接下来FragmentTwo package com.zhy.zhy_fragments; 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; public class FragmentTwo extends Fragment implements OnClickListener { private Button mBtn ; Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view inflater.inflate(R.layout.fragment_two, container, false); mBtn (Button) view.findViewById(R.id.id_fragment_two_btn); mBtn.setOnClickListener(this); return view ; } Override public void onClick(View v) { FragmentThree fThree new FragmentThree(); FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.hide(this); tx.add(R.id.id_content , fThree, THREE); // tx.replace(R.id.id_content, fThree, THREE); tx.addToBackStack(null); tx.commit(); } } 这里点击时我们没有使用replace而是先隐藏了当前的Fragment然后添加了FragmentThree的实例最后将事务添加到回退栈。这样做的目的是为了给大家提供一种方案如果不希望视图重绘该怎么做请再次仔细看效果图我们在FragmentTwo的EditText填写的内容用户Back回来时数据还在~~~ 最后FragmentThree就是简单的Toast了 package com.zhy.zhy_fragments; 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.Toast; public class FragmentThree extends Fragment implements OnClickListener { private Button mBtn; Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view inflater.inflate(R.layout.fragment_three, container, false); mBtn (Button) view.findViewById(R.id.id_fragment_three_btn); mBtn.setOnClickListener(this); return view; } Override public void onClick(View v) { Toast.makeText(getActivity(), i am a btn in Fragment three, Toast.LENGTH_SHORT).show(); } } 好了经过上面的介绍应该已经知道Fragment回退栈是怎么一回事了以及hidereplace等各自的应用的场景。 这里极其注意一点上面的整体代码不具有任何参考价值纯粹为了显示回退栈在后面讲解了Fragment与Activity通信以后会重构上面的代码 Fragment与Activity通信 因为所有的Fragment都是依附于Activity的所以通信起来并不复杂大概归纳为 a、如果你Activity中包含自己管理的Fragment的引用可以通过引用直接访问所有的Fragment的public方法 b、如果Activity中未保存任何Fragment的引用那么没关系每个Fragment都有一个唯一的TAG或者ID,可以通过getFragmentManager.findFragmentByTag()或者findFragmentById()获得任何Fragment实例然后进行操作。 c、在Fragment中可以通过getActivity得到当前绑定的Activity的实例然后进行操作。 注如果在Fragment中需要Context可以通过调用getActivity(),如果该Context需要在Activity被销毁后还存在则使用getActivity().getApplicationContext()。 Fragment与Activity通信的最佳实践 因为要考虑Fragment的重复使用所以必须降低Fragment与Activity的耦合而且Fragment更不应该直接操作别的Fragment毕竟Fragment操作应该由它的管理者Activity来决定。 下面我通过两种方式的代码分别重构FragmentOne和FragmentTwo的点击事件以及Activity对点击事件的响应 首先看FragmentOne package com.zhy.zhy_fragments; 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; public class FragmentOne extends Fragment implements OnClickListener { private Button mBtn; /** * 设置按钮点击的回调 * author zhy * */ public interface FOneBtnClickListener { void onFOneBtnClick(); } Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view inflater.inflate(R.layout.fragment_one, container, false); mBtn (Button) view.findViewById(R.id.id_fragment_one_btn); mBtn.setOnClickListener(this); return view; } /** * 交给宿主Activity处理如果它希望处理 */ Override public void onClick(View v) { if (getActivity() instanceof FOneBtnClickListener) { ((FOneBtnClickListener) getActivity()).onFOneBtnClick(); } } } 可以看到现在的FragmentOne不和任何Activity耦合任何Activity都可以使用并且我们声明了一个接口来回调其点击事件想要管理其点击事件的Activity实现此接口就即可。可以看到我们在onClick中首先判断了当前绑定的Activity是否实现了该接口如果实现了则调用。 再看FragmentTwo package com.zhy.zhy_fragments; 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; public class FragmentTwo extends Fragment implements OnClickListener { private Button mBtn ; private FTwoBtnClickListener fTwoBtnClickListener ; public interface FTwoBtnClickListener { void onFTwoBtnClick(); } //设置回调接口 public void setfTwoBtnClickListener(FTwoBtnClickListener fTwoBtnClickListener) { this.fTwoBtnClickListener fTwoBtnClickListener; } Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view inflater.inflate(R.layout.fragment_two, container, false); mBtn (Button) view.findViewById(R.id.id_fragment_two_btn); mBtn.setOnClickListener(this); return view ; } Override public void onClick(View v) { if(fTwoBtnClickListener ! null) { fTwoBtnClickListener.onFTwoBtnClick(); } } } 与FragmentOne极其类似但是我们提供了setListener这样的方法意味着Activity不仅需要实现该接口还必须显示调用mFTwo.setfTwoBtnClickListener(this)。 最后看Activity : package com.zhy.zhy_fragments; import android.app.Activity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import android.view.Window; import com.zhy.zhy_fragments.FragmentOne.FOneBtnClickListener; import com.zhy.zhy_fragments.FragmentTwo.FTwoBtnClickListener; public class MainActivity extends Activity implements FOneBtnClickListener, FTwoBtnClickListener { private FragmentOne mFOne; private FragmentTwo mFTwo; private FragmentThree mFThree; Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main); mFOne new FragmentOne(); FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.add(R.id.id_content, mFOne, ONE); tx.commit(); } /** * FragmentOne 按钮点击时的回调 */ Override public void onFOneBtnClick() { if (mFTwo null) { mFTwo new FragmentTwo(); mFTwo.setfTwoBtnClickListener(this); } FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.replace(R.id.id_content, mFTwo, TWO); tx.addToBackStack(null); tx.commit(); } /** * FragmentTwo 按钮点击时的回调 */ Override public void onFTwoBtnClick() { if (mFThree null) { mFThree new FragmentThree(); } FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.hide(mFTwo); tx.add(R.id.id_content, mFThree, THREE); // tx.replace(R.id.id_content, fThree, THREE); tx.addToBackStack(null); tx.commit(); } } 代码重构结束与开始的效果一模一样。上面两种通信方式都是值得推荐的随便选择一种自己喜欢的。这里再提一下虽然Fragment和Activity可以通过getActivity与findFragmentByTag或者findFragmentById进行任何操作甚至在Fragment里面操作另外的Fragment但是没有特殊理由是绝对不提倡的。Activity担任的是Fragment间类似总线一样的角色应当由它决定Fragment如何操作。另外虽然Fragment不能响应Intent打开但是Activity可以Activity可以接收Intent然后根据参数判断显示哪个Fragment。 如何处理运行时配置发生变化 我们简单改一下代码只有在savedInstanceStatenull时才进行创建Fragment实例 package com.zhy.zhy_fragments; import android.app.Activity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import android.util.Log; import android.view.Window; public class MainActivity extends Activity { private static final String TAG FragmentOne; private FragmentOne mFOne; Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main); Log.e(TAG, savedInstanceState); if(savedInstanceState null) { mFOne new FragmentOne(); FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.add(R.id.id_content, mFOne, ONE); tx.commit(); } } } 现在无论进行多次旋转都只会有一个Fragment实例在Activity中。 现在还存在一个问题就是重新绘制时Fragment发生重建原本的数据如何保持 其实和Activity类似Fragment也有onSaveInstanceState的方法在此方法中进行保存数据然后在onCreate或者onCreateView或者onActivityCreated进行恢复都可以。 详情请见: Android 屏幕旋转 处理 AsyncTask 和 ProgressDialog 的最佳方案 - Hongyang - 博客频道 - CSDN.NET Fragmeny与ActionBar和MenuItem集成 Fragment可以添加自己的MenuItem到Activity的ActionBar或者可选菜单中。 a、在Fragment的onCreate中调用 setHasOptionsMenu(true); b、然后在Fragment子类中实现onCreateOptionsMenu c、如果希望在Fragment中处理MenuItem的点击也可以实现 onOptionsItemSelected当然了Activity也可以直接处理该MenuItem的点击事件。 Fragment package com.zhy.zhy_fragments; import android.app.Fragment; import android.os.Bundle; import android.view.LayoutInflater; import android.view.Menu; import android.view.MenuInflater; import android.view.MenuItem; import android.view.View; import android.view.ViewGroup; import android.widget.Toast; public class FragmentOne extends Fragment { Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setHasOptionsMenu(true); } Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { View view inflater.inflate(R.layout.fragment_one, container, false); return view; } Override public void onCreateOptionsMenu(Menu menu, MenuInflater inflater) { inflater.inflate(R.menu.fragment_menu, menu); } Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.id_menu_fra_test: Toast.makeText(getActivity(), FragmentMenuItem1, Toast.LENGTH_SHORT).show(); break; } return true; } } Activity package com.zhy.zhy_fragments; import android.app.Activity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import android.util.Log; import android.view.Menu; import android.view.MenuItem; import android.view.Window; import android.widget.Toast; public class MainActivity extends Activity { private static final String TAG FragmentOne; private FragmentOne mFOne; Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); requestWindowFeature(Window.FEATURE_NO_TITLE); setContentView(R.layout.activity_main); Log.e(TAG, savedInstanceState ); if (savedInstanceState null) { mFOne new FragmentOne(); FragmentManager fm getFragmentManager(); FragmentTransaction tx fm.beginTransaction(); tx.add(R.id.id_content, mFOne, ONE); tx.commit(); } } Override public boolean onCreateOptionsMenu(Menu menu) { super.onCreateOptionsMenu(menu); getMenuInflater().inflate(R.menu.main, menu); return true; } Override public boolean onOptionsItemSelected(MenuItem item) { switch (item.getItemId()) { case R.id.action_settings: Toast.makeText(this, setting, Toast.LENGTH_SHORT).show(); return true; default: //如果希望Fragment自己处理MenuItem点击事件一定不要忘了调用super.xxx return super.onOptionsItemSelected(item); } } } 注意如果希望Fragment自己处理MenuItem点击事件一定不要忘了调用super.xxx 效果图: 没有布局的Fragment的作用 没有布局文件Fragment实际上是为了保存当Activity重启时保存大量数据准备的 请参考博客 Android 屏幕旋转 处理 AsyncTask 和 ProgressDialog 的最佳方案 - Hongyang - 博客频道 - CSDN.NET 7、使用Fragment创建对话框 这是Google推荐的方式,请参考 Android 官方推荐 : DialogFragment 创建对话框 - Hongyang - 博客频道 - CSDN.NET 更多关于Fragment,比如在项目中的最佳实践,请参考 Android Fragment 你应该知道的一切 - Hongyang - 博客频道 - CSDN.NET 完成参考链接 Android Fragment 真正的完全解析下 - Hongyang - 博客频道 - CSDN.NET
http://wiki.neutronadmin.com/news/35297/

相关文章:

  • 帝国行业网站模板中国免费网站服务器
  • 个性flash网站做网站需要哪些资质
  • 什么网站是最全的免费网络电视直播软件
  • 闸北微信网站建设古镇 网站建设
  • 免费网站模板带后台星月教你做网站回顾文档
  • 三明商城网站开发设计西安建设网站制作
  • 成都学生网站制作title 株洲网站建设
  • 网站建设 套餐沭阳住房城乡建设局网站
  • php网站开发技术与开源系统应用 实训指导书网站下载地址
  • 网站开发设计怎么找客户网站建设制作方法
  • 玉溪网站开发公司合肥360seo排名
  • 河北网站建设推广公司十大网页设计网站
  • 做网站php和asp哪个好关键词查询网址
  • 百度怎么做网站排名珠海市建设局网站
  • 中小企业的网站建设临沂网站制作策划
  • 哪个网站是vue做的如何在jsp上做网站页面代码
  • 北京建机网站阿里云网站建设 部署与发布
  • 摄影网站模板源码建设审批网站查询
  • 企业大型网站开发网站模板设计一建建设网站
  • 网站全背景做多大也是网络品牌建设和推广的基础
  • 网站建设详方案支付宝网页版登录入口
  • 做语音聊天网站要多少钱三亚网站运营托管介绍
  • 怎么查询一个网站有没有做竞价swoole wordpress
  • 描述photoshop在网站建设中的作用与特点.设计师兼职平台
  • 网站权重收录官网推广方案seo
  • 建设厅教育培训网站小程序定制开发要多少钱
  • 郑州网站建设找三牛wordpress 3.8 问题
  • wordpress网站安全性发布产品的免费平台有哪些
  • 广州seo网站多少钱基于MVC网站建设课程设计报告
  • 网站吸引人的功能石家庄大型网络公司