I am using an Intent to launch an Autocomplete Activity from the Places SDK for Android, as described here, along the following lines:
Intent intent = new Autocomplete.IntentBuilder(
AutocompleteActivityMode.FULLSCREEN, fields)
.build(this);
startActivityForResult(intent, AUTOCOMPLETE_REQUEST_CODE);
But I cannot see a way of styling the resulting Autocomplete Activity, to make it match the theme of my app as closely as possible, and in particular to follow the day/night theme being used in the app. At present the background of the places list always appears to be white, with dark text on top, i.e. suited only to a light theme.
For example the following is what it looks like, when launched from within an app running on a system set to dark theme:
How is this Activity meant to be styled?