手写Service后台下载app——跳出DownloadManager系统7( 三 )


注意这里的r

手写Service后台下载app——跳出DownloadManager系统7

文章插图
r基本介绍 这个类是在v4包中的,谷歌官方的介绍是:
tofor and sendofto localyour . This is has aofoverwith ():
You know that the data you arewon’t leave your app, so don’t need to worry aboutdata. It is notfor otherto send theseto your app, so you don’t need to worry aboutholes they can . It is morethanathe .
大致意思是:
帮助程序注册和发送的广播到您的进程中的本地对象 。这是一个有趣的发送全局广播与():
你知道你收音机的数据不会离开你的应用程序,所以不需要担心泄露的私人数据 。其他应用程序不可能将这些广播发送到您的应用程序,因此您不需要担心它们可以利用的安全漏洞 。它比通过系统发送全局广播更有效 。
优点:使用方式
LocalBroadcastManager localBroadcastManager = LocalBroadcastManager.getInstance(getActivity());IntentFilter filter = new IntentFilter();filter.addAction(ACTION);myBroadcastReciver = new MyBroadcastReciver();localBroadcastManager.registerReceiver(myBroadcastReciver, filter);
【手写Service后台下载app——跳出DownloadManager系统7】 Intent intent = new Intent();intent.setAction(SaleLeftFragment.ACTION);intent.putExtra(TAG, data);LocalBroadcastManager.getInstance(getActivity()).sendBroadcast(intent);