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.
我使用了这个链接如何查找选择的选定列表的主键,显示了一个项目时的Toast消息..任何人都请帮助我如何获取所选项目的主键...
我不知道您在 ListView 中显示什么数据。但我建议你创建ArrayList<Object>,这样你就可以从那个点击的位置获得一个特定的对象。
ArrayList<Object>
所以,一旦你有了对象,你就可以从这个对象中获取/显示你想要的任何细节。
例如,我有ArrayList<Student>where student 是用户定义类的对象,包含 RollNo、Name、Address 等。因此,如果您以这种方式准备数组列表,则可以轻松管理特定对象的多个数据。
ArrayList<Student>