如何更改谷歌地方自动完成图标和文字颜色?

时间:2018-06-09 06:41:39

标签: android

当我以某种方式打开google place autocomple时,文字和图标颜色为黑色。我正试图将颜色从黑色改为白色,但我无法这样做,我不知道为什么。有人可以向我解释为什么会这样,以及我如何解决这个问题。谢谢。

从这个: enter image description here

对此:enter image description here

这是我打开Goog​​le地方自动填充的方式:

public void chooseLocation(){
        try {
            Intent intent = new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_FULLSCREEN)
                            .build(this);
            startActivityForResult(intent, PLACE_AUTOCOMPLETE_REQUEST_CODE);

        }catch (Exception e){
            Toast.makeText(ActivityCreatePost.this, e.getLocalizedMessage(), Toast.LENGTH_SHORT).show();
        }
    }

0 个答案:

没有答案