I have a simple search input with minor customizations. I previously compiled against Android 6 and behavior was as expected:
- Focus on the control
- Keyboard comes up
- etc.
When compiling against Android 7.1 (API 25), my SearchView(s) start behaving weirdly.
- They have no Metro Style bottom border
- They do not accept focus
- Do not open keyboard
- etc
I migrated from android.support.v7.widget.SearchView to android.widget.SearchView to see if that fixed the problem.