Android笔记:intent方法使用总结

简介:
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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
//show webapp:
 
Uri uri = Uri.parse( "http://www.google.com" );
Intent it  =  new  Intent(Intent.ACTION_VIEW,uri);
startActivity(it);
 
//show maps:
Uri uri = Uri.parse( "geo:38.899533,-77.036476" );
Intent it =  new  Intent(Intent.Action_VIEW,uri);
startActivity(it); 
 
//show ways
Uri uri = Uri.parse( "http://maps.google.com/maps?f=d&saddr=startLat%20startLng&daddr=endLat%20endLng&hl=en" );
Intent it =  new  Intent(Intent.ACTION_VIEW,URI);
startActivity(it);
 
//call dial program
Uri uri = Uri.parse( "tel:xxxxxx" );
Intent it =  new  Intent(Intent.ACTION_DIAL, uri);  
startActivity(it);  
 
Uri uri = Uri.parse( "tel.xxxxxx" );
Intent it = new  Intent(Intent.ACTION_CALL,uri);
//don't forget add this config:<uses-permission id="android.permission.CALL_PHONE" />
 
//send sms/mms
//call sender program
Intent it =  new  Intent(Intent.ACTION_VIEW);   
it.putExtra( "sms_body" "The SMS text" );   
it.setType( "vnd.android-dir/mms-sms" );   
startActivity(it);  
 
//send sms
Uri uri = Uri.parse( "smsto:0800000123" );   
Intent it =  new  Intent(Intent.ACTION_SENDTO, uri);   
it.putExtra( "sms_body" "The SMS text" );   
startActivity(it);  
 
//send mms
Uri uri = Uri.parse( "content://media/external/images/media/23" );   
Intent it =  new  Intent(Intent.ACTION_SEND);   
it.putExtra( "sms_body" "some text" );   
it.putExtra(Intent.EXTRA_STREAM, uri);   
it.setType( "image/png" );   
startActivity(it); 
 
//send email
  
Uri uri = Uri.parse( "mailto:xxx@abc.com" );
Intent it =  new  Intent(Intent.ACTION_SENDTO, uri);
startActivity(it);
 
Intent it =  new  Intent(Intent.ACTION_SEND);   
it.putExtra(Intent.EXTRA_EMAIL,  "me@abc.com" );   
it.putExtra(Intent.EXTRA_TEXT,  "The email body text" );   
it.setType( "text/plain" );   
startActivity(Intent.createChooser(it,  "Choose Email Client" ));  
 
Intent it= new  Intent(Intent.ACTION_SEND);     
String[] tos={ "me@abc.com" };     
String[] ccs={ "you@abc.com" };     
it.putExtra(Intent.EXTRA_EMAIL, tos);     
it.putExtra(Intent.EXTRA_CC, ccs);     
it.putExtra(Intent.EXTRA_TEXT,  "The email body text" );     
it.putExtra(Intent.EXTRA_SUBJECT,  "The email subject text" );     
it.setType( "message/rfc822" );     
startActivity(Intent.createChooser(it,  "Choose Email Client" ));   
 
 
//add extra
Intent it =  new  Intent(Intent.ACTION_SEND);   
it.putExtra(Intent.EXTRA_SUBJECT,  "The email subject text" );   
it.putExtra(Intent.EXTRA_STREAM,  "file:///sdcard/mysong.mp3" );   
sendIntent.setType( "audio/mp3" );   
startActivity(Intent.createChooser(it,  "Choose Email Client" ));
 
//play media
Intent it =  new  Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse( "file:///sdcard/song.mp3" );
it.setDataAndType(uri,  "audio/mp3" );
startActivity(it);
 
Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI,  "1" );   
Intent it =  new  Intent(Intent.ACTION_VIEW, uri);   
startActivity(it);  
 
//Uninstall
Uri uri = Uri.fromParts( "package" , strPackageName,  null );   
Intent it =  new  Intent(Intent.ACTION_DELETE, uri);   
startActivity(it);
 
