我在我的应用程序中使用Wikitude API 1.1作为AR查看器。 Wikitude的问题,如果我从手机启动后没有启动真正的Wikitude应用程序,每次启动自己的应用程序时都会出现NullPointerException。
所以我想如果我可以先启动我的应用程序并检查Wikitude是否已安装或正在运行。如果没有安装,请进入市场下载。如果它没有运行,那么我们应该直接将其运行到后台,以便我的应用程序不会失去焦点。
// Workaround for Wikitude
this.WIKITUDE_PACKAGE_NAME = "com.wikitude";
PackageManager pacMan = Poligamy.this.getPackageManager();
try {
PackageInfo pacInfo = pacMan.getPackageInfo(this.WIKITUDE_PACKAGE_NAME, pacMan.GET_SERVICES);
Log.i("CheckWKTD", "Wikitude is Installed");
ActivityManager aMan = (ActivityManager) this.getSystemService(ACTIVITY_SERVICE);
List<RunningAppProcessInfo> runningApps = aMan.getRunningAppProcesses();
int numberOfApps = runningApps.size();
for(int i=0; i<numberOfApps; i++) {
if(runningApps.get(i).processName.equals(this.WIKITUDE_PACKAGE_NAME)) {
this.WIKITUDE_RUNNING = 1;
Log.i("CheckWKTD", "Wikitude is Running");
}
}
if(this.WIKITUDE_RUNNING == 0) {
Log.i("CheckWKTD", "Wikitude is NOT Running");
/*final Intent wIntent = new Intent(Intent.ACTION_MAIN, null);
wIntent.addCategory(Intent.CATEGORY_LAUNCHER);
final ComponentName cn = new ComponentName("com.wikitude",
"com.mobilizy.wikitudepremium.initial.Splash");
wIntent.setComponent(cn);
wIntent.setFlags(Intent.FLAG_ACTIVITY_NO_USER_ACTION);
startActivityIfNeeded(wIntent, 0);*/
}
} catch (NameNotFoundException e) {
// TODO Auto-generated catch block
Log.i("CheckWKTD", "Wikitude is NOT Installed");
e.printStackTrace();
//finish();
}
我阻止评论的部分是启动Wikitude的意图。但我始终未能将Wikitude限制为背景。有帮助吗?谢谢。
最佳, 蒂斯达
答案 0 :(得分:1)
没有“直接运行到背景”这样的事情。
我会专注于修复你的NullPointerException
,联系WIKITUDE,并确定如果他们的应用尚未运行,你会得到它。