Android – 显示动画状态栏图标

前端之家收集整理的这篇文章主要介绍了Android – 显示动画状态栏图标前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试将我的通知状态栏图标设置为动画 android.R.drawable.stat_sys_upload,它工作正常,但图标不动画:
private void showStatusNotification() {

    NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE);

    Builder notificationBuilder = new NotificationCompat.Builder(this);
    notificationBuilder.setAutoCancel(false);
    notificationBuilder.setOngoing(true);
    notificationBuilder.setContentIntent(PendingIntent.getActivity(this,new Intent(this,MainActivity.class),PendingIntent.FLAG_UPDATE_CURRENT));
    notificationBuilder.setContentTitle(getString(R.string.notification_title));
    notificationBuilder.setContentText(getString(R.string.notification_text));
    notificationBuilder.setSmallIcon(android.R.drawable.stat_sys_upload);
    notificationManager
            .notify(STATUS_NOTIFICATION_ID,notificationBuilder.build());
}

解决方法

解决方案很简单,但非常棘手.你只需要添加
notificationBuilder.setTicker(getString(R.string.notification_ticker));

魔术发生了,你的图标也是动画的.它与这个bug有关:

http://code.google.com/p/android/issues/detail?id=15657

希望它可以帮到某人.

原文链接:https://www.f2er.com/android/317184.html

猜你在找的Android相关文章