我正在尝试将自定义视图设置为 ActionMode,但它与作为父级的 ActionMode 不匹配。与标准的 ActionBar 相比,在设置自定义视图时可以指定布局参数,而在 ActionMode 中不提供。
有什么解决办法吗?
mode.setCustomView(mModeActionBarView);
getSupportActionBar().setCustomView(customActionBarView, new ActionBar.LayoutParams(
ViewGroup.LayoutParams.MATCH_PARENT,
ViewGroup.LayoutParams.MATCH_PARENT));
非常感谢!