Android中Intent习惯用法

时间:2022-09-20 21:49:54

android中的intent是一个非常重要的类,如果对intent不是特别了解,可以参见《详解android中intent的使用方法》。如果对intent filter不是特别了解,可以参见《详解android中intent对象与intent filter过滤匹配过程》。

本文着重讲一下android中一些常见的intent的习惯用法,比如如何通过intent发送短信、发送邮件、启动摄像机拍照录视频、设置闹铃、打开wifi设置界面等等。

限于篇幅,本文分为上下两篇,这是上篇。

发送短信

发送短信的时候,我们要使用的action是intent.action_sendto,并且要指定其uri是smsto:协议,这样能保证是短信应用接收并处理我们的intent对象,而不是其他应用接收,从而准确实现发送短信的目的。如果我们的action不是intent.action_sendto,而是intent.action_send,且没有指定smsto:协议的uri的话,那么android在接收到intent对象之后不会直接启动短信应用,而是弹出了app chooser,让我们选择要启动哪个应用,比如电子邮件、qq等等,所以为了确保直接启动短信应用,我们应该使用intent.action_sendto并且指定smsto:协议的uri。

示例代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
//使用action_sendto而不是action_send
intent intent = new intent(intent.action_sendto);
//指定uri使用smsto:协议,协议后面是接收短信的对象
uri uri = uri.parse("smsto:10086");
intent.setdata(uri);
//设置消息体
intent.putextra("sms_body", "手头有点紧,借点钱吧~~");
 
componentname componentname = intent.resolveactivity(getpackagemanager());
if(componentname != null){
 startactivity(intent);
}

在构造发送短信的uri时,前面是smsto:协议,后面跟的是接收短信的对方的手机号。如果在构建uri时,只写了smsto:,而没有写后面的手机的号的话,那么该intent也可以成功启动短信应用,不过这种情形下,在启动了短信应用之后,还需要我们自己再手动输入接收信息的手机号。我们通过key为sms_body的extra设置短信的内容。

需要注意的是,在执行了startactivity(intent)之后,虽然短信应用启动了,但是短信没有直接发出去,需要我们再点击一下发送消息才可以。

发送邮件

发送邮件的时候,我们要使用的action也是intent.action_sendto,并且要指定其uri是mailto:协议,这样能保证是邮件应用接收并处理我们的intent对象,而不是其他应用接收,从而准确实现发送邮件的目的。如果我们的action不是intent.action_sendto,而是intent.action_send,且没有指定mailto:协议的uri的话,那么android在接收到intent对象之后不会直接邮件应用,而是弹出了app chooser,让我们选择要启动哪个应用,比如短信、qq等等,所以为了确保直接启动邮件应用,我们应该使用intent.action_sendto并且指定mailto:协议的uri。

示例代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
//使用action_sendto而不是action_send
intent intent = new intent(intent.action_sendto);
//指定uri使用mailto:协议,确保只有邮件应用能接收到此intent对象
uri uri = uri.parse("mailto:");
intent.setdata(uri);
string[] addresses = {"zhangsan@126.com", "lisi@126.com"};
string[] cc = {"boss@126.com"};
string[] bcc = {"girlfriend@126.com"};
string subject = "加班";
string content = "国庆正常上班~~";
//设置邮件的接收方
intent.putextra(intent.extra_email, addresses);
//设置邮件的抄送方
intent.putextra(intent.extra_cc, cc);
//设置邮件的密送方
intent.putextra(intent.extra_bcc, bcc);
//设置邮件标题
intent.putextra(intent.extra_subject, subject);
//设置邮件内容
intent.putextra(intent.extra_text, content);
//设置邮件附件
//intent.putextra(intent.extra_stream, uri.parse(...));
componentname componentname = intent.resolveactivity(getpackagemanager());
if(componentname != null){
 startactivity(intent);
}

启动邮件应用后的截图如下所示:

Android中Intent习惯用法

我们分别通过key为intent.extra_email、intent.extra_cc和intent.extra_bcc的extra依次设置邮件的接收方、抄送方、密送方,其值均为string数组。我们通过key为intent.extra_subject的extra设置邮件标题,通过key为intent.extra_text的extra设置邮件内容。如果想发送附件,那么可以将附件封装成uri的形式,然后通过key为intent.extra_stream的extra设置邮件附件。

