首页 > 其他分享 >Fragment简单实例-------动态加载

Fragment简单实例-------动态加载

时间:2023-11-24 11:02:13浏览次数:25  
标签:fragmentTransaction Fragment ------- fragment import android view id 加载



文章目录

  • 1、实现功能
  • 2、代码架构
  • 3、activity_main.xml 文件
  • 4、fragment_one.xml 文件
  • 5、FragmentOne.java 文件
  • 6、FragmentTwo.java 文件
  • 7、MainActvity.java 文件


1、实现功能

一个activity 动态加载不同的 Fragment

Fragment简单实例-------动态加载_java

2、代码架构

Fragment简单实例-------动态加载_xml_02

3、activity_main.xml 文件
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    tools:context="com.example.menglux.fragmentauto.MainActivity">

    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Fragment Test"
        android:textColor="@color/colorAccent"
        android:textSize="40dp"/>

    <LinearLayout
        android:id="@+id/fragment_id"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:orientation="horizontal" />

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:orientation="horizontal">
        <Button
            android:id="@+id/but_one_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="one"
            android:textSize="20dp"
            />

        <Button
            android:id="@+id/but_two_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="two"
            android:textSize="20dp"
            />

        <Button
            android:id="@+id/but_three_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="Three"
            android:textSize="20dp"
            />

    </LinearLayout>

</LinearLayout>
4、fragment_one.xml 文件

fragment_one.xml
fragment_two.xml
fragment_three.xml
文件相似

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
   android:background="@color/colorOne"
    tools:context="com.example.menglux.fragmentauto.MainActivity">

    <LinearLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:orientation="vertical"
        android:layout_marginTop="100dp"
       >

        <TextView
            android:id="@+id/text_one_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="这是第一个 fragment"
            android:textSize="30dp"/>

    </LinearLayout>

</LinearLayout>
5、FragmentOne.java 文件
package com.example.menglux.fragmentauto;

import android.annotation.SuppressLint;
import android.app.Fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import static com.example.menglux.fragmentauto.R.color.colorPrimary;

/**
 * Created by menglux on 23/10/2018.
 */

public class FragmentOne  extends Fragment implements View.OnClickListener {
    private TextView textView;

    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.fragment_one,null);

        textView = (TextView) view.findViewById(R.id.text_one_id);
        textView.setOnClickListener(this);

        //这里就是把view返回给MainActivity里的方法
        return view;
    }
    @SuppressLint("ResourceAsColor")
    @Override
    public void onClick(View v) {
        System.out.println("lum_1 点击 fragme_1");
        switch (v.getId()) {
            case  R.id.text_one_id:
                textView.setTextColor(R.color.colorPrimaryDark);  //将字体颜色改变
            break;
                default:
                    break;
        }

    }
}
6、FragmentTwo.java 文件

FragmentThree.java 文件 基本相似

package com.example.menglux.fragmentauto;

import android.annotation.SuppressLint;
import android.app.Fragment;
import android.os.Bundle;
import android.support.annotation.Nullable;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;

import static com.example.menglux.fragmentauto.R.color.colorPrimary;

/**
 * Created by menglux on 23/10/2018.
 */

public class FragmentTwo extends Fragment  {
    private TextView textView;

    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, Bundle savedInstanceState) {
        View view=inflater.inflate(R.layout.fragment_two,null);

        textView = (TextView) view.findViewById(R.id.text_two_id);

        //这里就是把view返回给MainActivity里的方法
        return view;
    }

}
7、MainActvity.java 文件
package com.example.menglux.fragmentauto;

import android.app.Fragment;
import android.app.FragmentManager;
import android.app.FragmentTransaction;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;

public class MainActivity extends AppCompatActivity implements View.OnClickListener {

    private Button buttonOne,buttonTwo,buttonThree;  //三个按钮
    private FragmentManager fragmentManager;  //Fragment 管理器
    private FragmentTransaction fragmentTransaction;  //Fragment 事务处理

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        initView();

    }

    private void initView() {
        buttonOne = (Button) findViewById(R.id.but_one_id);
        buttonTwo = (Button) findViewById(R.id.but_two_id);
        buttonThree = (Button) findViewById(R.id.but_three_id);

        buttonOne.setOnClickListener(this);
        buttonTwo.setOnClickListener(this);
        buttonThree.setOnClickListener(this);

        fragmentManager = getFragmentManager(); //得到Fragment 管理器对象

        fragmentTransaction = fragmentManager.beginTransaction(); //开始fragmnet 的事务处理
        //初始化一个 fragment
        FragmentOne fragment = new FragmentOne(); //实例化 fragment
        fragmentTransaction.add(R.id.fragment_id, fragment); //fragment_id 是布局中给fragment 占位置的控
        fragmentTransaction.commit(); //提交事务
    }

    @Override
    public void onClick(View v) {
        fragmentTransaction = fragmentManager.beginTransaction(); //开始fragmnet 的事务处理
        switch(v.getId()) {
            case R.id.but_one_id:
                fragmentTransaction.replace(R.id.fragment_id,new FragmentOne());  //加载第一个 fragment
                fragmentTransaction.addToBackStack(null);  //把 fragment one放到 栈队里  跳转后 返回键可返回
                break;
            case R.id.but_two_id:
                fragmentTransaction.replace(R.id.fragment_id,new FragmentTwo());  //加载第二个 fragment
                fragmentTransaction.addToBackStack(null);  //把 fragment two放到 栈队里 跳转后返回键 可返回
                break;
            case R.id.but_three_id:
                fragmentTransaction.replace(R.id.fragment_id,new FragmentThree());  //加载 第三个 fragment
                fragmentTransaction.addToBackStack(null);  //把 fragment three放到 栈队里 跳转后返回键 可返回
                break;
            default:
                break;
        }

        fragmentTransaction.commit();//提交事务
    }
}


