android引导界面运用了哪些知识

1.BroadcastReceiver

(1)广播简介

 在Android中,Broadcast是一种广泛运用的在应用程序之间传输信息的机制。而BroadcastReceiver是对发送出来的 Broadcast进行过滤接受并响应的一类组件。

广播接收者( BroadcastReceiver )用于接收广播 Intent ,广播 Intent 的发送是通过调用 Context.sendBroadcast() 、 Context.sendOrderedBroadcast() 来实现的。通常一个广播 Intent 可以被订阅了此 Intent 的多个广播接收者所接收。

(2)广播机制

首先在需要发送信息的地方,把要发送的信息和用于过滤的信息(如Action、Category)装入一个Intent对象,然后通过调用 sendOrderBroadcast()或sendStickyBroadcast()方法,把 Intent对象以广播方式发送出去。

当Intent发送以后,所有已经注册的BroadcastReceiver会检查注册时的IntentFilter是否与发送的Intent 相匹配,若匹配则就会调用BroadcastReceiver的onReceive()方法。所以当我们定义一个BroadcastReceiver的时候,都需要实现onReceive()方法。

(3)广播注册

静态注册:在AndroidManifest.xml中用标签生命注册,并在标签内用标签设置过滤器。例如:

<receiver android:name="myRecevice"> //继承BroadcastReceiver,重写onReceiver方法

<intent-filter>

<action android:name="com.dragon.net"></action> //使用过滤器,接收指定action广播

  </intent-filter>

</receiver>

动态注册:

IntentFilter intentFilter = new IntentFilter();

intentFilter.addAction(String); //为BroadcastReceiver指定action,使之用于接收同action的广播

registerReceiver(BroadcastReceiver,intentFilter);

一般:在onStart中注册,onStop中取消unregisterReceiver

指定广播目标Action:Intent intent = new Intent(actionString);

并且可通过Intent携带消息 :intent.putExtra("msg", "hi,我通过广播发送消息了");

2.Service

(1)服务简介

A Service is an application component that can perform long-running operations in the background and does not provide a user interface. Another application component can start a service and it will continue to run in the background even if the user switches to another application. Additionally, a component can bind to a service to interact with it and even perform interprocess communication (IPC). For example, a service might handle network transactions, play music, perform file I/O, or interact with a content provider, all from the background.

翻译过来就是:Service(服务)是一个没有用户界面的在后台运行执行耗时操作的应用组件。其他应用组件能够启动Service,并且当用户切换到另外 的应用场景,Service将持续在后台运行。另外,一个组件能够绑定到一个service与之交互(IPC机制),例如,一个service可能会处理 网络操作,播放音乐,操作文件I/O或者与内容提供者(content provider)交互,所有这些活动都是在后台进行。