繁体   English   中英

Android - 错误膨胀类片段(试图让谷歌地图api v2工作)

[英]Android - Error inflating class fragment (trying to get google maps api v2 to work)

我到处寻找这个错误的解决方案,但我似乎无法找到适合我的解决方案。 每次我运行程序它崩溃时,问题似乎都在XML文件的fragment标签中。

非常感谢您可以查看代码。

<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" >

<fragment
    android:id="@+id/map"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    class="com.google.android.gms.maps.MapFragment" />
</RelativeLayout>

主要活动:

package jondadi.atm;

import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import android.view.Menu;

public class MainActivity extends FragmentActivity {

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

}

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

} 

表现:

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

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

<permission
   android:name="jondadi.atm.maps.permission.MAPS_RECEIVE"
   android:protectionLevel="signature" />

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

<uses-permission android:name="jondadi.atm.maps.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-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />



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

</application>

</manifest>

Logcat错误(日志要长得多,如果你想要它,请告诉我):

11-06 02:29:02.165: E/AndroidRuntime(8238): FATAL EXCEPTION: main
11-06 02:29:02.165: E/AndroidRuntime(8238): java.lang.RuntimeException: Unable to start activity ComponentInfo{jondadi.atm/jondadi.atm.MainActivity}: android.view.InflateException: Binary XML file line #12: Error inflating class fragment
11-06 02:29:02.165: E/AndroidRuntime(8238):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2247)

11-06 02:29:02.165: E/AndroidRuntime(8238): Caused by: java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value.  Expected 4030500 but found 0.  You must have the following declaration within the <application> element:     <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />
11-06 02:29:02.165: E/AndroidRuntime(8238): Caused by: java.lang.IllegalStateException: 

你错过了:

<meta-data
        android:name="com.google.android.gms.version"
        android:value="@integer/google_play_services_version" />

在application元素中。 这将解决:

Caused by: java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value.  Expected 4030500 but found 0.  You must have the following declaration within the <application> element:     <meta-data android:name="com.google.android.gms.version" android:value="@integer/google_play_services_version" />

我不太确定您的代码,但您可以尝试在MainActivity扩展Activity而不是FragmentActivity

此外,我还没有用过:

<permission
android:name="jondadi.atm.maps.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />

我不知道它是什么。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM