如何用 CustomView 替换工具栏标题

How to replace Toolbar Title with CustomView

如何用自定义布局视图替换工具栏中的标题?然后我想在我关闭它时删除该视图。所以我只希望该视图在一个片段中出现在工具栏中。

我正在尝试这个,但它不起作用:

activity.supportActionBar!!.setDisplayShowCustomEnabled(true);
activity.supportActionBar!!.setDisplayShowTitleEnabled(false);
activity.supportActionBar!!.customView = layoutInflater.inflate(R.layout.view_segmented_control, null, false)

这就是解决方案:

val activity = activity ?: return
val mainActivity = activity as MainActivity

mainActivity.supportActionBar?.setDisplayShowCustomEnabled(true)
mainActivity.supportActionBar?.setDisplayShowTitleEnabled(false)

mainActivity.supportActionBar?.customView = layoutInflater.inflate(R.layout.view_segmented_control, null, false)
segmentedControl = layoutInflater.inflate(R.layout.view_segmented_control, null, false)
segmentedControl.segmented_control.notifyConfigIsChanged()

val toolbar = mainActivity.findViewById<androidx.appcompat.widget.Toolbar>(R.id.toolbar)
toolbar.addView(segmentedControl, toolbar.childCount)