I am trying to add a vertical line to an Android custom notification. I tried adding such a view to my Relative Layout:
<View
android:id="@+id/line_vertical"
android:layout_width="1dip"
android:layout_height="fill_parent"
android:layout_centerVertical="true"
android:layout_toRightOf="@id/image_logo"
android:background="#0000FF" />
But when I run the notification, I get the following exception:
android.app.RemoteServiceException: invalid notification sent from package XXX: failed to deploy RemoteViews for: StatusBarNotification (package = XXX)
Does anyone have any ideas?
source
share