I am trying to make an app which can enable user to "check-in" at a certain location through Google Place Picker.
I use the code from Google :
PlacePicker.IntentBuilder intentBuilder = new PlacePicker.IntentBuilder();
intentBuilder.setLatLngBounds(DEFAULT_LOCATION);
Intent intent = intentBuilder.build(LocationActivity.this);
startActivityForResult(intent, PLACE_PICKER_REQUEST);
The problem is, the search box doesn't appear in some devices but appears in a certain device.
Here's a snapshot taken from Note 5, in which the search menu appears :
And here's a snapshot taken from Xiaomi Redmii 2 in which it doesn't appear :
It also doesn't appear in, Zenfone C, and S5, Sony Ultra C5..
I've followed Google's tutorial from top to bottom but still hasn't found any solution to this as it happen all of a sudden.
Have anybody been in this predicament before? If yes, any solution??