Back to project page App-Growth-Engine-Android-TabUI.
The source code is released under:
Apache License
If you think the Android project App-Growth-Engine-Android-TabUI listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.hookmobile.tabui; // w ww . j a v a 2 s. com class TabUIConstants { static final String TABUI_LOG = "TabUI"; static final String TABUI_PREF = "tabui_preferences"; static final String TITLE_CALL_TO_ACTION = "Call to Action"; static final String TITLE_FINISHED = "Finished"; static final String TITLE_PHONE_BOOK_PERMISSION = "Request Permission"; static final String MSG_CALL_TO_ACTION = "Please implement the play method in registerPlayAction to engage those users for Call-to-Action."; static final String MSG_DISCOVER = "Discover order successfully submitted. Please wait a few minutes to query the recommendations from the API."; static final String MSG_DISMISS = "Dismiss"; static final String MSG_DONT_ALLOW = "Don't Allow"; static final String MSG_FINDING = "Finding"; static final String MSG_FINISHED = "Finished"; static final String MSG_FRIENDS_AND_FAMILY = "Friends & Family..."; static final String MSG_INTERNET_REQUIRED = "This Application requires Internet Connection to be present."; static final String MSG_OK = "Ok"; static final String MSG_PLEASE_WAIT = "Please Wait"; static final String MSG_REFRESHING = "Refreshing"; static final String MSG_SELECT_CONTACTS = "Please select a few contacts you would like to refer."; static final String MSG_SERVER_ERROR = "Hook Mobile server encountered a problem: "; static final String MSG_SUCCESS = "Success"; static final String MSG_UNKNOWN_ERROR = "Unknown Error"; static final String MSG_UNABLE_TO_SEND = "Unable to send SMS, please check your data connection."; static final String PREF_CONTACT_CHECK = "contact_check"; static final String PREF_FRIEND_SIZE = "friend_size"; static final String PREF_FRIEND_VALUE_PREFIX = "friend_value_"; static final String PREF_INVITER_NAME = "inviter_name"; static final String PREF_INVITE_SIZE = "invite_size"; static final String PREF_INVITE_VALUE_PREFIX = "invite_value_"; static final String PREF_LEAD_SIZE = "lead_size"; static final String PREF_OS_VALUE_PREFIX = "os_value_"; static final String PREF_PHONE_VALUE_PREFIX = "phone_value_"; static final String PREF_SLIDING_DRAWER_OPENED = "sliding_drawer_opened"; static final String STATE_CURRENT_TAB = "current_tab"; static final String STATE_DIALOG_VALUE = "dialog_value"; static final String STATE_FRIENDS = "friends"; static final String STATE_LEADS = "leads"; static final String STATE_LEADS_SELECTED = "leads_selected"; static final String STATE_PHONE_BOOK_CONTACTS = "phone_book_contacts"; static final String STATE_PHONES = "phones"; public static final int CHK_VALUE_TRUE = 1; public static final int CHK_VALUE_FALSE = 0; public static final int INVALID = -1; static final String EMPTY_STRING = ""; static final String NUMBER = "no"; }