0

アプリケーションでPlace Pickerライブラリを使用しようとしていますが、Place Picker 画面のスタイルに問題があるようです。この画面のスタイルを設定する方法を誰か教えてもらえますか? これが私のデバイスで得ているものです:

ここに画像の説明を入力

ここに私が使用するAppThemeがあります:

<!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
        <!-- Customize your theme here. TODO -->
        <item name="colorPrimary">@color/colorPrimary</item>
        <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
        <item name="colorAccent">@color/colorPrimaryDark</item>


        <!--style for switchCompat-->
        <item name="colorControlActivated">@color/white</item>
        <item name="colorSwitchThumbNormal">@color/white</item>
        <item name="android:colorForeground">@color/white</item>

        <!--<item name="actionBarStyle">@style/Widget.AppTheme.ActionBar</item>-->
        <item name="buttonStyle">@style/My.Button</item>
    </style>

編集:これは、Android 4.4 を搭載した Note 2 デバイスでのみ発生します。これに対する修正を知っている人はいますか?

4

2 に答える 2

0

5.0未満のAndroidバージョンの場合PlaceAutocomplete.MODE_OVERLAY

 private void launchLocationAutoComplete() {
        try {
            Intent intent = new PlaceAutocomplete.IntentBuilder(PlaceAutocomplete.MODE_OVERLAY).build(this);
            startActivityForResult(intent, PLACE_AUTOCOMPLETE_REQUEST_CODE);
        } catch (GooglePlayServicesRepairableException e) {
            Log.e(TAG, "GooglePlayServicesRepairableException", e);
        } catch (GooglePlayServicesNotAvailableException e) {
            Log.e(TAG, "GooglePlayServicesNotAvailableException", e);
        }
    }
于 2016-03-10T16:13:22.267 に答える