Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找在 Android 中显示类别列表的最佳方法。我需要的是应用程序中项目所属所有类别的列表,然后如果他们选择该类别,它将显示该类别下的所有项目。
我想知道如何最轻松地做到这一点,我不确定两个选项中的哪一个最简单或可能。我在想我可以在我的表中有一个列,例如,该列将被命名为“类别”。我会为每一行填写类别,例如“食物、设备、工具”等,但我只希望显示该类别,然后选择该类别中的项目。
或者。
为每个类别制作一列并将其选择为“真”“假”之类的方式会更容易吗?任何信息,将不胜感激。
用 mysql 中的数据填充第一个列表
select category from table group by category;
单击一个类别名称后,用 ItemClick 类别名称中的数据填充子列表。
.... Object ox = lv.getItemAtPosition(position); .... "select * from table where category="+ox.toString()+'"';
备忘:这只是行为,不是代码