Fragment是个特别的存在,有点像报纸上的专栏,看起来只占据页面的一小块,但是这一小块有自己的生命周期,可以自行其是,仿佛独立王国,并且这一小块的特性无论在哪个页面,给一个位置就行,添加以后不影响宿主页面的其他区域,去除后也不影响宿主页面的其他区域。每个fragment都有自己的布局文件,依据其使用方式可分为静态注册和动态注册两种,静态注册是在布局文件中直接放置fragment节点,类似于一个普通控件,可被多个布局文件同时引用。静态注册一般用于某个通用的页面部件(如logo条,广告条等),每个活动页面均可直接引用该部件。

1.静态注册

下面是fragment布局文件的代码:

<?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="wrap_content"
android:orientation="horizontal"
android:background="#bbffbb">
<TextView
android:id="@+id/tv_adv"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:textColor="#000"
android:textSize="20sp"
android:gravity="center"
android:text="广告"/>
<ImageView
android:id="@+id/iv_adv"
android:layout_width="0dp"
android:layout_height="100dp"
android:layout_weight="5"
android:src="@drawable/adv"
android:scaleType="fitCenter"/>
</LinearLayout>

下面是与上述文件对应的fragment代码,除了继承自fragment外,其他地方很像活动页代码:

package com.example.animator.highleveltools;

import android.content.Context;
import android.net.Uri;
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast; import java.util.zip.Inflater; public class BlankFragment extends Fragment implements View.OnClickListener{ private View mView;
private Context mContext; @Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
mContext = getActivity();//获取活动页上下文
//根据布局文件fragment_static.xml生成视图对象
mView = inflater.inflate(R.layout.fragment_layout,container,false);
TextView tv_adv = (TextView) mView.findViewById(R.id.tv_adv);
ImageView iv_adv = (ImageView) mView.findViewById(R.id.iv_adv);
tv_adv.setOnClickListener(this);
iv_adv.setOnClickListener(this);
return mView;//返回该碎片的视图对象
} @Override
public void onViewCreated(View view, Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
} @Override
public void onClick(View view) {
if(view.getId()==R.id.tv_adv){
Toast.makeText(mContext,"您点击了广告文本",Toast.LENGTH_LONG).show();
}else if(view.getId()==R.id.iv_adv){
Toast.makeText(mContext,"您点击了广告图片",Toast.LENGTH_LONG).show();
}
}
}

若想在页面布局文件中引用fragment,则可直接加入一个fragment节点,注意节点要增加name属性指定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="vertical"
android:padding="5dp"
> <fragment
android:id="@+id/fragment_static"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:name="com.example.animator.highleveltools.BlankFragment"
tools:layout="@layout/fragment_layout" />
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center|top"
android:text="这是每个页面的具体内容"
android:textColor="#000"
android:textSize="17sp"/>
</LinearLayout>

运行效果如下:

2.动态注册

相比静态注册,动态注册用的更多,动态注册知道在代码中才动态添加fragment,动态生成的碎片就是给翻页视图用的。使用碎片适配器即可实现:

package adapter;

import android.app.FragmentManager;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentStatePagerAdapter;
import android.text.style.DynamicDrawableSpan; import java.util.ArrayList; import bean.DynamicFragment; /**
* Created by animator on 2020/1/29.
*/
public class MobilePagerAdapter extends FragmentStatePagerAdapter {
private ArrayList<GoodsInfo> mGoodsList = new ArrayList<>();//声明一个商品队列 //碎片页适配器的构造函数,传入碎片管理器与商品信息队列
private MobilePagerAdapter(android.support.v4.app.FragmentManager fm , ArrayList<GoodsInfo> goodsList){
super(fm);
mGoodsList = goodsList;
} //获取指定位置的fragment
@Override
public Fragment getItem(int position) {
return DynamicFragment.newInstance(position,mGoodsList.get(position).pic,mGoodsList.get(position).desc);
} //获取碎片fragment的个数
@Override
public int getCount() {
return mGoodsList.size();
} //获得指定碎片页的标题文本
public CharSequence getPageTitle(int position){
return mGoodsList.get(position).name;
}
}

