打开状态栏时解析通知消失
Parse notification disapear when I open status bar
我在某些设备(如 sony xperia Z 和 wiko)中遇到了这个错误。
我确实实现了 Parse notification.I,正在 manifest.xml:
中设置我的通知图标
<meta-data
android:name="com.parse.push.notification_icon"
android:resource="@drawable/ic_launcher" />
当我收到通知时。我的图标将出现在状态栏中:
到现在为止一切正常。
但是当我尝试打开状态栏查看消息时。我的通知将显示没有图标。只会出现消息:
有人遇到过同样的问题吗?知道如何解决吗?
我遇到了同样的问题,我通过将图标图像更改为 24x24 dp 来修复它。
What are the sizes of the icons in Android notifications action-buttons?
Android status bar expects icons of size 25x25dp while guidelines recommend 32x32dp. Who is wrong?
我在某些设备(如 sony xperia Z 和 wiko)中遇到了这个错误。 我确实实现了 Parse notification.I,正在 manifest.xml:
中设置我的通知图标<meta-data
android:name="com.parse.push.notification_icon"
android:resource="@drawable/ic_launcher" />
当我收到通知时。我的图标将出现在状态栏中:
我遇到了同样的问题,我通过将图标图像更改为 24x24 dp 来修复它。
What are the sizes of the icons in Android notifications action-buttons?
Android status bar expects icons of size 25x25dp while guidelines recommend 32x32dp. Who is wrong?