我正在构建一个包含表单的 android 应用程序。该表单有一些字段,只有当用户对上一个问题回答“是”时才会包含这些字段。例如,用户正在申请贷款。所以要求用户输入姓名和地址。然后问用户What is your employment status
?如果用户回答employed
或self-employed
THEN 部分employment
应该添加到用户将输入数据的表单中,例如job title
, employer name
,salary
等。
这是一个例子:
first name: John
last name: Smith
marital status: (if user selects married, then a section about spouse should be added to the form)
employment status: (if user selects employed, then a section about employer should be added to the form)
date of birth:
email:
请注意,conditional sections
不会在触发它们的问题下添加。相反,它们被添加到表单的稍后位置。