gpt4 book ai didi

android - 谷歌地图错误, "Failed to find provider info for com.google.android.gsf.gservices"和 "Failed to find provider info for com.google.settings"

转载 作者:搜寻专家 更新时间:2023-11-01 08:04:47 24 4
gpt4 key购买 nike

我在将 Google map fragment 实现到我的 Android 应用程序时遇到了严重的问题。基本上,我遵循了谷歌网站上的所有说明。在获得 Google Maps API v2 key 、设置布局和 list 、导入 google-play-service 库并使用 google 的示例代码启动 GoogleMap 后,我发现模拟器不支持 Google Maps API v2,所以我上网并下载最新版本的 com.android.vending.apk 和 com.google.android.gms.apk,然后使用 adb install 将它们安装到我的模拟器中(与这里的情况相同:This app won't run unless you update Google Play Services (via Bazaar))。安装好之后,终于可以实现MapFragment的接口(interface)了。

但是当我在我的 Android 模拟器(OS 4.1.2;API 16)中运行它时, map 中的任何内容都不起作用。不断出现“无法找到 com.google.android.gsf.gservices 的提供商信息”的错误消息。我不确定它是否与无线提供商有关。有谁知道为什么它不断出现?任何建议将不胜感激!

为了解释之前的一些问题: map 显示正确。但是 map 上的按钮(“+”和“-”)根本不起作用。我也不能点击或拖动 map 。每当我单击任何按钮、在 map 上拖动或双击时,它都没有给我任何响应,而是在 LogCat 中显示错误消息“无法找到 com.google.android.gsf.gservices 的提供商信息”。

这是我在 AndroidManifest.xml 中的代码:

        <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.trackmyexercise"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="17" />

<permission
android:name="com.example.trackmyexercise.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />

<uses-permission android:name="com.example.trackmyexercise.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />

<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />

<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.trackmyexercise.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyANkR-VPI4zy5IpYGK2Z0T1omLq3C46rFE" />
</application>

</manifest>

这是我的布局代码:

    <?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".MainActivity" >

<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/hello_world" />

<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_above="@+id/recordsButton"
android:layout_alignParentTop="true" />

</RelativeLayout>

这是我的 MainActivity 代码:

    package com.example.trackmyexercise;

import android.os.Bundle;
import android.app.Activity;
import android.app.FragmentTransaction;
import android.view.Menu;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;

public class MainActivity extends Activity {
GoogleMap myMap;
MapFragment myMapFragment;

@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main_activity);

myMapFragment = MapFragment.newInstance();
FragmentTransaction fragmentTransaction = getFragmentManager()
.beginTransaction();
fragmentTransaction.add(R.id.map, myMapFragment);
fragmentTransaction.commit();

myMap = ((MapFragment) getFragmentManager().findFragmentById(R.id.map))
.getMap();
this.setUpMapIfNeeded();
myMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

private void setUpMapIfNeeded() {
if (myMap == null) {
myMap = ((MapFragment) getFragmentManager().findFragmentById(
R.id.map)).getMap();
if (myMap != null) {
}
}
}
}

最佳答案

错误就在这里 --> android:name="com.example.tackmyexercise.permission.MAPS_RECEIVE"

我想你的包名在这里不正确。

应该是 "com.example.trackmyexercise.permission.MAPS_RECEIVE"

关于android - 谷歌地图错误, "Failed to find provider info for com.google.android.gsf.gservices"和 "Failed to find provider info for com.google.settings",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15822836/

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