gpt4 book ai didi

android - 找不到类 'com.google.android.gms.location.internal.ParcelableGeofence

转载 作者:太空狗 更新时间:2023-10-29 13:23:49 27 4
gpt4 key购买 nike

我正在尝试在我的应用程序中显示 map 。我正在使用这段代码

map.setMyLocationEnabled(true);

//get locationManager object from System Service LOCATION_SERVICE
LocationManager locationManager = (LocationManager) getSystemService(LOCATION_SERVICE);

//create a criteria object to retrieve provider
Criteria criteria = new Criteria();

//get the name of the best provider
String provider = locationManager.getBestProvider(criteria, true);

//get current location
Location myLocation = locationManager.getLastKnownLocation(provider);

//set map type
map.setMapType(GoogleMap.MAP_TYPE_NORMAL);

//get latitude and longitude of the current location
double latitude = myLocation.getLatitude();
double longitude = myLocation.getLongitude();

//create LatLng object for the current location
LatLng latLng = new LatLng(latitude, longitude);

//show the current location in Google Map
map.moveCamera(CameraUpdateFactory.newLatLng(latLng));

map.animateCamera(CameraUpdateFactory.newLatLngZoom(latLng, 10));
//zoom in the Google Map
map.animateCamera(CameraUpdateFactory.zoomTo(13));

它正在工作,它显示它,它显示我在其上创建的多边形,一切正常。但是在 logcat 中,我总是收到这个错误:

Could not find class 'com.google.android.gms.location.internal.ParcelableGeofence', referenced from method glt.a

我不知道如何修复它。有谁知道是什么原因造成的吗?

最佳答案

出现此错误的原因之一是,如果您更新了 eclipse,那么您的 API key 就会更改。

要获取 SHA1 指纹,您必须点击此链接,[ getting Google Maps API debug key with windows command prompt

通过 SHA1 指纹,您可以从 Google 控制台站点获取 API key 。[ http://www.technicaladvices.com/2012/03/19/generating-keys-for-google-maps-api-using-the-apis-console/]

将该 API key 粘贴到 list 文件中

 <meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="your api key" />

希望对您有所帮助。

关于android - 找不到类 'com.google.android.gms.location.internal.ParcelableGeofence,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24575631/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com