Create a Survey Object
private lateinit var surveyView: XeboSurveyView
Initialize the Survey object
surveyView = XeboSurveyView(this)
Load a full screen survey
// parent: FragmentActivity // delegate: XeboSurveyDelegate // surveyURL: String? (survey URL) surveyView.loadFullscreenSurvey(this, this, surveyUrl)
Load survey after N number of visits
// visits: Int // parent: FragmentActivity // delegate: XeboSurveyDelegate // surveyURL: String? (survey URL) surveyView.loadSurveyAfter(N, this, this, surveyUrl)
Create and Show a Survey
- Published on Jan 3, 2025
- 1 minute(s) read
- SN