需要注意的是,在执行了startactivity(intent)之后,虽然邮件应用启动打开了,但是邮件没有直接发出去,需要我们再点击一下右上角的发送按钮才能将邮件发出去。

打电话

要想通过intent打电话,我们有两个可以使用的action:intent.action_dial和intent.action_call,二者有一定的区别。

如果使用intent.action_dial作为intent对象的action,那么当执行startactivity(intent)之后,会启动打电话应用,并且会自动输入指定的手机号,但是不会自动拨打,需要我们手动按下拨打按钮才能真正给对方打电话。

如果使用intent.action_call作为intent对象的action,那么当执行startactivity(intent)之后,会启动打电话应用,并且直接拨打我们指定的手机号,无需我们再手动按下拨打按钮。但是需要注意的是,该action需要权限android.permission.call_phone,如果在应用的androidmanifest.xml文件中没有添加该权限,那么当指定到startactivity(intent)这句代码的时候,就会抛出异常,应用崩溃退出。

以下是示例代码:

?
1
2
3
4
5
6
7
8
9
10
//intent.action_dial只拨号,不打电话
//intent intent = new intent(intent.action_dial);
//intent.action_call直接拨打指定电话,需要android.permission.call_phone权限
intent intent = new intent(intent.action_call);
uri uri = uri.parse("tel:10086");
intent.setdata(uri);
componentname componentname = intent.resolveactivity(getpackagemanager());
if(componentname != null){
 startactivity(intent);
}

在该示例代码中,我们使用了intent.action_call作为intent对象的action,并且在androidmanifest.xml中添加了如下权限:

 

复制代码 代码如下:
<uses-permission android:name="android.permission.call_phone"></uses-permission>


我们使用tel:协议的uri,在协议后面的是要拨打的号码,将该uri作为intent对象的data。

 

拍照

要想通过intent启动摄像机进行拍照,我们需要设置intent对象的action值为mediastore.action_image_capture的action。然后我们用key为mediastore.extra_output的extra设置图片的输出路径,最后调用startactivityforresult()方法以启动摄像机应用,并重写我们的onactivityresult()以便在该方法中得知拍照完成。

示例代码如下:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
//表示用于拍照的requestcode
 private final int request_code_image_capture = 1;
 //我们存储照片的输出路径,以便后续使用
 private uri imageoutputuri = null;
 
 //拍照
 private void captureimage(){
 packagemanager pm = getpackagemanager();
 
 //先判断本机是否在硬件上有摄像能力
 if(pm.hassystemfeature(packagemanager.feature_camera)){
 intent intent = new intent(mediastore.action_image_capture);
 componentname componentname = intent.resolveactivity(pm);
 //判断手机上有无摄像机应用
 if(componentname != null){
 //创建图片文件,以便于通过uri.fromfile()生成对应的uri
 file imagefile = createimagefile();
 if(imagefile != null){
  //根据imagefile生成对应的uri
  imageoutputuri = uri.fromfile(imagefile);
  //利用该uri作为拍照完成后照片的存储路径,注意,一旦设置了存储路径,我们就不能获取缩略图了
  intent.putextra(mediastore.extra_output, imageoutputuri);
  //调用startactivityforresult()方法,以便在onactivityresult()方法中进行相应处理
  startactivityforresult(intent, request_code_image_capture);
 }else{
  toast.maketext(this, "无法创建图像文件!", toast.length_long).show();
 }
 }else{
 toast.maketext(this, "未在本机找到camera应用,无法拍照!", toast.length_long).show();
 }
 }else{
 toast.maketext(this, "本机没有摄像头,无法拍照!", toast.length_long).show();
 }
 }
 
 //创建图片文件,以便于通过uri.fromfile()生成对应的uri
 private file createimagefile(){
 file image = null;
 
 //用时间戳拼接文件名称,防止文件重名
 string timestamp = new simpledateformat("yyyymmdd_hhmmss").format(new date());
 string imagefilename = "jpeg_" + timestamp + "_";
 file storagedir = getexternalfilesdir(environment.directory_pictures);
 
 try{
 image = file.createtempfile(
  imagefilename, //前缀
  ".jpg", //后缀
  storagedir //文件夹
 );
 }catch (ioexception e){
 image = null;
 e.printstacktrace();
 log.e("demolog", e.getmessage());
 }
 
 return image;
 }
 
 @override
 protected void onactivityresult(int requestcode, int resultcode, intent intent) {
 //首先判断是否正确完成
 if(resultcode == result_ok){
 switch (requestcode){
 case request_code_image_capture:
  //此处,我们可以通过imageoutputuri获取到我们想要的图片
  string imagepath = imageoutputuri.tostring();
  log.i("demolog", "照片路径是: " + imagepath);
  toast.maketext(this, "照片路径是: " + imagepath, toast.length_long).show();
 
  //以下代码尝试获取缩略图
  //如果设置mediastore.extra_output作为extra的时候,那么此处的intent为null,需要判断
  if(intent != null){
  bitmap thumbnail = intent.getparcelableextra("data");
  //有的手机并不会给拍照的图片生成缩略图,所以此处也要判断
  if(thumbnail != null){
  log.i("demolog", "得到缩略图");
  }
  }
 default:
  break;
 }
 }
 }

