2017-10-06 86 views
1

我正在使用位置選擇器API,但我不明白爲什麼首次啓動它需要時間?
第一次運行/啓動後,當我們第二次打開它時,它工作正常。首次啓動Google Place Picker需要花費時間

這裏是我已經上點擊一個按鈕的實現代碼:

PlacePicker.IntentBuilder builder = new PlacePicker.IntentBuilder(); 
try { 
    startActivityForResult(builder.build(ImageStickerActivity.this), PLACE_PICKER_REQUEST); 
} catch (GooglePlayServicesRepairableException e) { 
    e.printStackTrace(); 
} catch (GooglePlayServicesNotAvailableException e) { 
    e.printStackTrace(); 
} 
+0

分享您的代碼? – sumit

+0

@sumit檢查上面我更新我的文章。 –

+0

嗨,請幫我找到解決方案。謝謝.. –

回答

0

s.jain。我找到解決方案。其實MAP API密鑰存在問題。 如果限制超過了15000個用戶,則選擇器無法立即打開和關閉。 更改您的API KEy。

<meta-data 
      android:name="com.google.android.geo.API_KEY" 
      android:value="Your Api key..." /> 

加入這行代碼清單文件 讓我知道它的工作與否

+0

這不是一個api關鍵問題我的地方選擇工作正常,但唯一的問題是第一次發佈。謝謝 –

相關問題