Interface | Description |
---|---|
CaptainUpObjectView<T extends CaptainUpObject> | |
CaptainUpUIEvents |
An object that can be registered to, in-order to receive events from the Captain Up UI Components.
|
CaptainUpUIEvents.Listener | |
CaptainUpUIEvents.OnClick |
Aggregates the flags for different On Click events from the Captain Up UI.
|
CaptainUpUIEventsNotifier |
Use this listener interface to listen to events coming from the Captain Up UI components.
|
ProfileFragment.ProfileFragmentListener |
This interface must be implemented by activities that contain this
fragment to allow an interaction in this fragment to be communicated
to the activity and potentially other fragments contained in that
activity.
|
SignUpDialog |
Sign up dialog used to show a welcome message to a user on first sign up.
|
ToastNotificationConfiguration |
Use this class to configure the Captain Up Notification's Toast message.
|
UIEventParameter | |
UserDetailsView.UserDetailsViewListener |
Class | Description |
---|---|
BadgeProgressAdapter |
An adapter that can be used to easily display badge progress information on views.
|
BadgeProgressView | |
BadgeWithProgress | |
CaptainUpProfileButton | |
CaptainUpUI |
Use this class to configure the Captain Up UI components.
|
CircleView | |
GrayscaleTransformation | |
ImageProgressView |
Use this component to display a badge image with progress.
|
LeaderboardAdapter | |
NumberFormatter |
A simple handy class to format numbers, provides 2 main ways of format numbers:
1) `comma_grouped` - 5678 => "5,678"
2) `shorten_number` - 5678 => "5.6k"
Example Usage
// Get Number Formatter instance
NumberFormatter nf = NumberFormatter.getInstance(MainActivity.this);
nf.shorten_number(1234);
nf.comma_grouped(1234);
// Use with static methods
NumberFormatter.get_shortened_number(1234);
NumberFormatter.get_comma_grouped_number(MainActivity.this, 1234);
|
ProfileActivity | |
ProfileFragment | |
TabView | |
ToastNotificationConfigurationImpl | |
UserDetailsView |