Package io.rong.imkit.base
Interface BasePage
-
- All Implemented Interfaces:
public interface BasePage
页面基类
- Since:
5.10.4
rongcloud
-
-
Method Summary
Modifier and Type Method Description abstract View
onCreateView(Context context, LayoutInflater inflater, ViewGroup container, Bundle args)
创建模块后调用,以创建要在片段或活动中使用的视图。 在此方法中,模块使用属于组件的组件来构建视图。 -
-
Method Detail
-
onCreateView
abstract View onCreateView(Context context, LayoutInflater inflater, ViewGroup container, Bundle args)
创建模块后调用,以创建要在片段或活动中使用的视图。 在此方法中,模块使用属于组件的组件来构建视图。
- Parameters:
context
- 上下文inflater
- 可用于扩充模块中任何视图的 LayoutInflate 对象container
- 父布局args
- 实例化模块时提供的参数(非必须)- Returns:
返回 UI 的视图。
-
-
-
-