我们分析一下上面的代码片段:

不是所有的android设备都能拍照的,所以首先我们调用了packagemanager的hassystemfeature(packagemanager.feature_camera)方法,判断当前设备在硬件层级是否具有拍照的能力。

然后我们创建了一个action为mediastore.action_image_capture的intent对象。

然后我们通过调用intent.resolveactivity(pm)方法判断当前设备有无摄像机应用以便我们启动。如果没有摄像机应用但是我们却把intent对象传递给startactivity()或startactivityforresult()的话,就会抛出异常,应用崩溃退出。

我们自己写了一个createimagefile方法,通过该方法我们在自己的应用所对应的外设存储卡上创建了一个图片文件。需要注意的是,此步骤需要write_external_storage权限,在androidmanifest.xml中注册如下:

?
1
2
<uses-permission android:name="android.permission.write_external_storage"
 android:maxsdkversion="18"></uses-permission>

我们利用上面生成的图片文件生成了对应的uri,将其存储在activity中类型为uri的字段imageoutputuri中,之后我们执行了intent.putextra(mediastore.extra_output, imageoutputuri),利用该uri作为拍照完成后照片的存储路径。
此处需要特别注意的是,一旦设置了存储路径,我们就不能在onactivityresult()中获取缩略图了。

最后我们需要调用方法startactivityforresult(intent, request_code_image_capture)以启动摄像机应用进行拍照,其中request_code_image_capture是我们自定义指定的用于拍照的requestcode。

我们覆写了onactivityresult方法,拍照完成后触发该方法的执行。首先我们要判断resultcode是否与result_ok相等,只有相等才表明拍照成功,然后我们判断如果requestcode是否等于request_code_image_capture,若相等表明是拍照返回的结果。那么此时,我们就可以通过我们之前存储的imageoutputuri获取刚刚拍完的照片了,其uri字符串如:
file:///storage/sdcard0/android/data/com.ispring.commonintents/files/pictures/jpeg_20150919_112704_533002075.jpg
需要注意的是,如果我们在第5步之中设置mediastore.extra_output作为照片输出路径的话,那么在onactivityresult中无法获取从摄像机应用换回的intent,即为null,这样也就无法获取缩略图。反之,如果在第5步没有设置mediastore.extra_output作为照片输出路径的话,intent不为空,可以尝试执行bitmap thumbnail = intent.getparcelableextra("data")获取缩略图,如果thumbnail不为空,表示能成功获取缩略图。但是有的手机并不会给拍照的图片生成缩略图,所以此处的thumbnail也有可能是null,所以在使用之前要先判断。

摄像

通过intent启动摄像机进行摄像的步骤与上面刚提到的通过intent启动摄像机进行拍照的步骤非常相似,稍有区别。要启动camera进行摄像,我们需要给intent设置值为mediastore.action_video_capture的action,然后我们用key为mediastore.extra_output的extra设置图片的输出路径,最后调用startactivityforresult()方法以启动摄像机应用,并重写我们的onactivityresult()以便在该方法中得知摄像完成。

