Android fragment的写

c 复制代码
package com.zs.test_.fragment;
import java.util.HashMap;

public class MyFragment extends Fragment {
    TextView tv_id, tv_share_my, tv_gold;

    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        View view = inflater.inflate(R.layout.fragment_my, container, false);
        SharedPreferencesUtils sharedPreferencesUtils = SharedPreferencesUtils.getInstance(getActivity());
        about_my = view.findViewById(R.id.about_my);
        return view;
    }

    @Override
    public void onDetach() {
        super.onDetach();

        EventBus.unregister(this);
    }
}

1.继承于fragment

extends Fragment

2.将 XML 布局文件 (R.layout.fragment_no_fold_tab)解析为对应的 View 层次结构。

View view = inflater.inflate(R.layout.fragment_my, container, false);、

相关推荐
麻辣炖土豆儿3 小时前
Android BottomNavigationView不加icon使text垂直居中,完美解决。
android
听我一言4 小时前
Qt for android : 简单实现弹窗创建文件,并使用JNI进行读写实例
android·开发语言·qt
小兵小卒4 小时前
ElectronSharp,.Net跨平台的多一种选择
android·macos·c#·.net·wpf
Aric4 小时前
android mqtt demo
android
alexhilton4 小时前
Compose多平台 (CMP) 开发的四个实用技巧
android·kotlin·android jetpack
ytuglt7 小时前
Mac M1处理器uiautomatorviewer 使用
android·macos
柯南二号7 小时前
Android JecPack组件之LifeCycles 使用详解
android·jetpack·lifecycles
万亿少女的梦1688 小时前
基于php求职招聘系统设计
android·php·求职招聘
xvch8 小时前
Kotlin 2.1.0 入门教程(一)
android·kotlin