Skip to content Skip to sidebar Skip to footer

Android Set Rtl Support On Push Notification

My target is to set rtl support on push notifications. My notification switch text direction but not places of layouts. For example icon is always in left, title is in right and te

Solution 1:

Notification layout is handled by the Android system automatically. If the icon is on the left in RTL mode, there's a reason for that, and every notification is displayed like that on the device. Even if you manage to change the layout for your app's notification, your users would be confused with the inconsistent notification layouts.

You can read more about notification layouts in the Material Design Guidelines.

Post a Comment for "Android Set Rtl Support On Push Notification"