API Documentation


In XNotify on each screen we have provided you with default background images, default text fonts, text size and text colors etc. And we also have given the facility to change all of it according to your app's look and feel. We have bundled up a java class (Name XNotifyThemeConfig) to provide the feature of changing the color, icons, images , font and font size of almost every label and text. We have provided static methods for changing theme of the integrated app in this class.

Change Header theme


This will change the header theme throughout the integrated app.

1.1 Change Header Color:

You can change Header color by calling the method :

XNotifyThemeConfig.setHeaderColor("STRING_COLOR_CODE");

In this method you have to provide just color code string eg. #ff00ff.


1.2 Change Header Drawable(Background Image):

You can change Header drawable by calling the method:

XNotifyThemeConfig.setHeaderDrawable("ICON_FOR_HEADER");

In this method you have to provide just icon name as string eg. header_icon (If you want to put header_icon.png).


1.3 Change Header Text Color:

You can change Header text color by calling the method:

XNotifyThemeConfig.setHeaderTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


1.4 Change Header Text Size:

You can change Header text size by calling the method:

XNotifyThemeConfig.setHeaderTextSize(INT_FOR_HEADER_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


1.5 Change Header Text Typeface:

You can change Header text typeface (font) by calling the method:

XNotifyThemeConfig.setHeaderTypeface("FONT_NAME_FOR_HEADER_TEXT_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


Change Screen Background theme


This will change the Background theme throughout the integrated app.

2.1 Change Screen Background Color:

You can change Background color by calling the method:

XNotifyThemeConfig.setBackgroundColor("STRING_COLOR_CODE");

In this method you have to provide just color code string.


2.2 Change Screen Background Drawable(Background Image):

You can change Background drawable by calling the method:

XNotifyThemeConfig.setBackgroundDrawable("IMAGE_FOR_BACKGROUND");

In this method you have to provide just image name as string eg. background_icon (If you want to put background_icon.png).


Change Back Button theme on Header


This will change the Back Button theme throughout the integrated app.

3.1 Change Screen Back Button Drawable(Background Image):

You can change Back Button drawable by calling the method:

XNotifyThemeConfig.setBackButtonDrawable("IMAGE_FOR_BACK_BUTTON");

In this method you have to provide just image name as string eg. back_button_icon (If you want to put back_button_icon.png).


Change List theme


This will change the List theme in the integrated app.

4.1 Change List Item Color:

You can change background color of List Item by calling the method:

XNotifyThemeConfig.setListItemColor("STRING_COLOR_CODE");

In this method you have to provide just color code string.


4.2 Change List Item Background Drawable(Background Image):

You can change List Item background drawable by calling the method:

XNotifyThemeConfig.setListItemDrawable("IMAGE_FOR_LIST_ITEM_BACKGROUND");

In this method you have to provide just image name as string eg. list_item_background_icon (If you want to put list_item_background_icon.png).


4.3 Change List Item Title Text Color:

You can change List Item title text color by calling the method:

XNotifyThemeConfig.setListItemTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


4.4 Change List Item Title Text Size:

You can change List Item title text size by calling the method:

XNotifyThemeConfig.setListItemTitleTextSize(INT_FOR_HEADER_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


4.5 Change List Item Title Text Typeface:

You can change List Item title text typeface (font) by calling the method:

XNotifyThemeConfig.setListItemTitleTextTypeface("FONT_NAME_FOR_HEADER_TEXT_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


4.6 Change List Item Type Text Color:

You can change List Item type text color by calling the method:

XNotifyThemeConfig.setListItemTypeTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


4.7 Change List Item Type Text Size:

You can change List Item type text size by calling the method:

XNotifyThemeConfig.setListItemTypeTextSize(INT_FOR_HEADER_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


4.8 Change List Item Type Text Typeface:

You can change List Item type text typeface (font) by calling the method:

XNotifyThemeConfig.setListItemTypeTextTypeface("FONT_NAME_FOR_HEADER_TEXT_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


4.9 Change List Item Date Text Color:

You can change List Item date text color by calling the method:

XNotifyThemeConfig.setListItemDateTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


4.10 Change List Item Date Text Size:

You can change List Item date text size by calling the method:

XNotifyThemeConfig.setListItemDateTextSize(INT_FOR_HEADER_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


4.11 Change List Item Date Text Typeface:

You can change List Item date text typeface (font) by calling the method:

XNotifyThemeConfig.setListItemDateTextTypeface("FONT_NAME_FOR_HEADER_TEXT_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


4.12 Change List Item Group Text Color:

You can change List Item group text color by calling the method:

XNotifyThemeConfig.setListItemGroupTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


4.13 Change List Item Group Text Size:

You can change List Item group text size by calling the method:

XNotifyThemeConfig.setListItemGroupTextSize(INT_FOR_HEADER_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


4.14 Change List Item Group Text Typeface:

You can change List Item group text typeface (font) by calling the method:

XNotifyThemeConfig.setListIteGroupTextTypeface("FONT_NAME_FOR_HEADER_TEXT_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


Change Text Notification Detail View theme


This will change the Text notification detail view theme in the integrated app.


5.1 Change Text Notification Detail View Type Text Color:

You can change Text notification detail view type text color by calling the method:

XNotifyThemeConfig.setTextTypeTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


5.2 Change Text Notification Detail View Type Text Size:

You can change Text notification detail view type text size by calling the method:

XNotifyThemeConfig.setTextTypeTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


5.3 Change Text Notification Detail View Type Text Typeface:

You can change Text notification detail view type text typeface (font) by calling the method:

XNotifyThemeConfig.setTextTypeTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


5.4 Change Text Notification Detail View Date Text Color:

You can change Text notification detail view date text color by calling the method:

XNotifyThemeConfig.setTextDateTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


5.5 Change Text Notification Detail View Date Text Size:

You can change Text notification detail view date text size by calling the method:

XNotifyThemeConfig.setTextDateTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


5.6 Change Text Notification Detail View Date Text Typeface:

You can change Text notification detail view date text typeface (font) by calling the method:

XNotifyThemeConfig.setTextDateTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


5.7 Change Text Notification Detail View Group Text Color:

You can change Text notification detail view group text color by calling the method:

XNotifyThemeConfig.setTextGroupTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


5.8 Change Text Notification Detail View Group Text Size:

You can change Text notification detail view group text size by calling the method:

XNotifyThemeConfig.setTextGroupTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


5.9 Change Text Notification Detail View Group Text Typeface:

You can change Text notification detail view group text typeface (font) by calling the method:

XNotifyThemeConfig.setTextGroupTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


5.10 Change Text Notification Detail View Message Title Text Color:

You can change Text notification detail view message title text color by calling the method:

XNotifyThemeConfig.setTextMessageTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


5.11 Change Text Notification Detail View Message Title Text Size:

You can change Text notification detail view message title text size by calling the method:

XNotifyThemeConfig.setTextMessageTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


5.12 Change Text Notification Detail View Message Title Text Typeface:

You can change Text notification detail view message title text typeface (font) by calling the method:

XNotifyThemeConfig.setTextMessageTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


5.13 Change Text Notification Detail View Message Body Text Color:

You can change Text notification detail view message body text color by calling the method:

XNotifyThemeConfig.setTextMessageBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


5.14 Change Text Notification Detail View Message Body Text Size:

XNotifyThemeConfig.setTextMessageBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


5.15 Change Text Notification Detail View Message Body Text Typeface:

You can change Text notification detail view message body text typeface (font) by calling the method:

XNotifyThemeConfig.setTextMessageBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


Change Event Notification Detail View theme


This will change the event notification detail view theme in the integrated app.

6.1 Change Event Notification Detail View Title Text Color:

You can change Event notification detail view title text color by calling the method:

XNotifyThemeConfig.setEventTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.2 Change Event Notification Detail View Title Text Size:

You can change Event notification detail view title text size by calling the method:

XNotifyThemeConfig.setEventTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.3 Change Event Notification Detail View Title Text Typeface:

You can change Event notification detail view title text typeface (font) by calling the method:

XNotifyThemeConfig.setEventTypeTextTitleface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.4 Change Event Notification Detail View Type Text Color:

You can change Event notification detail view type text color by calling the method:

XNotifyThemeConfig.setEventTypeTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.5 Change Event Notification Detail View Type Text Size:

You can change Event notification detail view type text size by calling the method:

XNotifyThemeConfig.setEventTypeTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.6 Change Event Notification Detail View Type Text Typeface:

You can change Event notification detail view type text typeface (font) by calling the method:

XNotifyThemeConfig.setEventTypeTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.7 Change Event Notification Detail View Date Text Color:

You can change Event notification detail view date text color by calling the method:

XNotifyThemeConfig.setEventDateTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.8 Change Event Notification Detail View Date Text Size:

You can change Event notification detail view date text size by calling the method:

XNotifyThemeConfig.setEventDateTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.9 Change Event Notification Detail View Date Text Typeface:

You can change Event notification detail view date text typeface (font) by calling the method:

XNotifyThemeConfig.setEventDateTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.10 Change Event Notification Detail View Group Text Color:

You can change Event notification detail view group text color by calling the method:

XNotifyThemeConfig.setEventGroupTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.11 Change Event Notification Detail View Group Text Size:

You can change Event notification detail view group text size by calling the method:

XNotifyThemeConfig.setEventGroupTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.12 Change Event Notification Detail View Group Text Typeface:

You can change Event notification detail view group text typeface (font) by calling the method:

XNotifyThemeConfig.setEventGroupTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.13 Change Event Notification Detail View Message Title Text Color:

You can change Event notification detail view message title text color by calling the method:

XNotifyThemeConfig.setEventMessageTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.14 Change Event Notification Detail View Message Title Text Size:

You can change Event notification detail view message title text size by calling the method:

XNotifyThemeConfig.setEventMessageTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.15 Change Event Notification Detail View Message Title Text Typeface:

You can change Event notification detail view message title text typeface (font) by calling the method:

XNotifyThemeConfig.setEventMessageTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.16 Change Event Notification Detail View Message Body Text Color:

You can change Event notification detail view message body text color by calling the method:

XNotifyThemeConfig.setEventMessageBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.17 Change Event Notification Detail View Message Body Text Size:

You can change Event notification detail view message body text size by calling the method:

XNotifyThemeConfig.setEventMessageBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.18 Change Event Notification Detail View Message Body Text Typeface:

You can change Event notification detail view message body text typeface (font) by calling the method:

XNotifyThemeConfig.setEventMessageBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.19 Change Event Notification Detail View Description Title Text Color:

You can change Event notification detail view description title text color by calling the method:

XNotifyThemeConfig.setEventDescTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.20 Change Event Notification Detail View Description Title Text Size:

You can change Event notification detail view description title text size by calling the method:

XNotifyThemeConfig.setEventDescTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.21 Change Event Notification Detail View Description Title Text Typeface:

You can change Event notification detail view description title text typeface (font) by calling the method:

XNotifyThemeConfig.setEventDescTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.22 Change Event Notification Detail View Description Body Text Color:

You can change Event notification detail view description body text color by calling the method:

XNotifyThemeConfig.setEventDescBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.23 Change Event Notification Detail View description Body Text Size:

You can change Event notification detail view description body text size by calling the method:

XNotifyThemeConfig.setEventDescBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.24 Change Event Notification Detail View Description Body Text Typeface:

You can change Event notification detail view description body text typeface (font) by calling the method:

XNotifyThemeConfig.setEventDescBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


6.25 Change Event Notification Detail View Location Text Color:

You can change Event notification detail view location text color by calling the method:

XNotifyThemeConfig.setEventLocationTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


6.26 Change Event Notification Detail View Location Text Size:

You can change Event notification detail view location text size by calling the method:

XNotifyThemeConfig.setEventLocationTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


6.27 Change Event Notification Detail View Location Text Typeface:

You can change Event notification detail view Location text typeface (font) by calling the method:

XNotifyThemeConfig.setEventLocationTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


Change Photos & Videos Notification Detail View theme

This will change the Photos & Videos notification detail view theme in the integrated app.


7.1 Change Photos & Videos Notification Detail View Title Text Color:

XNotifyThemeConfig.setPhotoVideoTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.2 Change Photos & Videos Notification Detail View Title Text Size:

You can change Photos & Videos notification detail view title text size by calling the method:

XNotifyThemeConfig.setPhotoVideoTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.3 Change Photos & Videos Notification Detail View Title Text Typeface:

You can change Photos & Videos notification detail view title text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoTypeTextTitleface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


7.4 Change Photos & Videos Notification Detail View Type Text Color:

You can change Photos & Videos notification detail view type text color by calling the method:

XNotifyThemeConfig.setPhotoVideoTypeTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.5 Change Photos & Videos Notification Detail View Type Text Size:

You can change Photos & Videos notification detail view type text size by calling the method:

XNotifyThemeConfig.setPhotoVideoTypeTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.6 Change Photos & Videos Notification Detail View Type Text Typeface:

You can change Photos & Videos notification detail view type text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoTypeTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


7.7 Change Photos & Videos Notification Detail View Date Text Color:

You can change Photos & Videos notification detail view date text color by calling the method:

XNotifyThemeConfig.setPhotoVideoDateTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.8 Change Photos & Videos Notification Detail View Date Text Size:

You can change Photos & Videos notification detail view date text size by calling the method:

XNotifyThemeConfig.setPhotoVideoDateTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.9 Change Photos & Videos Notification Detail View Date Text Typeface:

You can change Photos & Videos notification detail view date text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoDateTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


7.10 Change Photos & Videos Notification Detail View Group Text Color:

You can change Photos & Videos notification detail view group text color by calling the method:

XNotifyThemeConfig.setPhotoVideoGroupTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.11 Change Photos & Videos Notification Detail View Group Text Size:

You can change Photos & Videos notification detail view group text size by calling the method:

XNotifyThemeConfig.setPhotoVideoGroupTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.12 Photos & Videos Notification Detail View Group Text Typeface:

You can change Photos & Videos notification detail view group text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoGroupTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


7.13 Change Photos & Videos Notification Detail View Message Title Text Color:

You can change Photos & Videos notification detail view message title text color by calling the method:

XNotifyThemeConfig.setPhotoVideoMessageTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.14 Change Photos & Videos Notification Detail View Message Title Text Size:

You can change Photos & Videos notification detail view message title text size by calling the method:

XNotifyThemeConfig.setPhotoVideoMessageTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.15 Change Photos & Videos Notification Detail View Message Title Text Typeface:

You can change Photos & Videos notification detail view message title text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoMessageTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


7.16 Change Photos & Videos Notification Detail View Message Body Text Color:

You can change Photos & Videos notification detail view message body text color by calling the method:

XNotifyThemeConfig.setPhotoVideoMessageBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.17 Change Photos & Videos Notification Detail View Message Body Text Size:

You can change Photos & Videos notification detail view message body text size by calling the method:

XNotifyThemeConfig.setPhotoVideoMessageBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.18 Change Photos & Videos Notification Detail View Message Body Text Typeface:

You can change Photos & Videos notification detail view message body text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoMessageBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


7.19 Change Photos & Videos Notification Detail View Description Title Text Color:

You can change Photos & Videos notification detail view description title text color by calling the method:

XNotifyThemeConfig.setPhotoVideoDescTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.20 Change Photos & Videos Notification Detail View Description Title Text Size:

You can change Photos & Videos notification detail view description title text size by calling the method:

XNotifyThemeConfig.setPhotoVideoDescTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.21 Change Photos & Videos Notification Detail View Description Title Text Typeface:

You can change Photos & Videos notification detail view description title text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoDescTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


7.22 Change Photos & Videos Notification Detail View Description Body Text Color:

You can change Photos & Videos notification detail view description body text color by calling the method:

XNotifyThemeConfig.setPhotoVideoDescBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


7.23 Change Photos & Videos Notification Detail View description Body Text Size:

You can change Photos & Videos notification detail view description body text size by calling the method:

XNotifyThemeConfig.setPhotoVideoDescBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


7.24 Change Photos & Videos Notification Detail View Description Body Text Typeface:

You can change Photos & Videos notification detail view description body text typeface (font) by calling the method:

XNotifyThemeConfig.setPhotoVideoDescBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


Change Newsletter Notification Detail View theme

This will change the Newsletter notification detail view theme in the integrated app.


8.1 Change Newsletter Notification Detail View Type Text Color:

You can change Newsletter notification detail view type text color by calling the method:

XNotifyThemeConfig.setNewsletterTypeTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


8.2 Change Newsletter Notification Detail View Type Text Size:

You can change Newsletter notification detail view type text size by calling the method:

XNotifyThemeConfig.setNewsletterTypeTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


8.3 Change Newsletter Notification Detail View Type Text Typeface:

You can change Newsletter notification detail view type text typeface (font) by calling the method:

XNotifyThemeConfig.setNewsletterTypeTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


8.4 Change Newsletter Notification Detail View Date Text Color:

You can change Newsletter notification detail view date text color by calling the method :

XNotifyThemeConfig.setNewsletterDateTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


8.5 Change Newsletter Notification Detail View Date Text Size:

You can change Newsletter notification detail view date text size by calling the method :

You can change Newsletter notification detail view date text size by calling the method :

In this method you have to provide just size as int eg. 17


8.6 Change Newsletter Notification Detail View Date Text Typeface:

You can change Newsletter notification detail view date text typeface (font) by calling the method :

XNotifyThemeConfig.setNewsletterDateTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


8.7 Change Newsletter Notification Detail View Group Text Color:

You can change Newsletter notification detail view group text color by calling the method :

XNotifyThemeConfig.setNewsletterGroupTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


8.8 Change Newsletter Notification Detail View Group Text Size:

You can change Newsletter notification detail view group text size by calling the method :

XNotifyThemeConfig.setNewsletterGroupTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


8.9 Change Newsletter Notification Detail View Group Text Typeface:

You can change Newsletter notification detail view group text typeface (font) by calling the method :

XNotifyThemeConfig.setNewsletterGroupTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


8.10 Change Newsletter Notification Detail View Message Title Text Color:

You can change Newsletter notification detail view message title text color by calling the method :

XNotifyThemeConfig.setNewsletterMessageTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


8.11 Change Newsletter Notification Detail View Message Title Text Size:

You can change Newsletter notification detail view message title text size by calling the method :

XNotifyThemeConfig.setNewsletterMessageTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


8.12 Change Newsletter Notification Detail View Message Title Text Typeface:

You can change Newsletter notification detail view message title text typeface (font) by calling the method :

XNotifyThemeConfig.setNewsletterMessageTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


8.13 Change Newsletter Notification Detail View Message Body Text Color:

You can change Newsletter notification detail view message body text color by calling the method :

XNotifyThemeConfig.setNewsletterMessageBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


8.14 Change Newsletter Notification Detail View Message Body Text Size:

You can change Newsletter notification detail view message body text size by calling the method :

XNotifyThemeConfig.setNewsletterMessageBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


8.15 Change Newsletter Notification Detail View Message Body Text Typeface:

You can change Newsletter notification detail view message body text typeface (font) by calling the method:

XNotifyThemeConfig.setNewsletterMessageBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


Change Document Notification Detail View theme


This will change the Document notification detail view theme in the integrated app.


9.1 Change Document Notification Detail View Title Text Color:

You can change Document notification detail view title text color by calling the method :

XNotifyThemeConfig.setDocumentTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.2 Change Document Notification Detail View Title Text Size:

You can change Document notification detail view title text size by calling the method :

XNotifyThemeConfig.setDocumentTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.3 Change Document Notification Detail View Title Text Typeface:

You can change Document notification detail view title text typeface (font) by calling the method :

XNotifyThemeConfig.setDocumentTypeTextTitleface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


9.4 Change Document Notification Detail View Type Text Color:

You can change Document notification detail view type text color by calling the method :

XNotifyThemeConfig.setDocumentTypeTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.5 Change Document Notification Detail View Type Text Size:

You can change Document notification detail view type text size by calling the method :

XNotifyThemeConfig.setDocumentTypeTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.6 Change Document Notification Detail View Type Text Typeface:

You can change Document notification detail view type text typeface (font) by calling the method:

XNotifyThemeConfig.setDocumentTypeTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


9.7 Change Document Notification Detail View Date Text Color:

You can change Document notification detail view date text color by calling the method :

XNotifyThemeConfig.setDocumentDateTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.8 Change Document Notification Detail View Date Text Size:

You can change Document notification detail view date text size by calling the method :

XNotifyThemeConfig.setDocumentDateTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.9 Change Document Notification Detail View Date Text Typeface:

You can change Document notification detail view date text typeface (font) by calling the method :

XNotifyThemeConfig.setDocumentDateTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


9.10 Change Document Notification Detail View Group Text Color:

You can change Document notification detail view group text color by calling the method :

XNotifyThemeConfig.setDocumentGroupTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.11 Change Document Notification Detail View Group Text Size:

You can change Document notification detail view group text size by calling the method :

XNotifyThemeConfig.setDocumentGroupTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.12 Change Document Notification Detail View Group Text Typeface:

You can change Document notification detail view group text typeface (font) by calling the method :

XNotifyThemeConfig.setDocumentGroupTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


9.13 Change Document Notification Detail View Message Title Text Color:

You can change Document notification detail view message title text color by calling the method :

XNotifyThemeConfig.setDocumentMessageTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.14 Change Document Notification Detail View Message Title Text Size:

You can change Document notification detail view message title text size by calling the method :

XNotifyThemeConfig.setDocumentMessageTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.15 Change Document Notification Detail View Message Title Text Typeface:

You can change Document notification detail view message title text typeface (font) by calling the method :

XNotifyThemeConfig.setDocumentMessageTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


9.16 Change Document Notification Detail View Message Body Text Color:

You can change Document notification detail view message body text color by calling the method :

XNotifyThemeConfig.setDocumentMessageBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.17 Change Document Notification Detail View Message Body Text Size:

You can change Document notification detail view message body text size by calling the method :

XNotifyThemeConfig.setDocumentMessageBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.18 Change Document Notification Detail View Message Body Text Typeface:

You can change Document notification detail view message body text typeface (font) by calling the method :

XNotifyThemeConfig.setDocumentMessageBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


9.19 Change Document Notification Detail View Description Title Text Color:

You can change Document notification detail view description title text color by calling the method :

XNotifyThemeConfig.setDocumentDescTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.20 Change Document Notification Detail View Description Title Text Size:

You can change Document notification detail view description title text size by calling the method :

XNotifyThemeConfig.setDocumentDescTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.21 Change Document Notification Detail View Description Title Text Typeface:

You can change Document notification detail view description title text typeface (font) by calling the method :

XNotifyThemeConfig.setDocumentDescTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


9.22 Change Document Notification Detail View Description Body Text Color:

You can change Document notification detail view description body text color by calling the method :

XNotifyThemeConfig.setDocumentDescBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


9.23 Change Document Notification Detail View description Body Text Size:

You can change Document notification detail view description body text size by calling the method :

XNotifyThemeConfig.setDocumentDescBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


9.24 Change Document Notification Detail View Description Body Text Typeface:

You can change Document notification detail view description body text typeface (font) by calling the method :

XNotifyThemeConfig.setDocumentDescBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


Change Survey Notification Detail View theme

This will change the Survey notification detail view theme in the integrated app.


10.1 Change Survey Notification Detail View Title Text Color:

You can change Survey notification detail view title text color by calling the method:

XNotifyThemeConfig.setSurveyTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


10.2 Change Survey Notification Detail View Title Text Size:

You can change Survey notification detail view title text size by calling the method:

XNotifyThemeConfig.setSurveyTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


10.3 Change Survey Notification Detail View Title Text Typeface:

You can change Survey notification detail view title text typeface (font) by calling the method:

XNotifyThemeConfig.setSurveyTypeTextTitleface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


10.4 Change Survey Notification Detail View Type Text Color:

You can change Survey notification detail view type text color by calling the method:

XNotifyThemeConfig.setSurveyTypeTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


10.5 Change Survey Notification Detail View Type Text Size:

You can change Survey notification detail view type text size by calling the method:

XNotifyThemeConfig.setSurveyTypeTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


10.6 Change Survey Notification Detail View Type Text Typeface:

You can change Survey notification detail view type text typeface (font) by calling the method:

XNotifyThemeConfig.setSurveyTypeTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


10.7 Change Survey Notification Detail View Date Text Color:

You can change Survey notification detail view date text color by calling the method :

XNotifyThemeConfig.setSurveyDateTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


10.8 Change Survey Notification Detail View Date Text Size:

You can change Survey notification detail view date text size by calling the method :

XNotifyThemeConfig.setSurveyDateTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


10.9 Change Survey Notification Detail View Date Text Typeface:

You can change Survey notification detail view date text typeface (font) by calling the method:

XNotifyThemeConfig.setSurveyDateTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


10.10 Change Survey Notification Detail View Group Text Color:

You can change Survey notification detail view group text color by calling the method :

XNotifyThemeConfig.setSurveyGroupTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


10.11 Change Survey Notification Detail View Group Text Size:

You can change Survey notification detail view group text size by calling the method :

XNotifyThemeConfig.setSurveyGroupTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


10.12 Change Survey Notification Detail View Group Text Typeface:

You can change Survey notification detail view group text typeface (font) by calling the method :

XNotifyThemeConfig.setSurveyGroupTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


10.13 Change Survey Notification Detail View Message Title Text Color:

You can change Survey notification detail view message title text color by calling the method :

XNotifyThemeConfig.setSurveyMessageTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


10.14 Change Survey Notification Detail View Message Title Text Size:

You can change Survey notification detail view message title text size by calling the method :

XNotifyThemeConfig.setSurveyMessageTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


10.15 Change Survey Notification Detail View Message Title Text Typeface:

You can change Survey notification detail view message title text typeface (font) by calling the method :

XNotifyThemeConfig.setSurveyMessageTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


10.16 Change Survey Notification Detail View Message Body Text Color:

You can change Survey notification detail view message body text color by calling the method :

XNotifyThemeConfig.setSurveyMessageBodyTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


10.17 Change Survey Notification Detail View Message Body Text Size:

You can change Survey notification detail view message body text size by calling the method :

XNotifyThemeConfig.setSurveyMessageBodyTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


10.18 Change Survey Notification Detail View Message Body Text Typeface:

You can change Survey notification detail view message body text typeface (font) by calling the method :

XNotifyThemeConfig.setSurveyMessageBodyTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).


10.19 Change Survey Notification Detail View Description Title Text Color:

You can change Survey notification detail view description title text color by calling the method :

XNotifyThemeConfig.setSurveyDescTitleTextColor("STRING_COLOR_CODE ");

In this method you have to provide just color code string eg. #ff00ff.


10.20 Change Survey Notification Detail View Description Title Text Size:

You can change Survey notification detail view description title text size by calling the method :

XNotifyThemeConfig.setSurveyDescTitleTextSize(INT_LABEL_SIZE);

In this method you have to provide just size as int eg. 17


10.21 Change Survey Notification Detail View Description Title Text Typeface:

You can change Survey notification detail view description title text typeface (font) by calling the method:

XNotifyThemeConfig.setSurveyDescTitleTextTypeface("FONT_NAME_FROM_ASSETS");

In this method you have to provide just font name as string eg some_font (If you have some_font.ttf in assets folder).



Back to Top

Copyright © 2024 Comnez Inc. All rights reserved.