- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
friend 们请帮帮我.. 我有一个显示谷歌地图的简单应用程序..当我运行该应用程序时出现错误“不幸的是该应用程序已停止”
log cat 中的错误是:Failed to inflateandroid.view.inflateException.Binary xml 文件第 2 行:在 android view.LayoutInflater.createViewFromTag(LayoutInflater.java.713) 中膨胀类 fragment 时出错
我已经尝试了 stackoverflow 和许多其他网站提供的许多答案。但在所有这些情况下,我都会遇到同样的错误。
我的代码:
activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/mapview"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
主 Activity .java
package info.androidhive.googlemapsv2;
import android.os.Bundle;
import android.support.v4.app.FragmentActivity;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapFragment;
public class MainActivity extends FragmentActivity {
private GoogleMap map;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
map = ((MapFragment) getFragmentManager()
.findFragmentById(R.id.mapview)).getMap();
}
}
list
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="info.androidhive.googlemapsv2"
android:versionCode="1"
android:versionName="1.0" >
<permission
android:name="info.androidhive.googlemapsv2.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="info.androidhive.googlemapsv2.permission.MAPS_RECEIVE" />
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Required to show current location -->
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<!-- Required OpenGL ES 2.0. for Maps V2 -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<!-- Requires OpenGL ES version 2 -->
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity
android:name="info.androidhive.googlemapsv2.MainActivity"
android:label="@string/app_name"
android:theme="@style/AppBaseTheme">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Goolge API Key -->
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyBZMlkOv4sj-M5JO9p6wksdax4TEjDVLgo" />
</application>
</manifest>
堆栈跟踪:
09-23 04:46:45.287: D/AndroidRuntime(2653): Shutting down VM
09-23 04:46:45.287: W/dalvikvm(2653): threadid=1: thread exiting with uncaught exception (group=0xb1d8db20)
09-23 04:46:45.287: E/AndroidRuntime(2653): FATAL EXCEPTION: main
09-23 04:46:45.287: E/AndroidRuntime(2653): Process: info.androidhive.googlemapsv2, PID: 2653
09-23 04:46:45.287: E/AndroidRuntime(2653): java.lang.RuntimeException: Unable to start activity ComponentInfo{info.androidhive.googlemapsv2/info.androidhive.googlemapsv2.MainActivity}: android.view.InflateException: Binary XML file line #6: Error inflating class fragment
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2195)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2245)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.ActivityThread.access$800(ActivityThread.java:135)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1196)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.os.Handler.dispatchMessage(Handler.java:102)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.os.Looper.loop(Looper.java:136)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.ActivityThread.main(ActivityThread.java:5017)
09-23 04:46:45.287: E/AndroidRuntime(2653): at java.lang.reflect.Method.invokeNative(Native Method)
09-23 04:46:45.287: E/AndroidRuntime(2653): at java.lang.reflect.Method.invoke(Method.java:515)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:779)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:595)
09-23 04:46:45.287: E/AndroidRuntime(2653): at dalvik.system.NativeStart.main(Native Method)
09-23 04:46:45.287: E/AndroidRuntime(2653): Caused by: android.view.InflateException: Binary XML file line #6: Error inflating class fragment
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:713)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.view.LayoutInflater.rInflate(LayoutInflater.java:755)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.view.LayoutInflater.inflate(LayoutInflater.java:492)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.view.LayoutInflater.inflate(LayoutInflater.java:397)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.view.LayoutInflater.inflate(LayoutInflater.java:353)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:290)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.Activity.setContentView(Activity.java:1929)
09-23 04:46:45.287: E/AndroidRuntime(2653): at info.androidhive.googlemapsv2.MainActivity.onCreate(MainActivity.java:17)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.Activity.performCreate(Activity.java:5231)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1087)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2159)
09-23 04:46:45.287: E/AndroidRuntime(2653): ... 11 more
09-23 04:46:45.287: E/AndroidRuntime(2653): Caused by: java.lang.IllegalStateException: The meta-data tag in your app's AndroidManifest.xml does not have the right value. Expected 5089000 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" />
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.common.GooglePlayServicesUtil.A(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.common.GooglePlayServicesUtil.isGooglePlayServicesAvailable(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.maps.internal.u.I(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.maps.internal.u.H(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.maps.MapsInitializer.initialize(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.maps.SupportMapFragment$b.jz(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.maps.SupportMapFragment$b.a(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.dynamic.a.a(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.dynamic.a.onInflate(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at com.google.android.gms.maps.SupportMapFragment.onInflate(Unknown Source)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.support.v4.app.FragmentActivity.onCreateView(FragmentActivity.java:291)
09-23 04:46:45.287: E/AndroidRuntime(2653): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:685)
09-23 04:46:45.287: E/AndroidRuntime(2653): ... 21 more
最佳答案
像这样将您的 map fragment 放在 RelativeLayout 或 LinearLayout 中;
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/mapview"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</RelativeLayout>
然后改变
map = ((MapFragment) getFragmentManager()
.findFragmentById(R.id.mapview)).getMap();
有了这个;
setUpMap();
setUpMap() 函数定义将是;
private void setUpMap(){
if (map != null) {
return;
}
map=((SupportMapFragment) getSupportFragmentManager().findFragmentById(R.id.mapview)).getMap();
if (map == null) {
return;
}
}
编辑
哦,你也很想念
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
在您的 list 文件中。检查this link
关于android - 无法扩充 android.view.inflateException.Binary xml 文件行 #2,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25990445/
我正在尝试填充一个 ListView ,其中每一行都有 2 个 TextView 和一个按钮。我想我几乎让它正常工作,但现在 ListView 只显示 ListView 中的 1 个项目并忽略其他数据
是否可以通过向 DOM 元素添加新属性来扩充普通 JavaScript 对象?例如,我们能否为按钮或输入添加一个新属性,比如一个指示用户最后一次点击它的时间的值? 最佳答案 是的。有时您会发现它被描述
我的要求是能够快速检索树中的最小值和最大值。 (注意,不是最小/最大 key ,而是卫星数据的最小/最大)。 树将基于字符串作为键,每个节点将存储一个整数。这个整数必然会改变并不断更新。键保持固定 我
我正在浏览 Introduction to Algorithms by Cormen第 14 章(增强数据结构),他在其中谈论区间树。下面是他提到的区间树背后的设计方法。 Step 1: Underl
我知道如何为每个对象添加新方法 - 通过扩充对象的原型(prototype): Object.prototype.foo = function() { }; 但是,是否可以只为 DOM 元素节点定义
我正在开发一个已经在 Kaggle 实现的项目这与图像分类有关。我总共有 6 个类别要预测,分别是愤怒、快乐、悲伤等。我已经实现了 CNN 模型,目前仅使用 4 个类别(图像数量最多的类别),但我的模
在我的 NativeScript 项目中,我想包含来自 Android 支持库的 RecyclerView。我将依赖项包含在 app/App_Resources/Android/app.gradle
我正在创建一个使用 twitter api 的应用程序。 我正在检索推文并向用户展示。 在某些情况下,推文有链接,如下图所示。 阅读 twitter 的 api 文档,我发现了一个叫做“增强 URL
我正在阅读JavaScript the good parts这本书,看到了以下代码: Function.prototype.method = function (name, func) { this
我有一个按钮 View 。我是否必须将它包装在 Layout 中以便能够在 Activity 中膨胀它的实例? View 是否有类似的模式,以便我可以声明性地设置一次,然后创建它的多个实例? 谢谢。
我在数据库的 BLOB 字段中有一个 zip 流。我正在尝试给它充气,但到目前为止还做不到。 问题是这个流是一个压缩流,而不是一个完整的压缩文件。 如果清楚的话,这将是对其进行膨胀的 Java 代码:
我是一名优秀的程序员,十分优秀!