Android四大组件
Activity
概念
活动是一种可以包含用户界面的组件,主要用于和用户交互。一个应用程序可以包含零个或多个活动。
基本用法
手动创建活动
1. 创建或加载布局
2. 在AndroidManifest文件中注册
3. 隐藏标题栏
4. 在活动中使用Toast
5. 在活动中使用menu
6. 销毁一个活动——finish()
Activity生命周期
Ø onCreate
Ø onStart
Ø onRestart
Ø onResume
Ø onPause
Ø onStop
Ø onDestroy
数据传递
Activity可以使用intent在活动之间传递数据。
启动模式
Activity的启动模式分为:
Ø standard
每次启动活动无论任务栈中是否已经存在该活动,都会新建一个活动并放在任务栈的顶部。
Ø singleTop
如果当前的任务栈顶部已经是要启动的活动,那么该活动不会被新建,而是直接使用。
Ø singleTask
如果任务栈中存在该活动,那么会将任务栈中该活动以上的所有活动全部退栈。
Ø singleInstance
应用该启动模式,启动一个活动,系统将为该活动新建一个独立的任务栈。
这种模式主要用于在程序间共享活动。
活动之间的跳转
活动之间跳转同样使用intent,其主要的分为两种:显示intent和隐式intent
n 显示intent:
显示intent的用法:
1. 构建一个intent实例:
Intent intent = new Intent(FirstActivity.this, SecondActivity.class);
2. 启动活动:
startActivity(intent);
显示intent的特点:明确知道并且可以引用的是哪一个Activity类对象
n 隐式intent
隐式intent的特点:不知道将要跳转的是哪一个类, 无法引用到类. 只知道其动作(action), 类型(mimeType)和附加信息。
隐式intent的使用方法:
创建intent对象:
Intent intent = new Intent();
设置Action
intent.setAction("android.intent.action.VIEW");
添加Category
intent.addCategory("android.intent.category.DEFAULT");
设置传递的数据
intent.setData(Uri.parse("http://www.baidu.com"));
启动Activity
startActivity(intent);
Broadcast Receiver
广播分类
广播分为:有序广播和无序广播。
有序广播
有序广播涉及到接收者的优先级,优先级越高的接收者越早收到广播,同时有权去设置是否需要终止该广播的继续传播。
n 优先级:
优先级以数字表示,数值越大优先级越高。其范围为:-1000~1000。
设置优先级的api:
public final void IntentFilter.setPriority(int priority)
n 终止广播:
终止广播api:
无序广播
无序广播,该类广播任务注册的接收者都可以接收到到该广播。
广播接收者
广播接收者以注册方式分为静态注册和动态注册两种。
静态注册
静态注册广播接收者主要的是通过在AndroidManifest.xml文件中添加标签的方式去完成广播接收者注册。
静态注册的特点:当该活动退出时,还是能收到广播。
实现方式:
动态注册
动态注册与静态注册区别在于动态注册需要在Java代码中使用api去动态添加AndroidManifest.xml文件中声明的intent-filter对象,并设置其相关参数。
动态注册的特点:当该活动退出时,不能再收到广播。
实现方式:
Content Provider
Content Provider主要用于向其他应用程序提供访问该应用的数据(主要是数据库)接口。
实现自定义的Content Provider
The primary methods that need to be implemented are:
- onCreate() which is called to initialize the provider
- query(Uri, String[], String, String[], String) which returns data to the caller
- insert(Uri, ContentValues) which inserts new data into the content provider
- update(Uri, ContentValues, String, String[]) which updates existing data in the content provider
- delete(Uri, String, String[]) which deletes data from the content provider
- getType(Uri) which returns the MIME type of data in the content provider
自定Content Provider必须实现以上的几个方法。为了能够辨别用户访问接口类型、具体的访问方式以及传递的参数。需要建立Uri,将这些Uri对应以上的接口方法,并将这些Uri提供给内容访问者。
n Content Provider URI
Content Provider URI由4部分组成:协议(scheme)、主机名(authority)、path(一般为表名)、ID。
1:schema,用来说明一个ContentProvider控制这些数据。 "content://"
2:主机名或授权(Authority),它定义了是哪个ContentProvider提供这些数据。
3:path路径,URI下的某一个Item。
4:ID, 通常定义Uri时使用”#”号占位符代替, 使用时替换成对应的数字
"content://com.cskaoyan.provider/userinfo/#" #表示数据id(#代表任意数字)
"content://com.cskaoyan.provider/userinfo/*" *来匹配任意文本
n 注册Uri
i. 首先需要获取匹配器:
UriMatcher sMatcher = new UriMatcher(UriMatcher.NO_MATCH);
ii. 添加Uri:
//添加需要匹配uri,如果匹配就会返回匹配码
sMatcher.addURI(“cn.cskaoyan.provider.personprovider”, “person”, 1);
//如果需要match()方法匹配content://cn.cskaoyan.provider.personprovider/person/5路径,返回匹配码为2
sMatcher.addURI(“cn.cskaoyan.provider.personprovider”, “person/#”, 2);
//#号为数字通配符
sMatcher.addURI(“cn.cskaoyan.provider.personprovider”, “person/*/#”, 2);
//*号为字符串通配符
iii. 匹配Uri
匹配Uri需要使用sMatcher.match(uri),并以返回的匹配码作为分支条件:
Swith(){
Case 1:
…
Case 2:
…
}
针对以上的数字通配符,需要使用ContentUris.parseId(uri)获取传入的id。针对字符串通配符需要使用uri.getPathSegments().get(int)。并使用这些id或字符串参数提供相应的数据操作。
内容接收者
内容接收者在使用内容提供者提供的Uri去访问其数据库,使用ContentResolver调用uri,实现访问Content Provider的数据库。其API:
final Uri insert(Uri url, ContentValues values)
final int delete(Uri url, String where, String[] selectionArgs)
final int update(Uri uri, ContentValues values, String where, String[] selectionArgs)
final Cursor query(Uri uri, String[] projection, String selection, String[] selectionArgs, String sortOrder)
通过上面的接口即可完成对Content Provider数据库相应的操作。
Service
服务的分类
远程服务(应用程序间的服务)
Android使用一种接口定义语言AIDL(Android Interface Definition Language)来公开服务的接口的方式来暴露服务接口。
进程间通信实现过程:
1. 定义服务类.
2. 定义aidl接口文件.
3. 在服务中onbind方法中返回实现aidl接口的对象.
4. 在另一个程序中调用bindService方法绑定服务.
5. 拷贝aidl接口文件(包括包名)到另一个程序中.
6. 在onServiceConnected方法中把Ibinder对象转换成aidl接口对象.
7. 使用接口对象调用方法(至此调用到远程服务的方法, 实现进程间通信).