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、Array、String 等)从我Activity的Service. 如果使用Intent和Bundle必要的服务重新启动。我需要在不重新启动服务的情况下发送数据(如果服务正在运行,则使用他,如果没有运行,则启动他并发送新数据)。
Activity
Service
Intent
Bundle
我也需要从BroadcastReceiver服务发送相同的数据。
BroadcastReceiver
什么是最佳实践?
为此使用绑定服务,它用于服务和其他组件之间的通信。
例子