以下是示例代码:

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
//表示用于录视频的requestcode
 private final int request_code_video_capture = 2;
 
 //我们存储视频的输出路径,以便后续使用
 private uri videooutputuri = null;
 
 //摄像
 private void capturevideo(){
 packagemanager pm = getpackagemanager();
 
 //先判断本机是否在硬件上有摄像能力
 if(pm.hassystemfeature(packagemanager.feature_camera)){
 //将intent的action设置为mediastore.action_video_capture
 intent intent = new intent(mediastore.action_video_capture);
 componentname componentname = intent.resolveactivity(pm);
 //判断手机上有无摄像机应用
 if(componentname != null){
 //创建视频文件,以便于通过uri.fromfile()生成对应的uri
 file videofile = createvideofile();
 if(videofile != null){
  //根据videofile生成对应的uri
  videooutputuri = uri.fromfile(videofile);
  //利用该uri作为摄像完成后视频的存储路径
  intent.putextra(mediastore.extra_output, videooutputuri);
  //调用startactivityforresult()方法,以便在onactivityresult()方法中进行相应处理
  startactivityforresult(intent, request_code_video_capture);
 }else{
  toast.maketext(this, "无法创建视频文件!", toast.length_long).show();
 }
 }else{
 toast.maketext(this, "未在本机找到camera应用,无法摄像!", toast.length_long).show();
 }
 }else{
 toast.maketext(this, "本机没有摄像头,无法摄像!", toast.length_long).show();
 }
 }
 
 //创建视频文件,以便于通过uri.fromfile()生成对应的uri
 private file createvideofile(){
 file videofile = null;
 
 //用时间戳拼接文件名称,防止文件重名
 string timestamp = new simpledateformat("yyyymmdd_hhmmss").format(new date());
 string imagefilename = "mp4" + timestamp + "_";
 file storagedir = getexternalfilesdir(environment.directory_movies);
 
 try{
 videofile = file.createtempfile(
  imagefilename, //前缀
  ".mp4", //后缀
  storagedir //文件夹
 );
 }catch (ioexception e){
 videofile = null;
 e.printstacktrace();
 log.e("demolog", e.getmessage());
 }
 
 return videofile;
 }
 
 @override
 protected void onactivityresult(int requestcode, int resultcode, intent intent) {
 //首先判断是否正确完成
 if(resultcode == result_ok){
 switch (requestcode){
 case request_code_video_capture:
  //如果设置mediastore.extra_output作为extra的时候,
  //在有的手机上,此处的intent为不为null,但是在有的手机上却为null,
  //所以不建议从intent.getdata()中获取视频路径
  //我们应该自己记录videooutputuri来得知视频路径,下面注释的代码不建议使用
  /*if(intent != null){
  uri videouri = intent.getdata();
  if(videouri != null){
  //路径格式如content://media/external/video/media/130025
  log.i("demolog", "视频路径是: " + videouri.tostring());
  }
  }*/
 
  string videopath = videooutputuri.tostring();
  //1.如果没有设置mediastore.extra_output作为视频文件存储路径,那么路径格式如下所示:
  // 路径格式如content://media/external/video/media/130025
  //2.如果设置了mediastore.extra_output作为视频文件存储路径,那么路径格式如下所示:
  // 路径格式如file:///storage/sdcard0/android/data/com.ispring.commonintents/files/movies/mp420150919_184132_533002075.mp4
  log.i("demolog", "视频路径是: " + videopath);
  toast.maketext(this, "视频路径是: " + videopath, toast.length_long).show();
  break;
 default:
  break;
 }
 }
 }

可以看到上面启动camera摄像的代码与拍照的代码几乎完全一样,具体解释参见对拍照代码的描述。在该示例代码中,我们通过mediastore.extra_output设置了视频的存放路径,拍照的时候我们也通过它设置了照片的输出路径,但是二者稍有区别:

  • 1. 对于拍照,设置了mediastore.extra_output之后,onactivityresult中的intent参数是null,不能从intent中得知照片的存储路径。

  • 2. 对于摄像,设置了mediastore.extra_output之后,onactivityresult中的intent参数在有的手机上是null,但是在有的手机上不是null,我的手机小米1s得到的intent对象就不是null,所以此处很奇怪。如果intent不是null,可以通过intent.getdata()获取到视频文件的存储路径,但是由于intent是否为null不确定,所以尽量不要通过intent.getdata()方法获取其路径,而应该自己在activity中存储一个字段保存我们之前设置的文件路径,这样就没问题了。

以上就是关于android中常见intent习惯用法,希望对大家的学习有所帮助。

附源码: 《android中intent习惯用法》