Android Fragment:静态与动态注册详解
144 浏览量
更新于2024-09-09
收藏 80KB PDF 举报
"这篇文档详细阐述了Android Fragment的静态注册和动态注册的创建步骤,适合初学者和有经验的开发者参考。"
在Android应用开发中,Fragment是Activity的一部分,它可以包含用户界面元素并参与到Activity的生命周期中。了解如何正确地注册和管理Fragment是构建复杂布局的关键。
### 一、Fragment静态注册创建方法及步骤
1. 创建Fragment类:首先,创建一个名为`StaticFragment`的Java文件,让它继承自`Fragment`类。同时,创建一个对应的布局文件,如`static_fragment.xml`,用于定义Fragment的视图结构。
2. 实现onCreateView():在`StaticFragment`类中,重写`onCreateView(LayoutInflater, ViewGroup, Bundle)`方法。在这个方法中,通过`LayoutInflater`的`inflate()`方法加载布局文件,并将其返回。例如:
```java
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
// 使用布局文件创建视图
View view = inflater.inflate(R.layout.static_fragment, container, false);
// 绑定布局中的组件
Button btn_fm = view.findViewById(R.id.btn_fm);
EditText et_fm = view.findViewById(R.id.et_fm);
// 添加逻辑处理,如按钮点击事件
btn_fm.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String input = et_fm.getText().toString();
// 在此处处理点击事件,例如显示输入的内容
}
});
return view;
}
```
3. 在Activity中添加Fragment:在主Activity的布局文件中,可以通过`<fragment>`标签静态地添加`StaticFragment`。例如:
```xml
<fragment
android:id="@+id/static_fragment"
android:name="com.example.yourapp.StaticFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
```
4. 运行应用:编译并运行应用,静态注册的Fragment将在指定位置展示。
### 二、Fragment动态注册创建方法及步骤
1. 在Activity中声明变量:在Activity类中声明`Fragment`变量,以及`FragmentManager`和`FragmentTransaction`对象。
2. 在onCreate()或onResume()中添加Fragment:在Activity的`onCreate()`或`onResume()`方法中,使用`FragmentManager`的`beginTransaction()`方法开始一个事务,然后调用`add()`方法将Fragment添加到Activity的某个容器(如布局中一个空的`FrameLayout`)中。最后,调用`commit()`来提交事务。例如:
```java
FragmentManager fragmentManager = getSupportFragmentManager();
FragmentTransaction fragmentTransaction = fragmentManager.beginTransaction();
StaticFragment staticFragment = new StaticFragment();
fragmentTransaction.add(R.id.container, staticFragment, "STATIC_FRAGMENT");
fragmentTransaction.commit();
```
3. 管理Fragment的生命周期:动态注册的Fragment会随着Activity的生命周期一起变化,例如在`onSaveInstanceState(Bundle outState)`中保存Fragment的状态,在`onRestoreInstanceState(Bundle savedInstanceState)`中恢复。
4. 替换或移除Fragment:如果需要替换或移除动态添加的Fragment,可以使用`replace()`或`remove()`方法。
通过静态注册,Fragment在XML布局文件中被预先定义,而动态注册则允许在运行时根据需要添加、替换或移除Fragment,提供了更大的灵活性。了解这两种方式可以帮助开发者根据应用场景选择合适的注册方法,优化应用的结构和性能。
2019-07-13 上传
点击了解资源详情
点击了解资源详情
2020-09-01 上传
2017-03-10 上传
2015-12-30 上传
2015-11-04 上传
2016-11-04 上传
2017-01-10 上传
weixin_38545243
- 粉丝: 7
- 资源: 899
最新资源
- 深入浅出:自定义 Grunt 任务的实践指南
- 网络物理突变工具的多点路径规划实现与分析
- multifeed: 实现多作者间的超核心共享与同步技术
- C++商品交易系统实习项目详细要求
- macOS系统Python模块whl包安装教程
- 掌握fullstackJS:构建React框架与快速开发应用
- React-Purify: 实现React组件纯净方法的工具介绍
- deck.js:构建现代HTML演示的JavaScript库
- nunn:现代C++17实现的机器学习库开源项目
- Python安装包 Acquisition-4.12-cp35-cp35m-win_amd64.whl.zip 使用说明
- Amaranthus-tuberculatus基因组分析脚本集
- Ubuntu 12.04下Realtek RTL8821AE驱动的向后移植指南
- 掌握Jest环境下的最新jsdom功能
- CAGI Toolkit:开源Asterisk PBX的AGI应用开发
- MyDropDemo: 体验QGraphicsView的拖放功能
- 远程FPGA平台上的Quartus II17.1 LCD色块闪烁现象解析