Android使用Google Play通知安装图标

时间:2015-03-22 09:05:40

标签: android android-notifications

通过Google Play安装应用时,进度通知图标是从上到下填充的箭头,没有进度条。我按照这个链接:

http://developer.android.com/training/notify-user/display-progress.html

但是,如果没有进度条,我无法显示安装通知。 有没有办法在安装应用时使用Google Play使用的相同图标? 我不想为图标创建自定义动画。我想使用Google Play使用的相同资源。

2 个答案:

答案 0 :(得分:0)

使用http://developer.android.com/reference/android/R.drawable.html#stat_sys_download或转至/ path_to_sdk / platforms / android- {version} / data / res / stat_sys_download并复制xml文件  png文件到您的项目,以保护它免受设备制造商的修改。

答案 1 :(得分:0)

例如,您想创建一个通知,用于下载带有Google Play等动画图标的文件:

mBuilder.setContentTitle("Downloading... ")
            .setContentText("Please wait...")
            .setOngoing(true)
            .setOnlyAlertOnce(true)
            .setSmallIcon(android.R.drawable.stat_sys_download)  // here is the animated icon
            .setLargeIcon(BitmapFactory.decodeResource(this.getResources(), android.R.drawable.stat_sys_download)).build();