價格:免費
更新日期:2017-12-28
檔案大小:1.8M
目前版本:0.0.1
版本需求:Android 6.0 以上版本
官方網站:mailto:jfnicklynjr@gmail.com
Dynamically generates a survey interface from script.
The following is an example JSON for a survey
{
"questions":
[
{
"id": "q1",
"value": "Select a value?",
"title_left":"ON THE LEFT",
"title_right":"ON THE RIGHT",
"type":"range_select",
"contents": [
{"value":"0"},
{"value":"1"},
{"value":"2"},
{"value":"3"},
{"value":"4"},
{"value":"5"},
{"value":"6"},
{"value":"7"},
{"value":"8"},
{"value":"9"},
{"value":"10"}
]
},
{
"id": "q2",
"value": "Overall, how satisfied or dissatisfied are you with our company?",
"type":"single_choice",
"contents": [
[
{"value": "Very satisfied"},
{"value": "Somewhat satisfied"},
{"value": "Neither satisfied nor dissatisfied"}
],
[
{"value": "Somewhat dissatisfied"},
{"value": "Very dissatisfied"}
]
]
},
{
"id": "q3",
"value": "Which of the following words would you use to describe our products? Select all that apply. (select upto 3)",
"type":"multiple_choice",
"max_select":"3",
"contents": [
[
{"value": "Reliable", "toggle_group":"A"},
{"value": "High quality", "toggle_group":"B"},
{"value": "Useful"},
{"value": "Unique"},
{"value": "Good value for money", "toggle_group":"C"}
],
[
{"value": "Overpriced", "toggle_group":"C"},
{"value": "Impractical"},
{"value": "Ineffective"},
{"value": "Poor quality", "toggle_group":"B"},
{"value": "Unreliable", "toggle_group":"A"}
]
]
},
{
"id": "q4",
"value": "How well do our products meet your needs?",
"type":"single_choice",
"contents": [
[
{"value": "Extremely well"},
{"value": "High quality"},
{"value": "Somewhat well"}
],
[
{"value": "Not so well"},
{"value": "Not at all well"}
]
]
},
{"id": "q5",
"value": "How would you rate the quality of the product?",
"type":"single_choice",
"contents": [
[
{"value": "Very high quality"},
{"value": "High quality"},
{"value": "Neither high or low quality"}
],
[
{"value": "Low quality"},
{"value": "Very low quality"}
]
]
},
{
"id": "q6",
"value": "How do you rate the following?",
"type":"rating_scale",
"contents": {
"columns": [
{"value":"not at all useful"},
{"value":"slightly useful"},
{"value":"moderately useful"},
{"value":"very useful"},
{"value":"extremely useful"}
],
"rows":[
{"value":"Documentation"},
{"value":"Knowlege"},
{"value":"Advice"}
]
}
},
{
"id": "q7",
"value": "password field",
"type":"text",
"input_type":"password"
},
{
"id": "q8",
"value": "plain text field",
"type":"text"
},
{
"id": "q9",
"value": "date",
"type":"text",
"input_type":"date"
}
]
}