新版本的重写onCreateView方法是
时间: 2024-03-09 17:48:00 浏览: 73
在新版本中,重写 onCreateView 方法需要使用 @NonNull 注解来标识返回的 View 对象不能为 null。同时,需要在方法中使用 LayoutInflater 对象来实例化布局文件,例如:
```
@Override
@NonNull
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
View rootView = inflater.inflate(R.layout.fragment_layout, container, false);
// 对布局文件中的控件进行操作
return rootView;
}
```
在这个例子中,我们使用 LayoutInflater 对象来实例化一个名为 fragment_layout 的布局文件,并将其添加到 container 中。然后,我们可以对布局文件中的控件进行操作,最后返回这个 View 对象。
阅读全文