用于过滤数据的 Android Spinner
我知道这是可能的,但我只是想知道是否有其他人这样做过,或者有人对实现这一点的最佳方法有什么看法。基本上我有一个微调器,它将从数据库表中的列填充。我希望能够选择数据项并使其显示具有相同值的所有其他项目。
例如,
员工有一个部门,下拉列表中有部门,当选择一个部门时,它会显示该部门的所有员工。
我的微调器填充了正确的数据,因此不需要关于这部分的建议。
如果您需要更多信息,请询问。
I know this is possible but I'm just wondering if anyone else has done it or anyone's opinions on what the best method for implementing this is. Basically I have a spinner which will be populated from a column in a database table. I want to be able to select the data item and for it to display all of the other items that have that same value.
e.g.
Employee has a department, dropdown has the departments in and when a department is chosen it displays all of the employees in that department.
I have the spinner populating with the correct data so don't need advice on this part.
If you need any more information then please ask.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以为此使用可扩展列表..
将部门设置为父级,将员工设置为子级..
参考检查 这个..
在 API 演示中,您可以找到可扩展列表检查的示例 此,也是这个 , 还有这个
You can use Expandable list for this..
Set Department as Parent and Employees as Child..
For reference check this..
In API demos you can find the examples for Expandable list check this, also this , and this