Ga naar hoofdinhoud
Logo Appt Light

Search functionality on Android

Users might have difficulty finding a specific screen. For example, inside a banking app, there might be a setting for enabling contactless payments. Users likely need to navigate through multiple screens to reach before reaching this setting. It helps to offer search functionality to jump directly to this screen.

On Android, you could use a SearchView to search for screens.

searchView.setOnQueryTextListener(
    object : SearchView.OnQueryTextListener {
        override fun onQueryTextSubmit(query: String?): Boolean {
            // Search
            return false
        }
    }
)
Bijdragen

Feedback?

Laat 't ons weten!