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

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

时间:2023-11-24 11:02:05浏览次数:21  
标签:Fragment button ------- fragment activity import android view 加载



文章目录

  • 1、功能实例
  • 2、代码结构
  • 3、activity_main.xml 文件
  • 4、fragment_button.xml
  • 5、FragmentButton.java 文件
  • 6、MainActivity.java


1、功能实例

在activity中 将 fragment 作为组件加载

图中 Textview 是一个组件
Button 是一个fragment 组件

它们都是直接在 一个.xml 文件里引用

Fragment简单实例-------静态加载_xml

Fragment简单实例-------静态加载_fragment_02

Fragment简单实例-------静态加载_java_03

2、代码结构

Fragment简单实例-------静态加载_fragment_04

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.fragmentstatic.MainActivity">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="100dp"
        android:gravity="center">
        <TextView
            android:id="@+id/text_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30dp"
            android:text="Hello World!" />
    </LinearLayout>

    <fragment
        android:id="@+id/fargment_id"
        android:name="com.example.menglux.fragmentstatic.FragmentButton"   **// 在 布局文件里 加载自定义的 FragmentButton**  
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_marginTop="50dp"
        android:layout_gravity="center"/>


</LinearLayout>
4、fragment_button.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"
    tools:context="com.example.menglux.fragmentstatic.MainActivity">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginTop="100dp"
        android:gravity="center">
        <Button
            android:id="@+id/button_id"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30dp"
            android:text="click" />
    </LinearLayout>


</LinearLayout>
5、FragmentButton.java 文件
package com.example.menglux.fragmentstatic;

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

public class FragmentButton extends Fragment implements View.OnClickListener {

    private  Button button;
    private TextView textView;

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

       button = (Button) view.findViewById(R.id.button_id);
       button.setOnClickListener(this);

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

    @Override
    public void onClick(View v) {
        switch(v.getId()){
            case R.id.button_id:
                //在Fragment中使用Activity中控件的方式
                // 在当前的Fragment中调用getActivity方法获取依附着的那个Activity,
                // 然后再用获取到的Activity去findViewById拿到你需要的控件对其操作就行了。
                AppCompatActivity activity = (AppCompatActivity) getActivity();
                textView = (TextView) activity.findViewById(R.id.text_id);
                textView.setText("我是 fragment Button");
                break;
                default:
                    break;
        }
    }
}
6、MainActivity.java
package com.example.menglux.fragmentstatic;

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;

public class MainActivity extends AppCompatActivity {

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


标签:Fragment,button,-------,fragment,activity,import,android,view,加载
From: https://blog.51cto.com/u_15866638/8546157

相关文章

  • 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......
  • a-table 树形表格默认展开
    1、参考文献:https://blog.csdn.net/qq_52855464/article/details/125996915  v-if="dataSource&&dataSource.length"    :defaultExpandAllRows="true"后端返回的数据中包含children1.1. 默认展开所有行通过设置默认展开所有节点属性::defaultExpandAllRows="tr......