Background Execution Limits 1. 大部份在 AndroidMenifast 宣告的 Implicit BroadcastReceiver 不會被呼叫,但有些還是可以 work,如以下: BOOT_COMPL ETELOCALE_CHANGED USB_DEVICE_ATTACHED Explicit BroadcastReceiver 沒什麼改變,還是可正常發送。Runtime Implicit BroadcastReceiver 也沒什麼改變。 2. Service 也有些改變,如以下: Run minimally after the app has been background (這要開發者怎麼決定哪些是一定要在背景執行的阿…) App 在背景時,不能使用 startService() 跟 PendingIntent Foreground service 不變,多了新 API 可以使用,NotificationManager#startServiceInForeground 3. When you app enter cache state with no active component, weak locks be automatically released. 4. Location Background Location Limited updates, few times per hour Passive Location Unchanged (這句在說啥?) 有其他 app 在前景使用 Location update,你的 background location 更新的頻率會跟前景一樣 (所以重點就是要有 app 在前景要 location 的資料!) Foreground Location 沒改變 Settings.Secure.ANDROID_ID 其實這個我看不懂他在說什麼,之前完全沒碰過… pre-O:每個 app 的 ID 都一樣 post-O:每個 app 都會有個獨立的 ID (影片說由 Google Play Service 管嗎?) Account access 不能用 GET_ACCOUNTS 這個 permission
Android dialog 預設都會有一個背景底色,要怎麼把它去掉呢?其實直接改 AlertDialog 的 style 就可以了,但我改好久…以下的範例是使用了 Support v7 AppCompat 的 theme,其他 theme 我不知道可不可以,有興趣的人可以試試看。 <style name="TransparentDialog" parent="@style/Base.Theme.AppCompat.Dialog"> <item name="android:windowFrame">@null</item> <item name="android:windowBackground">@android:color/transparent</item> <item name="android:windowIsFloating">true</item> <item name="android:windowTitleStyle">@null</item> <item name="android:background">@android:color/transparent</item> <item name="android:windowNoTitle">true</item> <item name="android:alertDialogStyle">@style/TransparentDialog.Color</item> </style> <style name="TransparentDialog.Color" parent="@style/Base.Theme.AppCompat.Dialog"> <item name="androi