我反编译旧的Android库,并希望制作一个更新的新版本。 反编译后,我有这样的行:
WKInterfaceController
我在Intent notificationIntent = pm.getLaunchIntentForPackage(context.getPackageName());
notificationIntent.setFlags(603979776);
方法上遇到错误 - 它需要是setFlags
个标记之一。
那么,我需要使用什么而不是Intent
?
答案 0 :(得分:1)
603979776为0x24000000,因此FLAG_ACTIVITY_CLEAR_TOP + FLAG_ACTIVITY_SINGLE_TOP(0x4000000 + 0x20000000)。