预先感谢您的任何帮助。
我正在为 android 使用新的构建系统(gradle)。从 Eclipse 构建时,应用程序功能正常。但是,当使用 gradle 构建时,我遇到了引用库的问题。
启动图书馆的第一个活动时,它工作正常。但是,一旦“加载”活动完成,我的应用程序在尝试启动下一个活动时崩溃。
在 logcat 我看到:
RuntimeException: Unable to start activity ComponentInfo____________ android.view.InflateException: Binary XML file line #14: Error inflating class__________
...
引起:java.lang.ClassNotFoundException
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
tools:context=".Player" >
<FrameLayout
android:id="@+id/id"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:visibility="gone" >
<com.my.class.name
android:id="@+id/id2"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
</FrameLayout>