APMS Notification Bar Guide

1. Google Notification Bar Design Guide

구글 개발자 페이지에서는 다음과 같이 Notification Bar에 대한 가이드를 제공하고 있습니다.

1.1 각 해상도에 따른 Icon Size

enter image description here

1.2 SDK에 적용하는 방법


1.2.1 기존 APP Icon을 적용했을 경우

<meta-data android:name="APMS_SET_ICON" android:resource="@drawable/${icon_file_name}" />

enter image description here enter image description here


1.2.2 Google 가이드 정책을 적용했을 경우

<meta-data android:name="APMS_SET_ICON" android:resource="@drawable/${icon_file_name}" />

enter image description here enter image description here


1.2.3 Large Icon을 적용 했을 경우

<meta-data android:name="APMS_SET_ICON" android:resource="@drawable/${icon_file_name}" />
<meta-data android:name="APMS_SET_LARGE_ICON" android:resource="@drawable/${icon_file_name}" />

enter image description here enter image description here