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.
我在 ListView 中显示人名列表。当我单击一个名称时,我将其设置为显示一条 Toast 消息,其中显示所单击的人的姓名。
然而,吐司显示不可读的数据,我不知道如何让它只显示名称。
以下是吐司消息:
“ com.example.friends.Person@50db3a 点击了! ”
我想显示类似的东西
“乔博客点击了!”。
该列表从包含 Person 对象的数组列表中获取其数据。
覆盖toString()Person 类中的方法并返回人名或您想要显示的任何内容。例如:
toString()
@Override public String toString() { return name; }