尝试使用片段显示Google地图。使用以下page作为教程。
我收到异常“错误膨胀类片段”。
1)导入jar google-play-services.jar
2)下载并配置了google play services SDK。
3)获得了最新的v2 API密钥。
4)在清单中添加了com.google.android.providers.gsf.permission.READ_GSERVICES权限。
5)使用mindsdk = 8和target = 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
答案 0 :(得分:4)
Error inflating class fragment
通常在您尝试使用源代码正在执行的本机API Level 11版本的片段时出现,但尝试在较旧版本的Android上运行它。要在API级别10及更低版本上使用<fragment>
,您必须使用Android支持包的片段后端:
FragmentActivity
而非Activity
SupportMapFragment
而不是MapFragment
或者,您可以将android:minSdkVersion
设置为11或更高,并运行当前代码,仅适用于较新的设备。
您可以在the documentation中了解有关Android支持包的更多信息。
答案 1 :(得分:1)
我得到同样的错误。检查您是否通过以下方式在真实设备和atatch google play服务库上运行它。 project_properties-&GT; android-&GT;然后图书馆在那里添加google play lib ..
再次使libs文件夹复制android支持v4.jar和google_play_services.jar,然后右键单击每个文件并选择build to path ..
还要检查你的api密钥是否为com.example.com.mapsdemo package ..对于每个包都要生成新的api密钥..
并在XML文件中的MapFragment上使用SupportMapFragment。
这解决了我的问题。希望这可以解决您的问题。
答案 2 :(得分:0)
关于这个问题的很多问题,两天后,我的解决方案很简单:你必须使用Project Build Target Google API编译你的项目。 我觉得这很愚蠢。