I need to find a view I declared in axml in a MvxFragment. In an Activity I can call FindViewById<T>(RESOURCE_ID)
in OnCreate
. This doesn't work in fragments.
This is how it works with normal Android fragments: findViewById in Fragment
How do I inflate a view in a MvxFragment
without losing the binding context?