且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

Android的 - 无法找到的图形页面为例com.google.settings供应商信息

更新时间:2023-01-19 08:57:45

的MapView例如不设置为默认的API密钥。所以,你必须将它。下面是一步一步:

The MapView example doesn't set API key by default. So you must set it. Here is step by step:

  1. 从系统中获取MD5

  1. Get MD5 from your system

%JAVA_HOME%\bin\keytool.exe -list -alias androiddebugkey -keystore "%userprofile%\.android\debug.keystore" -storepass android -keypass android

  • 获取API密钥通过粘贴生成MD5此页:
    http://$c$c.google.com/android/maps-api-signup.html

  • Get API key by pasting the generated MD5 to this page:
    http://code.google.com/android/maps-api-signup.html

    粘贴生成的API密钥为 {} your_project_root /res/layout/map.xml

    Paste the generated API key to {your_project_root}/res/layout/map.xml

    <com.google.android.maps.MapView
        android:id="@+id/myMapView"
        android:layout_width="fill_parent" 
        android:layout_height="fill_parent"
        android:enabled="true"
        android:clickable="true"
        android:apiKey="paste_generated_api_key_here"
    />
    

  • AndroidManifest.xml中,请确保您有如下因素标记到你的应用程序标签:

  • In AndroidManifest.xml, make sure that you have the folowing tag into your application tag:

    <uses-library android:name="com.google.android.maps" />
    

    也是如下因素标记到你的清单标签:

    <uses-permission android:name="android.permission.INTERNET" />
    

  • 刷新项目和运行

  • Refresh your project and run

    请注意:

    • 的keytool.exe的,debug.keystore和map.xml的路径可能会有所不同您的系统上。
    • 如果您发布的应用程序时,一定要注册其他API密钥。
    • 如果您没有设置API密钥正确,你的应用程序将无法在手机上也可能是错误消息的 ...已意外停止,请重试。 - 强行关闭

    更详细地http://d.android.com/guide/tutorials/views/hello-mapview.html