是否有另一種連接Google API客戶端的方式?使用enableAutoManage()中的片段
我用自動完成的地方,我一定要使用此代碼一些地方在MYFRAGMENT
mGoogleApiClient = new GoogleApiClient.Builder(MainActivity.this)
.addApi(Places.GEO_DATA_API)
.enableAutoManage(this, GOOGLE_API_CLIENT_ID, this)
.addConnectionCallbacks(this).build();
我與
enableAutoManage(this, GOOGLE_API_CLIENT_ID, this)
.addConnectionCallbacks(this).build();
我不能處理它,因爲當我更換this
問題getActivity()
我有很多鑄造問題
感謝您的幫助和抱歉,如果這個問題很愚蠢。
其中 「這個」 你更換?只是第一個?你的活動是否是FragmentActivity? –
enableAutoManage()中的第一個「this」我有一個錯誤,我通過捕獲到FragmentActivity修復它,但是當它運行應用程序時,它停止了 –
沒有我的MainActivity不是FragmentActivity –