如何在下载文件中对我的通知图标产生这种闪烁效果,如:
MY ANSWER
只需使用此原生drawable android.R.drawable.stat_sys_download
mBuilder.setContentTitle(title)
.setContentText(filename)
.setSmallIcon(android.R.drawable.stat_sys_download);
答案 0 :(得分:1)
尝试使用动画可绘制。
例如:
<?xml version="1.0" encoding="utf-8"?>
<animation-list xmlns:android="http://schemas.android.com/apk/res/android" >
<item android:drawable="@drawable/frame1On" android:duration="1000" />
<item android:drawable="@drawable/frame2Off" android:duration="1000" />
</animation-list>
其中frame1On on是突出显示的图像,frame2Off是灰色的图像。如有必要,添加更多帧。