标签:fragmentTransaction,Fragment,-------,fragment,import,android,view,id,加载
From: https://blog.51cto.com/u_15866638/8546151

相关文章

  • Fragment简单实例-------静态加载
    文章目录1、功能实例2、代码结构3、activity_main.xml文件4、fragment_button.xml5、FragmentButton.java文件6、MainActivity.java1、功能实例在activity中将fragment作为组件加载图中Textview是一个组件Button是一个fragment组件它们都是直接在一个.xml文件里引用2......
  • RS808-ASEMI通用60瓦以内适配器桥堆RS808
    编辑:llRS808-ASEMI通用60瓦以内适配器桥堆RS808型号:RS808品牌:ASEMI封装:RS-4正向电流:8A反向电压:800V引线数量:4芯片个数:4芯片尺寸:95MIL漏电流:<5ua恢复时间:>500ns浪涌电流:250A芯片材质:正向电压:1.10V封装尺寸:如图特性:插件、薄体扁桥工作结温:-55℃~150℃包装方式:500/......
  • java-EasyExcel模板导出
    前言: 需求:根据自定义模板导出Excel,包含图片、表格,采用EasyExcel 提示:EasyExcel请使用3.0以上版本,对图片操作最重要的类就是WriteCellData<Void>如果你的easyexcel没有这个类,说明你的版本太低,请升级到3.0以上<dependency><groupId>com.alibaba</groupId><ar......
  • 【2023-11-23】难得知己
    20:00发生在这个世界上的事情,只有通过我们自己对事件的诠释才能影响到我们,所以只要我们能控制自己对事件的诠释,就能控制自己的世界。                                            ......
  • uniapp-微信小程序绑定动态样式 :style 避坑
    在uniapp中绑定动态样式:style="object"使用此种方法,在H5页面中并不会出现任何问题而在微信小程序中,此种方式就会被编译成 style="[object,object]"从而导致样式无法生效解决方法:    使用:style="[object]"此种方式即可......
  • 文心一言 VS 讯飞星火 VS chatgpt (142)-- 算法导论12.1 2题
    二、用go语言,二叉搜索树性质与最小堆性质(见6.1节)之间有什么不同?能使用最小堆性质在O(n)时间内按序输出一棵有n个结点树的关键字吗?可以的话,请说明如何做,否则解释理由。文心一言:在二叉搜索树(BinarySearchTree,BST)和最小堆(MinHeap)中,元素的排列顺序都是根据其关键字的......
  • Skeleton Screen/加载占位图流光闪动效果收集
    SkeletonScreenLoading,又叫SkeletonScreen/加载占位图,就是显示dom骨架,加上流光加载效果。骨架流光的原理,就是渐变色(linear-gradient多个颜色)+背景拉伸(background-size:400%100%)+背景移动(background-position)1.CSS实现SkeletonScreen(骨架屏)li{backgrou......
  • 2W02-ASEMI小功率电源板专用圆桥2W02
    编辑:ll2W02-ASEMI小功率电源板专用圆桥2W02型号:2W02品牌:ASEMI封装:WOB-4特性:插件、整流圆桥正向电流:2A反向耐压:200V恢复时间:>2000ns引脚数量:4芯片个数:4芯片尺寸:60MIL浪涌电流:60A漏电流:10ua工作温度:-55℃~150℃包装方式:500/盘;5000/箱备受欢迎的2W02-ASEMI整流圆桥A......
  • DevExpress中文教程 - 如何在macOS和Linux (CTP)上创建、修改报表(下)
    DevExpressReporting是.NETFramework下功能完善的报表平台,它附带了易于使用的VisualStudio报表设计器和丰富的报表控件集,包括数据透视表、图表,因此您可以构建无与伦比、信息清晰的报表。DevExpressReports—跨平台报表组件,允许用户在针对任何基于.NET平台的应用程序中生成......
  • Docker-compose部署ldap
    一.Docker-compose部署ldap参考:https://blog.csdn.net/yhl18931306541/article/details/1282537351.部署服务端dockerrun\-d\-p389:389\-p636:636\-v/usr/local/ldap:/usr/local/ldap\-v/data/openldap/ldap:/var/lib/ldap\-v/dat......