- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我知道这个问题经常被报告,最简单、经常推荐的解决方案是检查我如何引用 google play 服务库。然而,我非常有信心我已经完成了所有的工作。我确实因为这个错误而失眠了,所以任何建议都值得赞赏。提前致谢。
首先,这是我的堆栈跟踪:
02-06 15:32:12.577: E/AndroidRuntime(17070): java.lang.RuntimeException: Unable to start activity ComponentInfo{raj.wifiapp/raj.wifiapp.MainActivity}: android.view.InflateException: Binary XML file line #29: Error inflating class fragment
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2438)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2497)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.ActivityThread.access$900(ActivityThread.java:168)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1306)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.os.Handler.dispatchMessage(Handler.java:102)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.os.Looper.loop(Looper.java:146)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.ActivityThread.main(ActivityThread.java:5678)
02-06 15:32:12.577: E/AndroidRuntime(17070): at java.lang.reflect.Method.invokeNative(Native Method)
02-06 15:32:12.577: E/AndroidRuntime(17070): at java.lang.reflect.Method.invoke(Method.java:515)
02-06 15:32:12.577: E/AndroidRuntime(17070): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:1291)
02-06 15:32:12.577: E/AndroidRuntime(17070): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:1107)
02-06 15:32:12.577: E/AndroidRuntime(17070): at de.robv.android.xposed.XposedBridge.main(XposedBridge.java:132)
02-06 15:32:12.577: E/AndroidRuntime(17070): at dalvik.system.NativeStart.main(Native Method)
02-06 15:32:12.577: E/AndroidRuntime(17070): Caused by: android.view.InflateException: Binary XML file line #29: Error inflating class fragment
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:719)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.view.LayoutInflater.rInflate(LayoutInflater.java:761)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.view.LayoutInflater.inflate(LayoutInflater.java:498)
02-06 15:32:12.577: E/AndroidRuntime(17070): at de.robv.android.xposed.XposedBridge.invokeOriginalMethodNative(Native Method)
02-06 15:32:12.577: E/AndroidRuntime(17070): at de.robv.android.xposed.XposedBridge.handleHookedMethod(XposedBridge.java:631)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.view.LayoutInflater.inflate(Native Method)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.view.LayoutInflater.inflate(LayoutInflater.java:398)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.view.LayoutInflater.inflate(LayoutInflater.java:354)
02-06 15:32:12.577: E/AndroidRuntime(17070): at com.android.internal.policy.impl.PhoneWindow.setContentView(PhoneWindow.java:350)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.Activity.setContentView(Activity.java:2063)
02-06 15:32:12.577: E/AndroidRuntime(17070): at raj.wifiapp.MainActivity.onCreate(MainActivity.java:58)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.Activity.performCreate(Activity.java:5586)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java:1093)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2402)
02-06 15:32:12.577: E/AndroidRuntime(17070): ... 12 more
02-06 15:32:12.577: E/AndroidRuntime(17070): Caused by: android.app.Fragment$InstantiationException: Unable to instantiate fragment com.google.android.gms.maps.MapFragment: make sure class name exists, is public, and has an empty constructor that is public
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.Fragment.instantiate(Fragment.java:597)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.Fragment.instantiate(Fragment.java:561)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.Activity.onCreateView(Activity.java:5111)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.view.LayoutInflater.createViewFromTag(LayoutInflater.java:695)
02-06 15:32:12.577: E/AndroidRuntime(17070): ... 25 more
02-06 15:32:12.577: E/AndroidRuntime(17070): Caused by: java.lang.ClassNotFoundException: Didn't find class "com.google.android.gms.maps.MapFragment" on path: DexPathList[[zip file "/data/app/raj.wifiapp-8.apk"],nativeLibraryDirectories=[/data/app-lib/raj.wifiapp-8, /vendor/lib, /system/lib]]
02-06 15:32:12.577: E/AndroidRuntime(17070): at dalvik.system.BaseDexClassLoader.findClass(BaseDexClassLoader.java:67)
02-06 15:32:12.577: E/AndroidRuntime(17070): at java.lang.ClassLoader.loadClass(ClassLoader.java:497)
02-06 15:32:12.577: E/AndroidRuntime(17070): at java.lang.ClassLoader.loadClass(ClassLoader.java:457)
02-06 15:32:12.577: E/AndroidRuntime(17070): at android.app.Fragment.instantiate(Fragment.java:583)
02-06 15:32:12.577: E/AndroidRuntime(17070): ... 28 more
这是我的 list :
<?xml version="1.0" encoding="utf-8"?>
<manifest package="raj.wifiapp"
android:versionCode="1"
android:versionName="1.0" xmlns:android="http://schemas.android.com/apk/res/android">
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.CHANGE_WIFI_STATE" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-sdk
android:minSdkVersion="12"
android:targetSdkVersion="19" />
<uses-feature
android:glEsVersion="0x00020000"
android:required="true" />
<permission
android:name="raj.wifiapp.permission.MAPS_RECEIVE"
android:protectionLevel="signature" />
<uses-permission android:name="raj.wifiapp.permission.MAPS_RECEIVE" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="com.google.android.providers.gsf.permission.READ_GSERVICES" />
<!--
The following two permissions are not required to use
Google Maps Android API v2, but are recommended.
-->
<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" >
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<meta-data
android:name="com.google.android.maps.v2.API_KEY"
android:value="AIzaSyAaizOmaOj15uOjUmNA4OnowrOLv88_vKI" />
<activity
android:name="raj.wifiapp.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>
<activity android:name="raj.wifiapp.Tracker">
<category android:name="android.intent.category.Default" />
</activity>
</application>
</manifest>
这是我的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:map="http://schemas.android.com/apk/res-auto"
android:id="@+id/layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
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" >
<Button
android:id="@+id/button1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="14dp"
android:text="Switch views" />
<Button
android:id="@+id/btn"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="17dp"
android:text="Scan" />
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.MapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent" />
</LinearLayout>
我的声誉低于 10,所以我将发布我的构建路径的屏幕截图链接。
i.stack.imgur.com 斜线 e9F9d.png
i.stack.imgur.com 斜线 wESAc.png
i.stack.imgur.com 斜线 Vb5Vc.png
最佳答案
发生此错误的原因是您尚未在应用项目中添加 Google Play 服务库。请关注以下tutorial在您的应用中添加 Google Play 服务以使 Google map 正常工作。
关于java - Android Google Play 服务错误 : didn't find class com. google.android.gms.maps.mapfragment 路径 dexpathlist,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28377045/
我的设备有一项需要 24/7 全天候工作的前台服务。有时,当 gms 更新发生时,它会终止所有 gms 服务并重新启动它们。 我的服务也在使用 gms(firbase AuthService),所以它
我的应用程序的 OS 4.x 版本中止找不到类 .NoClassDefFoundError: com.google.android.gms.internal.zzno。当手机使用更高版本的 Googl
我是新的 Android 设备,并且对支付部分更加陌生,我正在通过此链接将 Gpay 实现到我的应用程序中 https://developers.google.com/pay/api/android/
我有一个已发布 Alpha 版本的应用。 我在我的应用程序中使用 Places SDK for Android、Mobile Crash Reporting API、Firebase Services
实际上,我正在尝试制作一个具有免费和付费风格的应用程序。当我使用简单的 findViewById 方法进行绑定(bind)时,它工作正常。但是当我尝试添加 butterknife 时,我拼命坚持使用
我尝试在更新 android studio 3.2.1 后修复我的应用程序的一些功能。但似乎我得到了更多的错误。当我尝试重建应用程序时。我收到了这个信使: Error: Type com.google
我试着在Stackoverflow上搜索,并尝试了其他类似性质的Stackoverflow问题中建议的解决方案,比如这个和那个,但我仍然得到以下错误插件[id:‘com.google.gms.goog
可能已经在其他一些上下文和依赖项中询问了这个问题。 但即使花了一整天,我仍然无法弄清楚这一点。 所以下面我将完整的错误日志与我的项目级 Gradle 文件和应用级 Gradle 文件一起粘贴。 尝试运
我将 com.google.android.gms:play-services-location 更新为 9.0.2 到 9.4.0 一切正常但无法解析 PlaceAutocompleteFragme
在 'com.google.android.gms:play-services-location:9.4.0' 无法导入导入com.google.android.gms.location.places
我将 com.google.android.gms:play-services-ads 更新为 15.0.2 并将类路径 com.google.gms:google-services: 更新为 3.3
我之前问过如何显示不同的markerInfoWindow in this question , 现在,当用户单击左角的按钮时,我正在尝试删除特定的标记。 首先在 .h 文件中: NSMutableAr
如何通过这种方法获得经纬度? - (void)mapView:(GMSMapView )mapView didEndDraggingMarker:(GMSMarker )marker; 我想在调用 d
我正在为我的 iOS 应用程序使用 Google Maps SDK。 我将其配置为当点击 GMSMarker 时,它会显示它的标题。一切正常。 我想对 GMSPolyline 做同样的事情,但不知道怎
我正在尝试使用 Google Play 游戏服务 API 为成就绘制图标。 然而,它正在默默地失败。 方法/问题: 图片的URI成功获取,存在且有效。 我使用 ImageManager.loadIma
我收到错误消息是因为我在尝试使用 Google 的应用程序索引库的同时还导入了一个库,该库将旧版本的 android gms 库用于不同的组件 - 来自 Google 的 cast 库玩服务。错误状态
Google 跟踪代码管理器可以在没有 Google 移动服务或 Firebase Analytics 的设备上运行吗? 例如:华为手机没有谷歌服务,只有华为服务在运行。 最佳答案 据我所知,Goog
如何同时拥有 Google 移动服务和 华为 应用程序中的移动服务? 就是这样 华为 已丢失超过 的许可证手机短信 ,看来我们需要替换所有手机短信 的应用程序中使用的服务华为 提供的。什么是“最佳实践
我确实如此 - 和许多开发人员一样,对臭名昭著的 android 65000 方法限制有问题。我已经对我的应用程序进行了多重索引,但我真的很想以某种方式使其更轻。 这是我的应用程序方法的图表(使用 d
我正在使用 JGroups 4.0.15.Final 来实现集群应用程序。当我启动两个节点时一切正常,它们连接并开始工作。但是当我杀死/重新启动一个节点时,它们将不再连接在一起。 注意:它们是我应用程
我是一名优秀的程序员,十分优秀!