如何使用 vectorDrawable 作为使用 Android 支持库 23.2 的推送通知的图标? setSmallIcon 给出错误

Posted

技术标签:

【中文标题】如何使用 vectorDrawable 作为使用 Android 支持库 23.2 的推送通知的图标? setSmallIcon 给出错误【英文标题】:How can I use vectorDrawable as icon for push notifications using Android Support Library 23.2? setSmallIcon gives error 【发布时间】:2016-06-10 20:22:43 【问题描述】:

我的应用程序在 API

 android   
   defaultConfig   
     vectorDrawables.useSupportLibrary = true  
      
 

所有视图都可以正常工作,除了推送通知的图标:

NotificationCompat.Builder mBuilder =
                new NotificationCompat.Builder(this)
                        .setColor(getResources().getColor(R.color.colorAccent))
                        .setSmallIcon(R.drawable.ic_play_arrow_white_24dp) //ERROR
                        .setContentTitle(getString(R.string.app_name))
                        .setContentText(getString(R.string.playing));

我遇到了错误:

    E/AndroidRuntime: FATAL EXCEPTION: main
android.app.RemoteServiceException: Bad notification posted from package com.ashomok.lullabies: Couldn't create icon: StatusBarIcon(pkg=com.ashomok.lullabiesuser=0 id=0x7f020053 level=0 visible=true num=0 )
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1401)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:137)
at android.app.ActivityThread.main(ActivityThread.java:5041)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:511)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:793)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:560)
at dalvik.system.NativeStart.main(Native Method)

在这种情况下如何使用vectorDrawable?有可能吗?

【问题讨论】:

就像@ianhanniballake 所说,在这种情况下你不能使用vectorDrawables。但由于图标仅用于通知,您可以在项目中添加一个小 png,它只需要几个字节。 【参考方案1】:

不,VectorDrawables 只能在 Android 5.0+ 设备上的应用外部发送 - 在此之前框架不知道如何处理矢量可绘制对象。

【讨论】:

以上是关于如何使用 vectorDrawable 作为使用 Android 支持库 23.2 的推送通知的图标? setSmallIcon 给出错误的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio 错误使用 VectorDrawable(新的 Support 23.2.0 库)

如何更改 VectorDrawable viewportHeight 和 viewportWidth 以及使用矢量的最佳实践是啥?

如何在不修改原始drawable的情况下设置vectorDrawable的色调?

如何以编程方式将 VectorDrawable 设置为 ImageView 的图像

是否可以使用 android:DrawableRight 在 Buttons 和 TextViews 中使用 VectorDrawable?

VectorDrawable 图像变得像素化