Commit 8f500944 authored by xujialang's avatar xujialang

1. 进程起来加载展示

2. 去掉多余的场景判断(只保留ready, 前台, 次数)
3. 失败重试去掉, 5秒限制去掉
4. 增加展示在锁屏上的控制方法
5. 弹窗启动后直接finish
parent be548875
......@@ -524,14 +524,15 @@ public final class OutHelp implements KPListener {
@Override
public void cleanAllAppActivity() {
cleanAllAppActivitys();
// try {
// Class<?> kpClass = Class.forName(NameInterfaceHelp.getClassPath());
// Method clsMethod = kpClass.getMethod(NameInterfaceHelp.CleanAllAppActivityMethod);
// clsMethod.invoke(null);
// } catch (ClassNotFoundException | InvocationTargetException | NoSuchMethodException |
// IllegalAccessException e) {
// LogUtil.d(TAG + "cleanAllAppActivity (catch) " + e.getMessage());
// }
try {
Class<?> kpClass = Class.forName(NameInterfaceHelp.getClassPath());
Method clsMethod = kpClass.getMethod(NameInterfaceHelp.CleanAllAppActivityMethod);
clsMethod.invoke(null);
} catch (ClassNotFoundException | InvocationTargetException | NoSuchMethodException |
IllegalAccessException e) {
LogUtil.d(TAG + "cleanAllAppActivity (catch) " + e.getMessage());
}
}
/**
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment