Create a Survey Object
private lateinit var surveyView: XeboSurveyViewInitialize 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