私はAndroidのドキュメントでこの用語に付随する定義を見つけました
これらは、終了後にシステムによってデータが保持されるブロードキャストであるため、クライアントは次のブロードキャストを待たずにそのデータをすばやく取得できます。
どういう意味ですか?誰かが特定の例でその使用を詳しく説明できますか?このインテントを使用するには許可をリクエストする必要があると思いますか?なんでそうなの?
<uses-permission android:name="android.permission.BROADCAST_STICKY"/> - Allows an application to broadcast sticky intents.
Sticky broadcasts should not be used. They provide no security (anyone can access them), no protection (anyone can modify them), and many other problems. The recommended pattern is to use a non-sticky broadcast to report that something has changed, with another mechanism for apps to retrieve the current value whenever desired.