I have an activity only for the SearchView which is focused on created so the soft keyboard pops up.
This is the code (kotlin):
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_search_input)
searchInput.isIconified = false
searchInputLayout.setOnClickListener {
finish()
}
}
override fun onBackPressed() {
searchInput.clearFocus()
finish()
}
As you can see I try to close the activity when back button is pressed but it only closes the soft keyboard.
How can I do this??
Thanks in advance