写到手势识别的时候.
GestureOverlayView 根据自动提示,写成:
<GestureOverlayView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.0"
android:id="@+id/gesture"
/>
运行程序报错.
android.view.InflateException: Binary XML file line #7: Error inflating class GestureOverlayView
但凡有android.view.InflateException: Binary XML file line xxxx
这种错误,就开始检查XML是否有书写错误,可能错误提示还不够完善...找得头痛.
最后视图修改为:
<android.gesture.GestureOverlayView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1.0"
android:id="@+id/gesture"
/>
问题解决.
分享到:
相关推荐
另外又由于官网的文档漏洞百出 一直报:java lang RuntimeException:Unable to start activity ComponeInfo{com }:android view InflateException:Binary XML file line #8:Erroe inflating class org apache ...
android.view.InflateException: Binary XML file line #7: Error inflating class fragment异常 ( 2 ) android.support.v4.app.Fragment:可以兼容到1.6的版本,不能使用标签,需要在程序中通过add或者replace的...
Unable to start activity ComponentInfo{com.deyi.deyijia/com.deyi.deyijia.activity.PinterestActivity}: android.view.InflateException: Binary XML file line #157: Error inflating class android.support....
Unable to start activity ComponentInfo{com.deyi.deyijia/com.deyi.deyijia.activity.PinterestActivity}: android.view.InflateException: Binary XML file line #157: Error inflating class android.support....
google map v2中遇见xml里frment找不到问题 可以引入这个jar包就可以了 如Caused by: android.view.InflateException: Binary XML file line #3: Error inflating class fragment
android.view.InflateException: Binary XML file line #13: Error inflating class at android.view.LayoutInflater.createView(LayoutInflater.java:613) at com.android.internal.policy.impl.P
在layout文件中使用自定义的View时遇到如下错误: 12-11 17:28:26.962: ERROR/AndroidRuntime(17121): android.view.InflateException: Binary XML file line #6: Error inflating class fish.apps.ipcall.controls...
Java.lang.RuntimeException: Unable to start activity ComponentInfo{cm.test/cm.test.TestsActivity}:Android.view.InflateException: Binary XML file line #8: Error inflating class com.test.testview ...
本文将深入探讨如何解决"android layout XML解析错误"的问题,以及提供一些通用的XML解析方法。 首先,让我们来看看标题和描述中提到的具体错误:"org.xmlpull.v1.XmlPullParserException: PI must not start with ...
其次,`android.view.InflateException: Binary XML file line #279: Error inflating class <unknown>` 异常通常出现在布局文件解析时,无法找到或实例化指定的视图类。这可能是因为以下原因: 1. **拼写错误或类名...
}}catch (ClassNotFoundException e) {throw new InflateException(attrs.getPositionDescription()+": Error inflating class "+viewClassName,e);}Constructor<?> constructor = clazz.getConstructor...
<menu xmlns:android="http://schemas.android.com/apk/res/android"> android:id="@+id/action_item1" android:title="Item 1"/> android:id="@+id/action_item2" android:title="Item 2"/> ``` 2. **...
本文实例讲述了Android编程实现自定义系统菜单背景的方法。分享给大家供大家参考,具体如下: 不多说,上图,见代码。 package lab.sodino....import android.view.InflateException; import android.view.Lay
= XmlPullParser.START_TAG) { throw new InflateException(parser.getPositionDescription() + ": No start tag found!"); } String name = parser.getName(); //2.找到根节点后,判断根节点的类型 if (name.equals...
异常关键字`android.view.InflateException`通常与布局文件解析有关,这可能是由于尝试加载的XML布局文件过大或者包含了过于复杂的视图层级结构,导致解析过程超过了 Binder 的传输限制。 引发`...
<shape xmlns:android="http://schemas.android.com/apk/res/android"> <solid android:color="@color/custom_menu_color" /> <!-- 或者可以使用渐变、边框等其他属性 --> ``` 接下来,我们需要在`...