该问题基于在 Android 平台上使用 ODK Collect:
我正在处理选择来自 .csv 文件的选择题类型。到目前为止,它是一个标准的 ODK 程序,但是,由于 .csv 中有大量选项,我想在问题中包含一个字符串搜索选项。字符串搜索是为了减少参与者必须经过的选择次数,因此需要多次执行搜索。 解决此问题的最佳方法是什么?
到目前为止我的想法:使用 ODK 收集源代码将字符串搜索选项“注入”到相应的活动窗口中。
You can use the search function in the "appearance column", and example is given below
search('locationset','matches','countryid',1)
where locationset is the name of csv file, and countryid is a column in the csv, 1 is the value that i want it to search I've attached an image of a form, to have a better idea. Hope this helps