gpt4 book ai didi

java - 显示通知时极度滞后

转载 作者:太空狗 更新时间:2023-10-29 13:15:55 26 4
gpt4 key购买 nike

原始问题:

这是我第一次尝试实现服务和通知,所以如果我的实现概念完全错误,请多多包涵。


问题:

我实现了一个在给定时间间隔内重复显示通知的服务。 每当显示通知时,通知都会正确显示,但我的手机开始非常滞后。不仅仅是我的应用程序出现滞后,它确实是整个手机,运行 Android 的 Nexus 5X 6.0.1。它几乎变得无法使用。


实现:

启动服务的

MainActivity:

public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
...
Intent intent = new Intent(this, MyService.class);
startService(intent);
}

MyService 显示通知

public class MyService extends Service {
private static long UPDATE_INTERVAL = 1 * 10 * 1000;

@Override
public int onStartCommand(Intent intent, int flags, int startId) {
return START_STICKY;
}

@Override
public void onCreate() {
super.onCreate();
startService();
}

private void startService() {
mTimer.scheduleAtFixedRate(

new TimerTask() {

public void run() {
refreshData();
}
}, 1000, UPDATE_INTERVAL);
}

private void refreshData() {

Intent intent = new Intent(this, MainActivity.class);
PendingIntent pIntent = PendingIntent.getActivity(this, (int) System.currentTimeMillis(), intent, 0);

Notification noti = new Notification.Builder(this)
.setContentTitle("New notification")
.setContentText("Lorem ipsum dolor sit amet, consectetur adipiscing elit.").setSmallIcon(R.drawable.home)
.setContentIntent(pIntent).build();
NotificationManager notificationManager = (NotificationManager) getSystemService(NOTIFICATION_SERVICE);
noti.flags |= Notification.FLAG_AUTO_CANCEL;

notificationManager.notify(1337, noti);
}

private void stopService() {
if (mTimer != null) mTimer.cancel();
}

@Override
public void onDestroy() {
super.onDestroy();
stopService();
}

我无法真正确定导致延迟的部分,因此非常感谢任何帮助!

提前谢谢你。


更新:

该错误是由于我的一个愚蠢错误造成的,因为为通知加载的图像文件太大(请参阅已接受的答案)。我仍然会在线保留这个问题,因为它几乎演示了一个关于如何实现显示通知的服务的完整示例。 (只要图像文件不是太大:-))

最佳答案

好的,所以在问题评论中,我们发现用于通知的图像是 2000x2000 像素。将其更改为尺寸更合理的图像解决了该问题。

我假设 CPU 使用率来自 SystemUI(显示通知)每次通知更新时重新加载该图像。解码 2000x2000 像素的 png 图像实际上需要几百毫秒。

关于java - 显示通知时极度滞后,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34707370/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com