第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何在內(nèi)部函數(shù)中使用類變量?

如何在內(nèi)部函數(shù)中使用類變量?

至尊寶的傳說 2023-03-17 10:00:54
我想使用內(nèi)部函數(shù)內(nèi)部的類成員我嘗試將變量設(shè)置為全局變量,但出現(xiàn)錯(cuò)誤“預(yù)期的類或接口”@Override    public void onMapReady(GoogleMap googleMap) {        // Add a marker in current location,        // and move the map's camera to the same location.        //Location currentLocation = LocationServices.FusedLocationApi.getLastLocation(googleApiClient);        FusedLocationProviderClient fusedLocationProviderClient = LocationServices.getFusedLocationProviderClient(this);        if (ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_FINE_LOCATION) != PackageManager.PERMISSION_GRANTED && ActivityCompat.checkSelfPermission(this, Manifest.permission.ACCESS_COARSE_LOCATION) != PackageManager.PERMISSION_GRANTED) {            ActivityCompat.requestPermissions(this,                    new String[]{Manifest.permission.ACCESS_FINE_LOCATION, Manifest.permission.ACCESS_COARSE_LOCATION},                    MY_PERMISSIONS_REQUEST_ACCESS_LOCATION);        }else {            mFusedLocationClient.getLastLocation().addOnSuccessListener(new OnSuccessListener<Location>() {                @Override                public void onSuccess(Location location) {                    wayLongitude = location.getLongitude();                    wayLatitude = location.getLatitude();                    /*LatLng sydney = new LatLng(wayLatitude, wayLongitude);                    googleMap.addMarker(new MarkerOptions().position(sydney)                            .title("Marker in Sydney"));                    googleMap.moveCamera(CameraUpdateFactory.newLatLng(sydney));*/                }            });        }我希望能夠在“OnSuccess”函數(shù)中執(zhí)行“googleMap.addMarker”。我該怎么做?
查看完整描述

1 回答

?
UYOU

TA貢獻(xiàn)1878條經(jīng)驗(yàn) 獲得超4個(gè)贊

您需要將 googleMap 參數(shù)聲明為最終參數(shù):

public void onMapReady(final GoogleMap googleMap) { 
   //...
   }


查看完整回答
反對(duì) 回復(fù) 2023-03-17
  • 1 回答
  • 0 關(guān)注
  • 84 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)