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.
我想将标识 ArrayList 中对象的 UUID 传递给意图,以便接收活动可以使用 id 在 Arraylist 中找到对象。
这是可能的,还是有更好的方法来达到相同的结果?
您可以通过UUID.toString()(如String在 中intent)。它返回在无论如何 UUID 类实现接口UUID中指定的字符串表示形式,因此您也可以将其作为对象传递RFC 4122.Serializable
UUID.toString()
String
intent
UUID
RFC 4122.
Serializable