0
我如何實現startforeground的貼子這個線程Android - implementing startForeground for a service?如何在不使用已棄用的Notification類的情況下實現startforeground?
而這個作品也,但通知提到過時,如何用新的實現這個?請幫忙
我如何實現startforeground的貼子這個線程Android - implementing startForeground for a service?如何在不使用已棄用的Notification類的情況下實現startforeground?
而這個作品也,但通知提到過時,如何用新的實現這個?請幫忙
我剛碰到同樣的問題。解決方案雖然很簡單。
使用NotificationCompat.Builder
來創建通知,因爲只有Notification構造函數被棄用而不是整個類。
實施例:
NotificationCompat.Builder builder = new NotificationCompat
.Builder(getApplicationContext());
builder.setContentTitle("Updating...");
builder.setSmallIcon(R.drawable.ic_action_search);
startForeground(NOTIFICATION_ID, builder.build());