//uninstall apk
Uri uninstallUri = Uri.fromParts( "package" "xxx" null );
returnIt =  new  Intent(Intent.ACTION_DELETE, uninstallUri);
 
//install apk
Uri installUri = Uri.fromParts( "package" "xxx" null );
returnIt =  new  Intent(Intent.ACTION_PACKAGE_ADDED, installUri);
 
//play audio
Uri playUri = Uri.parse( "file:///sdcard/download/everything.mp3" );
returnIt =  new  Intent(Intent.ACTION_VIEW, playUri);
 
//send extra
Intent it =  new  Intent(Intent.ACTION_SEND);  
it.putExtra(Intent.EXTRA_SUBJECT,  "The email subject text" );  
it.putExtra(Intent.EXTRA_STREAM,  "file:///sdcard/eoe.mp3" );  
sendIntent.setType( "audio/mp3" );  
startActivity(Intent.createChooser(it,  "Choose Email Client" ));
 
//search
Uri uri = Uri.parse( "market://search?q=pname:pkg_name" );  
Intent it =  new  Intent(Intent.ACTION_VIEW, uri);  
startActivity(it);  
//where pkg_name is the full package path for an application  
 
//show program detail page
Uri uri = Uri.parse( "market://details?id=app_id" );  
Intent it =  new  Intent(Intent.ACTION_VIEW, uri);  
startActivity(it);  
//where app_id is the application ID, find the ID  
//by clicking on your application on Market home  
//page, and notice the ID from the address bar
 
 
//search google
Intent intent =  new  Intent();
intent.setAction(Intent.ACTION_WEB_SEARCH);
intent.putExtra(SearchManager.QUERY, "searchString" )
startActivity(intent);




本文转自 glblong 51CTO博客,原文链接:http://blog.51cto.com/glblong/1613249,如需转载请自行联系原作者

目录
相关文章
|
19小时前
|
定位技术 Android开发
Intent在Android中的几种用法
Intent在Android中的几种用法
|
1天前
|
Java Android开发
Android桌面快捷方式图标生成与删除 使用Intent与launcher交互
Android桌面快捷方式图标生成与删除 使用Intent与launcher交互
|
3天前
|
程序员 Android开发
Android亮度调节的几种实现方法
Android亮度调节的几种实现方法
8 0
|
3天前
|
机器学习/深度学习 Java Shell
[RK3568][Android12.0]--- 系统自带预置第三方APK方法
[RK3568][Android12.0]--- 系统自带预置第三方APK方法
17 0
|
3天前
|
Shell Android开发
Android Activity重写dump方法实现通过adb调试代码
Android Activity重写dump方法实现通过adb调试代码
10 0
|
3天前
|
Android开发
Android APP 隐藏系统软键盘的方法
Android APP 隐藏系统软键盘的方法
10 0
|
3天前
|
Android开发
Android中去掉ActionBar的几种方法
Android中去掉ActionBar的几种方法
10 0
|
5天前
|
安全 Linux Android开发
FFmpeg开发笔记(十六)Linux交叉编译Android的OpenSSL库
该文介绍了如何在Linux服务器上交叉编译Android的FFmpeg库以支持HTTPS视频播放。首先,从GitHub下载openssl源码,解压后通过编译脚本`build_openssl.sh`生成64位静态库。接着,更新环境变量加载openssl,并编辑FFmpeg配置脚本`config_ffmpeg_openssl.sh`启用openssl支持。然后,编译安装FFmpeg。最后,将编译好的库文件导入App工程的相应目录,修改视频链接为HTTPS,App即可播放HTTPS在线视频。
FFmpeg开发笔记(十六)Linux交叉编译Android的OpenSSL库
|
17天前
|
存储 Java API
Android系统 文件访问权限笔记
Android系统 文件访问权限笔记
54 1
|
17天前
|
安全 Java Shell
Android11以上 Audio音频调试方法
Android11以上 Audio音频调试方法
57 0