左一:Fragment的生命周期 左二:Activity的生命周期和Fragment的生命周期的比较
Fragment的生命周期只有开始创建和结束的地方与Activity不同;
2,生命周期的分析;
1,创建时;
onAttach()
onCreate()
onCreateView()
onActivityCreated()
2,对用户可见
onstart()
onResume()
3,进入后台模式时;
onPause()
onstop()
4,退出时;
- onPause()
- onStop()
- onDestroyView()
- onDestroy()
- onDetach()
5,横屏切换时;
先销毁再重新创建
设置Fragment不重新创建需要在主配置文件设置
android:configChanges="orientation|screenSize"
二;动态替换Fargment技术分析
点击第一个按钮的Fragment
第二个按钮的Fragment
动态替换Fragment在android UI中使用的最广泛的
1,fragment1.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" android:background="#00FF00"> <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="This is fragment #1" android:textSize="25sp" /> </LinearLayout>
2,fragment2.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" android:background="#FF0000" > <TextView android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="This is fragment #2" android:textSize="25sp" /> </LinearLayout>
3,使用java来操作fragment1.xml和fragment2.xml,并分别创建fragment1.java和fragment2.java
Fragment1 继承Fragment 重写onCreateView的方法
public class Frament1 extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { Log.d("Fragment", "onCreateView"); return inflater.inflate(R.layout.frament1, container,false); } }
分析Fragment1中的代码;
inflater.inflate(R.layout.frament1, container,false);获得布局文件,ViewGroup ,false
Fragment2中的代码;
public class Frament2 extends Fragment { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { // TODO Auto-generated method stub return inflater.inflate(R.layout.frament2, container,false); } }
4,定义底部的图片按钮的布局文件 bottom_image.xml 每张图片添加监听事件
<?xml version="1.0" encoding="utf-8"?> <TableLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:stretchColumns="0,1,2,3" > <TableRow android:layout_height="80dp" android:layout_width="match_parent" android:background="#EEF990" > <ImageView android:id="@+id/img1" android:layout_width="wrap_content" android:layout_height="match_parent" android:src="@drawable/word" android:onClick="change" /> <ImageView android:id="@+id/img2" android:layout_width="wrap_content" android:layout_height="match_parent" android:src="@drawable/line" android:onClick="change" /> <ImageView android:id="@+id/img3" android:layout_width="wrap_content" android:layout_height="match_parent" android:src="@drawable/saoma" android:onClick="change" /> <ImageView android:id="@+id/img4" android:layout_width="wrap_content" android:layout_height="match_parent" android:src="@drawable/call" android:onClick="change" /> </TableRow> </TableLayout>
5,定义Fragment3来操作bottom_image.xml
public class Fragment3 extends Fragment{ @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { //获得布局文件 View view=inflater.inflate(R.layout.bottom_image, container,false); return view; } }
6,定义布局文件(main.xml)给启动的类(MainActivity1)操作 (重点)
分析:动态切换的是中间位置,所以我们需要将中的使用布局表示;
<FrameLayout android:id="@+id/fragment2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/frament3" android:layout_below="@+id/frament1" />
main.xml 文件的内容
<?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <fragment android:name="com.example.frament.Frament1" android:id="@+id/frament1" android:layout_height="wrap_content" android:layout_width="fill_parent" /> <FrameLayout android:id="@+id/fragment2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_above="@+id/frament3" android:layout_below="@+id/frament1" /> <fragment android:id="@+id/frament3" android:name="com.example.frament.Fragment3" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_alignParentBottom="true" /> </RelativeLayout>
feagment 有一个id
name;com.example.frament.Fragment3表示的是java的类 此时的Fragment3表示一个布局文件
7,启动程序的类
package com.example.frament; import android.annotation.SuppressLint; import android.app.Activity; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.os.Bundle; import android.view.Display; import android.view.View; public class MainActivity1 extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); // // //向活动添加碎片,根据屏幕的纵向和横向显示 // //1,获取碎片管理器 // FragmentManager fragment=getFragmentManager(); // //2,碎片的显示需要使用FragmentTransaction类操作 // FragmentTransaction transacction=fragment.beginTransaction(); // //获取屏幕管理器和默认的显示 // Display display=getWindowManager().getDefaultDisplay(); // //判断横屏 // if(display.getWidth()>display.getHeight()){ // //获取java类 // Frament1 frament1 = new Frament1(); // transacction.replace(android.R.id.content, frament1); // }else{ // Frament2 frament2 = new Frament2(); // transacction.replace(android.R.id.content, frament2); // } // //使用FragmentTransaction必须要commit // transacction.commit(); } //创建监听的方法 public void change(View v){ switch (v.getId()) { case R.id.img1: //获得Fragment的管理器 FragmentManager manager=getFragmentManager(); //获得事物的操作 FragmentTransaction transaction=manager.beginTransaction(); //创建对象 Frament1 fragment = new Frament1(); //添加内容 transaction.replace(R.id.fragment2, fragment); //提交 transaction.commit(); break; case R.id.img2: FragmentManager manager2=getFragmentManager(); FragmentTransaction transaction2=manager2.beginTransaction(); Frament2 fragment2 = new Frament2(); transaction2.replace(R.id.fragment2, fragment2); transaction2.commit(); break; } } }
相关推荐
在深入探究Fragment生命周期之前,我们需要先理解Activity的基础生命周期,因为Fragment的生命周期与之紧密相关。 Activity的生命周期包括:onCreate()、onStart()、onResume()、onPause()、onStop()、onDestroy()...
### Android中的Fragment生命周期详解 在Android开发中,`Fragment`是一种可以嵌入到`Activity`中的用户界面片段,它可以被重用在多个活动中,并且能够独立管理自己的生命周期。理解`Fragment`的生命周期对于构建...
在这个过程中,我们需要正确管理Fragment的生命周期,确保在切换时合理地调用各个生命周期方法。 此外,`SwitchFragment`可能还会涉及Fragment之间的通信。Fragment可以通过`getActivity()`方法获取到所属的...
本篇将深入探讨Activity和Fragment的生命周期,并通过提供的"LifecycleLog"测试代码进行实践分析。 Activity生命周期包括创建、启动、运行、暂停、停止和销毁等阶段。这些阶段构成了一个完整的生命周期流程,开发者...
综上所述,这个"Activity和Fragment生命周期综合测试"DEMO涵盖了Android开发中的重要概念,包括Activity和Fragment的生命周期管理、ViewPager与Fragment的协同工作、以及页面滑动和选项卡切换的交互逻辑。...
在Activity和Fragment配合使用时,例如在一个Activity中添加或替换Fragment,它们的生命周期会相互影响。例如,当Activity进入`onPause()`时,其包含的所有Fragment也会进入`onPause()`状态。了解这些生命周期方法的...
在Android应用开发中,Fragment是Activity的一个模块化组件,它允许开发者在单个活动中展示多个交互界面。"Fragment的hide和show切换"是Android...熟练掌握这些方法,可以帮助开发者构建更加动态和用户友好的应用界面。
在Android应用开发中,...总之,Fragment生命周期的理解和合理利用是Android开发中的基础技能,通过实践如`MyFragmentDemo`这样的小程序,可以帮助开发者更好地掌握这一概念,从而编写出更健壮、用户体验更好的应用。
Fragment是Android应用开发中的一个重要组件,它允许我们把界面的一部分逻辑和UI分割开来,使得代码更加模块化。在深入理解Fragment的生命周期之前...熟练掌握Fragment生命周期,有助于构建高效、响应式的Android应用。
`Fragment`作为Android应用程序中的模块化组件,允许在活动中添加或替换多个视图,而`ViewPager`则提供了平滑的左右滑动页面切换效果,它可以自动管理`Fragment`的生命周期,以及预加载相邻的页面以提高用户体验。...
Fragment是Activity的一部分,有自己的生命周期,可以在Activity中添加、移除或替换。它们有自己的视图层次结构,可以在布局中动态地插入和移除,这样就能在不重启Activity的情况下改变用户界面。 创建Fragment的...
7. **管理Fragment的生命周期**:由于Fragment有自己的生命周期,需要在Activity的生命周期方法中适当地调用Fragment的相关方法,如`onSaveInstanceState`和`onActivityResult`。 通过以上步骤,你可以实现使用...
理解Fragment的生命周期、如何在Activity中添加和管理Fragment,以及如何处理横竖屏切换时的状态保存,是每个Android开发者必须掌握的基本技能。在实际项目中,还需要注意性能优化和用户体验,确保应用在各种场景下...
2. 管理Fragment的生命周期:确保在适当的时机调用Fragment的`onPause()`、`onResume()`等方法,避免内存泄漏和状态丢失。 3. 数据传递:使用Bundle对象或通过接口传递数据,确保在Fragment间正确地共享信息。 4. ...
理解Fragment的生命周期是进行Fragment切换的基础。Fragment有自己的生命周期,包括onAttach(), onCreate(), onCreateView(), onActivityCreated(), onStart(), onResume(), onPause(), onStop(), onDestroyView(), ...
在Android中,我们可以使用`FragmentManager`和`FragmentTransaction`来管理Fragment的生命周期和状态。例如,使用`beginTransaction()`开始一个事务,然后调用`add()`, `replace()`, 或 `remove()`来执行相应的操作...
3. **使用ViewModel**: Android架构组件中的ViewModel类是为了保持Activity和Fragment的生命周期之外的数据。即使Activity重建,ViewModel对象仍然存在,可以用来保存和恢复Fragment的状态。创建一个ViewModel,将...
Fragmen t生命周期Demo 动态添加Fragment 布局文件添加 详细讲解
总之,"fragment横竖屏切换demo"项目提供了关于如何在Android中使用Fragment处理屏幕方向变化的实际示例,涉及到了Fragment的生命周期管理、状态保存、布局调整以及与Activity的通信等多个关键知识点。在实际开发中...