public View onCreateView(@NonNull LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { notificationsViewModel = ViewModelProviders.of(this).get(NotificationsViewModel.class); final View root = inflater.inflate(R.layout.fragment_notifications, container, false); username = root.findViewById(R.id.info_username); nickname = root.findViewById(R.id.info_nickname); tel = root.findViewById(R.id.info_tel); emile = root.findViewById(R.id.info_emile); address = root.findViewById(R.id.info_address); exit = root.findViewById(R.id.exit); handler = new Handler(); mContext = getContext();
时间: 2024-04-04 18:33:24 浏览: 79
Android ViewPager + Fragment实现滑动页面效果
这段代码是一个 Android 应用中的 Fragment 的实现。它重写了 onCreateView 方法,在该方法中初始化了一些 UI 控件,并返回了 Fragment 的根视图。其中,notificationsViewModel 是一个 ViewModel 类型的对象,用于存储该 Fragment 所需的数据。通过 ViewModelProviders.of(this) 方法获取该对象的实例。接下来,通过 inflater.inflate 方法将该 Fragment 的布局文件 R.layout.fragment_notifications 转化为 View 对象,并将其添加到 container 容器中。最后,该方法返回该 Fragment 的根视图。
阅读全文