下面是动态注册的碎片代码:

package bean;

import android.app.Fragment;
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.ImageView;
import android.widget.TextView; import com.example.animator.highleveltools.R; /**
* Created by animator on 2020/1/29.
*/
public class DynamicFragment extends Fragment {
protected View mView;//声明一个视图对象
protected Context mContext;//声明一个上下文对象
private int mPosition;//位置序号
private int mImageId;//图片的资源编号
private String mDesc;//商品的文字描述 //获取该碎片的一个实例
public static DynamicFragment newInstance(int position,int image_id,String desc){
DynamicFragment fragment = new DynamicFragment();//创建该碎片的一个实例
Bundle bundle = new Bundle();//创建一个新包裹
bundle.putInt("position",position);
bundle.putInt("image_id",image_id);
bundle.putString("desc",desc);
fragment.setArguments(bundle);//把包裹塞给碎片
return fragment;
} //创建碎片视图
public View onCreateView(LayoutInflater inflater,ViewGroup container,Bundle savedInstanceState){
mContext = getActivity();
if(getArguments()!=null){//如果碎片携带有包裹
mPosition = getArguments().getInt("position");
mImageId = getArguments().getInt("image_id");
mDesc = getArguments().getString("desc");
}
//根据布局文件fragment_dynamic.xml生成视图对象
mView = inflater.inflate(R.layout.fragment_dynamic,container,false);
ImageView iv_pic = mView.findViewById(R.id.iv_pic);
TextView tv_desc = (TextView) mView.findViewById(R.id.tv_desc);
iv_pic.setImageResource(mImageId);
tv_desc.setText(mDesc);
return mView;//返回该碎片的视图对象
}
}

下面是activity代码:

     ArrayList<GoodsInfo> goodsList = GoodsInfo.getDefaultList();
//构建一个手机商品的碎片翻页适配器
MobilePagerAdapter adapter = new MobilePagerAdapter(getSupportFragmentManager(),goodsList);
//从布局视图中获取名叫vp_content的翻页视图
ViewPager vp_content = findViewById(R.id.vp_content);
//给vp_content设置手机商品的碎片适配器
vp_content.setAdapter(adapter);
//设置vp_content默认显示第一个页面
vp_content.setCurrentItem(0);

