Added BlurLayout to a dynamically inflated view but it never shows ``` DataBindingUtil.inflate<MyBinding>( activity.applicationContext.getSystemService(Context.LAYOUT_INFLATER_SERVICE) as LayoutInflater, R.layout.my_item, view as ViewGroup, false ).also { it.lifecycleOwner = activity it.vm = vm view.addView(it.root) } ```