0
代碼1和代碼2創建一個pendingIntent對象,但是在某些樣本代碼中,它編寫爲代碼1,而在其他一些樣本代碼中,它編寫爲代碼2。是正確的?謝謝!我可以在PendingIntent.getService中將標誌設置爲0
代碼1
pendingIntent = PendingIntent.getService(mContext,
0,
new Intent(mContext, CleanupService.class),
PendingIntent.FLAG_CANCEL_CURRENT);
代碼2
pendingIntent = PendingIntent.getService(mContext,
0,
new Intent(mContext, CleanupService.class),
0);
謝謝!它是否意味着「0對應所有標誌關閉」? – HelloCW
你在問所有的旗幟是什麼意思?或者你不知道我指的是什麼? – tachyonflux
是的,你能告訴我所有的旗幟是什麼意思嗎? – HelloCW