Android之碎片Fragment的更多相关文章

  1. Android开发:碎片Fragment完全解析fragment_main.xml/activity_main.xml

    Android开发:碎片Fragment完全解析   为了让界面可以在平板上更好地展示,Android在3.0版本引入了Fragment(碎片)功能,它非常类似于Activity,可以像 Activi ...

  2. Android学习——碎片Fragment的使用

    一.碎片的简单用法(实现在一个活动中添加两个碎片,并让这两个碎片平分活动空间) 1.新建一个FragmentTest项目: 新建一个左侧碎片布局left_fragment.xml,代码如下:(只放置一 ...

  3. Android开发:碎片Fragment完全解析fragment_main.xml/activity_main.xml(转)

    注明:这个转的,见谅未能标明原始出处 我们都知道,Android上的界面展示都是通过Activity实现的,Activity实在是太常用了,我相信大家都已经非常熟悉了,这里就不再赘述. 但是Activ ...

  4. 【Android】碎片Fragment

    1.碎片可以让界面在平板上更好地展示. 2.碎片是一种可以嵌入到活动中的UI片段,它能让程序更加合理和充分地利用一个大屏幕的空间.有自己的生命周期,能包含布局. 3.新建碎片类继承Fragment,可 ...

  5. Android交流会-碎片Fragment,闲聊单位与尺寸

    女孩:又周末了哦~ 男孩:那么今日来开个交流会,我们也学一学人家高大尚的大会,自己开一个,广州站,Android开发攻城狮交流会~ 1.Fragment概要: Android从3.0开始引入了Frag ...

  6. android 开发 碎片Fragment布局例子(用按键切换碎片布局)

    实现思路: 1.写一个父类布局,里面写一个按键和一个帧布局(用于给Fragment布局后续替代) 2.写3个子布局,并且在写3个class继承Fragment布局 3.在MainActivity的cl ...

  7. Android利用碎片fragment实现底部标题栏(Github模板开源)

    在安卓开发当中,一个十分重要的布局则是底部标题栏了,拥有了底部标题栏,我们就拥有了整个软件UI开发的框架,一般而言,整个软件的布局首先就是从底部标题栏开始构建,然后再开始其他模块的编写,组成一个完善的 ...

  8. android UI:Fragment碎片

    碎片(Fragment) 嵌入与活动中的UI片段,为了合理的分配布局而存在,这是我的简单理解.多用于兼顾手机与平板的UI,也适用于灵活高级的UI制作. Demo 简单的按键切换两片不同的Demo 新建 ...

  9. 安卓Android碎片fragment实现静态加载

    静态加载好后的界面如下,两个碎片分别位于一个活动的左边和右边: 左边和右边分别为一个碎片,这两个碎片正好将一整个活动布满.一个活动当中可以拥有多个碎片,碎片的含义就是可以在同一个UI界面下,将这个界面 ...

随机推荐

  1. 【Java并发工具类】Semaphore

    前言 1965年,荷兰计算机科学家Dijkstra提出的信号量机制成为一种高效的进程同步机制.这之后的15年,信号量一直都是并发编程领域的终结者.1980年,管程被提出,成为继信号量之后的在并发编程领 ...

  2. sysbench压测自装MySQL数据库

    压测准备 测试机器 2vCPUs | 4GB | s6.large.2 CentOS 7.6 64bit 建立测试库 create database test_db character set utf ...

  3. TestStand 基础知识[7]--Build-in Step Types (2)

    接着上一篇文章:TestStand 基础知识[6] Build-In StepTypes(1) 继续介绍: 还是先把Build-in StepTypes图片贴一下, 1. Call Executabl ...

  4. ubuntu docker中crontab任务不执行的问题

    problem of task of crontab in docker of ubuntu do not working! 由于各种原因,要在Ubuntu docker上部署crontab任务,如 ...

  5. qt creator源码全方面分析(2-10-2)

    目录 Creating Your First Plugin 创建一个插件项目 构建并运行插件 文件结构 qmake项目 插件元数据模板 插件类 头文件 源文件 Creating Your First ...

  6. 《Python编程:从入门到实践》分享下载

    书籍信息 书名:<Python编程:从入门到实践> 原作名:Python Crash Course 作者: [美] 埃里克·马瑟斯 豆瓣评分:9.1分(2534人评价) 内容简介 本书是一 ...

  7. 给 iTerm 终端设置代理

    本文介绍如何为自己的终端设置代理,从而实现在命令行中访问Google. 1. 背景 当你使用SS FQ时,大部分浏览器都可以成功访问Google,但是在命令行下执行curl https://www.g ...

  8. k8s系列---网络插件flannel

    跨节点通讯,需要通过NAT,即需要做源地址转换. k8s网络通信: 1) 容器间通信:同一个pod内的多个容器间的通信,通过lo即可实现: 2) pod之间的通信,pod ip <---> ...

  9. [Python-memcached]Python操作memcached

    安装python-memchached插件 pip install python-memcached Collecting python-memcached Downloading python_me ...

  10. 处理jquery 中 给disabled属性不传值的问题

    问题:审核页面加入不可编辑的判断后,点击[审核]按钮,报错,form表单的数据没有传递过去. 下面是js中加入的代码,用来判断是否是审核页面的,去掉此代码,点击[审核]按钮能正常传递数据,加入的话,无 ...