我是新来的,我刚学会了如何编写Android应用程序。
现在,我想用Droid Fu库制作一个应用程序 (这是一个很好的图书馆,但缺乏文档和示例)。我的handleApplicationClosing函数遇到问题。当我按下我的应用程序上的后退按钮时出现问题,这意味着应用程序关闭(因为我只尝试使用droid fu测试应用程序只有1个活动)。
在多次尝试调试程序后,我发现当我的代码到达此函数时发生错误:
static void handleApplicationClosing(final Context context, int keyCode) {
if (keyCode == KeyEvent.KEYCODE_BACK) {
ActivityManager am = (ActivityManager) context
.getSystemService(Context.ACTIVITY_SERVICE);
List<RunningTaskInfo> tasks = am.getRunningTasks(2);
RunningTaskInfo currentTask = tasks.get(0);
RunningTaskInfo nextTask = tasks.get(1);
// if we're looking at this application's base/launcher Activity,
// and the next task is the Android home screen, then we know we're
// about to close the app
if (currentTask.topActivity.equals(currentTask.baseActivity)
&& nextTask.baseActivity.getPackageName().startsWith("com.android.launcher")) {
DroidFuApplication application = (DroidFuApplication) context
.getApplicationContext();
application.onClose();
}
}
}
在这一行:
DroidFuApplication application = (DroidFuApplication) context
.getApplicationContext();
错误代码是:
java.lang Class ClassCastException
这是什么意思?
答案 0 :(得分:1)
我从未使用DroidFu
,但请确保您已为AndrodiManifest.xml
添加了下一行:
<manifest ...>
...
<application .... android:name="com.github.droidfu.DroidFuApplication">
...
</application>
...
</manifest>