错误而在谷歌地图片段充气XML(error while inflating XML in Googl

2019-08-05 06:46发布

尝试使用一个片段显示谷歌地图。 用下面的页面作为一个教程。

我得到了异常“错误膨化类片段”。

1)进口的jar谷歌播放,services.jar

2)下载并配置了谷歌播放服务SDK。

3)得到了最新版API密钥。

4)新增许可com.google.android.providers.gsf.permission.READ_GSERVICES在清单中。

5)使用mindsdk = 8和目标= 16。

用于参考, Androidmanifest.xml

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

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

<permission
android:name="com.example.com.mapsdemo.permission.MAPS_RECEIVE"
android:protectionLevel="signature"/>
<uses-permission android:name="com.example.com.mapsdemo.permission.MAPS_RECEIVE"/>
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES"/>

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="16" />

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name="com.example.com.mapsdemo.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="AIzaSyDXPsxWF634gd907NzZKkRkNS0oH9IPWgk"/>


</application>

MainActivity.java

package com.example.com.mapsdemo;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;
import android.widget.Toast;

import com.google.android.gms.common.GooglePlayServicesUtil;


//API : AIzaSyDXPsxWF634gd907NzZKkRkNS0oH9IPWgk

public class MainActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);


    try {
    setContentView(R.layout.activity_main);
    } catch (Exception e) {

    Toast.makeText(this, e.toString(), Toast.LENGTH_LONG).show();
    }



}

@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.activity_main, menu);
    return true;
}

}

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
 <fragment xmlns:android="http://schemas.android.com/apk/res/android"
 android:id="@+id/map"
 android:layout_width="match_parent"
  android:layout_height="match_parent"
  class="com.google.android.gms.maps.MapFragment"/>

logcat的:

01-02 18:31:21.477: I/jdwp(11473): Ignoring second debugger -- accepting and dropping
01-02 18:31:24.493: D/libEGL(11871): loaded /vendor/lib/egl/libEGL_POWERVR_SGX540_120.so
01-02 18:31:24.493: D/libEGL(11871): loaded /vendor/lib/egl/libGLESv1_CM_POWERVR_SGX540_120.so
01-02 18:31:24.509: D/libEGL(11871): loaded /vendor/lib/egl/libGLESv2_POWERVR_SGX540_120.so
01-02 18:31:24.602: D/OpenGLRenderer(11871): Enabling debug mode 0

Answer 1:

Error inflating class fragment其源代码是做- -但正在尝试在较旧版本的Android上运行它时,你要使用本机API等级11版本的片段通常是。 为了使用<fragment>上API级别10和下面,就必须使用片段的Android的支持程序包的反向移植:

  • Android的支持包添加到您的项目
  • 继承FragmentActivity而不是Activity
  • 使用SupportMapFragment而不是MapFragment
  • 改变任何东西,现在有所不同基于这种反向移植

或者,您可以设置android:minSdkVersion到11或更高版本,并运行当前的代码,仅仅只在较新设备。

你可以阅读更多有关Android的支持包的文档 。



Answer 2:

我得到同样的错误。 请您在下面的方式真实device.and atatch谷歌Play服务库运行。 project_properties-> android->库再加入谷歌玩的lib有..

再次使libs文件夹复制支持Android v4.jar和google_play_services.jar,然后右击每个文件,并选择建立以道路..

检查您的API密钥是com.example.com.mapsdemo package..for每包新的API密钥要生成..

并使用SupportMapFragment而不是在MapFragment在XML文件中。

这解决了我的问题。

希望这会解决您的问题。



Answer 3:

很多关于这个问题的问题,TWI天后,我的解决方法很简单:你必须编译使用项目构建目标谷歌API项目。 我觉得自己太愚蠢了。



文章来源: error while inflating XML in Google maps fragment