> For the complete documentation index, see [llms.txt](https://docs.mapbox.com/android/navigation/ux/llms.txt)

# Search

Navigation SDK UX Framework provides users the ability to open search screen with a passed query:

```kotlin
class MainActivity : AppCompatActivity() {

    fun openSearch(query: String?) {
        Dash.controller.openSearch(query)
    }
}
```