在没有 RemoteView 的情况下创建自定义 android 通知
Creating custom android notification without RemoteView
我正在尝试创建带有自定义视图的自定义通知。我必须将自定义对象的自定义数组设置为视图。但是 RemoteView
没有提供 getView
功能。所以我问,如何在没有 RemoveView
的情况下使用自定义视图创建自定义 android 通知。或者如何从 RemoteView
得到 View
how to create custom android notification with custom view without RemoveView
这是不可能的,抱歉。
Or how to get View from RemoteView
这是不可能的,抱歉。
您将需要弄清楚如何将您的 "custom array of custom objects" 变成您可以使用 RemoteViews
或通过其中一种扩展通知样式(例如 InboxStyle
)实现的东西。
我正在尝试创建带有自定义视图的自定义通知。我必须将自定义对象的自定义数组设置为视图。但是 RemoteView
没有提供 getView
功能。所以我问,如何在没有 RemoveView
的情况下使用自定义视图创建自定义 android 通知。或者如何从 RemoteView
View
how to create custom android notification with custom view without RemoveView
这是不可能的,抱歉。
Or how to get View from RemoteView
这是不可能的,抱歉。
您将需要弄清楚如何将您的 "custom array of custom objects" 变成您可以使用 RemoteViews
或通过其中一种扩展通知样式(例如 InboxStyle
)实现的东西。