我有以下代码:
setContentView(R.layout.activity_main);
ActionBar mActionBar = getActionBar();
if (mActionBar != null) {
mActionBar.setDisplayShowHomeEnabled(false);
mActionBar.setDisplayShowTitleEnabled(false);
}
LayoutInflater mInflater = LayoutInflater.from(this);
View mCustomView = mInflater.inflate(R.layout.action_bar_search, null,false);
关于 null (膨胀的第二个参数)我得到:避免传递 null 作为视图根(需要解析膨胀布局上的布局参数' s根元素)。我读过传递null是可以的,但我承认我希望尽可能保持代码清洁。
当给fragment
充气时,我有容器,但我没有找到要传递的内容,以避免出现此警告。
请指教 感谢