GetSocial UI on Android¶
Prerequisites¶
- Finished Getting Started with GetSocial Android SDK guide.
- Add GetSocial UI to your dependencies:
- Gradle Plugin: omit
useUiLibrary
or setuiLibrary
totrue
. - Manually: Add
getsocial-sdk-ui
to your gradle dependencies.
- Gradle Plugin: omit
Show GetSocial UI View¶
To create GetSocial View you have to build it first of all. All GetSocial ViewBuilders extend from im.getsocial.sdk.ui.ViewBuilder
class.
ViewBuilder viewBuilder = ...;//build view here
boolean wasShown = viewBuilder.show();
//or
//boolean wasShown = GetSocialUi.showView(viewBuilder);
val viewBuilder = ... // build view here
val wasShown = viewBuilder.show()
//or
//val wasShown = GetSocialUi.showView(viewBuilder)
Both of the methods will show GetSocial View on top of the current activity and return true
if the view was shown, or false
otherwise. You can find an error, why GetSocial View was not shown in your LogCat console.
Let’s create Smart Invites View as an example:
ViewBuilder viewBuilder = InvitesViewBuilder.create();
val viewBuilder = InvitesViewBuilder.create()
Custom Titles¶
All GetSocial Views have default localized titles, but you can easily set a custom one as well. In this case, you’ll need to handle localization on your own. Here’s how you can set a title for Smart Invites View:
InvitesViewBuilder.create()
.setWindowTitle("Share with Friends!")
.show();
InvitesViewBuilder.create()
.setWindowTitle("Share with Friends!")
.show()
And voi la - your window now has a new title. To handle localization, you can use GetSocial.getLanguage()
method to get the current language. All supported language codes are placed in im.getsocial.sdk.consts.LanguageCodes
. Read more about Localization here.
Control GetSocial View State¶
GetSocial UI provides you with all the instruments to control the state of its views. You have already read how to show GetSocial View. Now let’s try closing it. Do this with:
boolean saveState = false;
GetSocialUi.closeView(saveState);
val saveState = false
GetSocialUi.closeView(saveState)
It will close current visible GetSocial View or do nothing, if there is no GetSocial View.
It you want to close GetSocial View saving its current state and restore it later, pass true
as saveState
parameter:
//close and save
boolean saveState = true;
GetSocialUi.closeView(saveState);
//and restore
GetSocialUi.restoreView();
//close and save
val saveState = true
GetSocialUi.closeView(saveState)
//and restore
GetSocialUi.restoreView()
Warning
If you want to show new GetSocial view after you closed other with saving state, your saved state will be lost, and the view will be opened as usual. Calling restoreView
after that will not affect anything.
View State Events¶
If you want to be notified about onOpen
and onClose
events of GetSocial View, you can set a ViewStateListener
to a view before showing it.
InvitesViewBuilder.create()
.setViewStateListener(new ViewStateListener() {
@Override
public void onOpen() {
// GetSocial View was opened
}
@Override
public void onClose() {
// GetSocial View was closed
}
}).show();
InvitesViewBuilder.create()
.setViewStateListener(object : ViewStateListener{
override fun onOpen() {
// GetSocial View was opened
}
override fun onClose() {
// GetSocial View was closed
}
})
.show()
UI User Actions Handling¶
GetSocial UI does all the job of communicating with the underlying GetSocial Data API for you. However, sometimes, you may want to customize the behavior of GetSocial UI and have more control over user’s actions. That is why we introduced UiActionListener
interface. When you create GetSocial View, you can set a listener to be notified about user’s events, track them, allow or disallow, etc.:
ActivityFeedViewBuilder.create(ActivitiesQuery.timeline())
.setUiActionListener(new UiActionListener() {
@Override
public void onUiAction(UiAction action, final UiAction.Pending pendingAction) {
trackEvent(action);
checkIfAllowed(action, new Runnable() {
@Override
public void run() {
pendingAction.proceed();
}
});
}
})
.show();
ActivityFeedViewBuilder.create(ActivitiesQuery.timeline())
.setUiActionListener { action, pendingAction ->
trackEvent(action)
checkIfAllowed(action, {
pendingAction.proceed()
})
}
.show()
All possible events are listed in UiAction
enumeration.
Warning
If you did not set a UiActionListener
, all actions are executed as usual, but if you set it, you have to call pendingAction.proceed()
each time when you want to execute an action. Otherwise, it will not be performed.
For example, if the user is not authorized, you could prompt him to log in with Facebook and add an identity in your checkIfAllowed(...)
method, and in case of success - proceed with an action. Proceeding can be done asynchronously.
Also, you can track events using your internal analytics.
Note
If you have some problems showing an alert or view while GetSocial UI View is opened, call GetSocialUi.closeView(true)
. Later, after your view is closed, call GetSocialUi.restoreView()
and pendingAction.proceed()
if you want to perform an action, or just GetSocialUi.restoreView()
to get back to GetSocial UI View.
Handle Back Button¶
If you want to enable navigation with back button between GetSocial views, you need to override your onBackPressed
method in your activity:
@Override
public void onBackPressed() {
if (!GetSocialUi.onBackPressed()) {
super.onBackPressed();
}
}
override fun onBackPressed() {
if (!GetSocialUi.onBackPressed()) {
super.onBackPressed()
}
}
If GetSocialUi.onBackPressed()
returns true
, back press was handled by GetSocial UI. If it returns false
- handle it on your own.
Load UI Configuration¶
To customize GetSocial UI you have to provide custom assets (drawables, fonts) and JSON configuration file. The easiest way to start, is to download one of the included themes (Default, Dark or Light) and do small tweaks on the JSON configuration (see the reference) or resources.
On Android, all assets and UI configuration JSON should be located in the assets/
folder.
For instance, to make GetSocial UI wider for landscape orientation you have to:
- Create a UI configuration file, e.g.
assets/getsocial/ui-landscape.json
with the following content:
{
"base-design": {
"scale-mode": "scale-with-screen-size",
"width": 640,
"height": 320,
"ppi": 72
},
"elements": {
"window": {
"width": 500,
"height": 320
}
}
}
-
Load UI configuration. Add
uiConfig
property to the GetSocial configuration in the Android applicationbuild.gradle
:getsocial { ... uiConfig "getsocial/ui-landscape.json" }
Not using GetSocial Gradle plugin? Read how to load UI Configuration manually.
Or you can load it dynamically in the application code:
boolean wasLoaded = GetSocialUi.loadConfiguration(getContext(), "getsocial/ui-landscape.json"); Log.i("GetSocial", "UI configuration was loaded successfully: " + wasLoaded);
val wasLoaded = GetSocialUi.loadConfiguration(applicationContext, "getsocial/ui-landscape.json") println("UI configuration was loaded successfully: ${wasLoaded}")
GetSocialUi.loadConfiguration(…) is Deprecated
Loading UI Configuration from code has a limitation: you have to load it at each entry point to the app, e.g., when users open the app from a push notification.
On the contrary, if you provide the path to UI Configuration via GetSocial Gradle plugin, we will handle UI Configuration loading automatically.