Survey Callbacks for Android
Covered here is how to set up the callback that fires before and after every survey is shown for your Android apps.
Before Showing the Survey
Surveys.setOnShowCallback(OnShowCallback {
//Pause game
}
)Surveys.setOnShowCallback(new Runnable() {
@Override
public void run() {
//Pause game
}
});After the Survey Has Been Dismissed
Surveys.setOnFinishCallback(OnFinishCallback {
}
)Surveys.setOnFinishCallback(new OnFinishCallback() {
@Override
public void onFinish(String surveyId, String state, JSONObject response) {
}
});Last updated