- 浏览: 283533 次
- 性别:
- 来自: 深圳
文章分类
- 全部博客 (142)
- android (64)
- android team 应用开发流程 (0)
- android 个人 开发流程 (1)
- android UI 切换皮肤 (1)
- java (9)
- 敏捷开发 (1)
- git (1)
- 学习 (2)
- hibernate (0)
- jQuery (1)
- windows (2)
- tomcat (1)
- Spring (3)
- struts2 (5)
- mysql (4)
- linux (15)
- JBPM (2)
- maven (4)
- 企业管理 (1)
- Iphone (1)
- 工作计划 (0)
- news (1)
- MOVE (1)
- exception-android (1)
- RFID (1)
- 测试 (7)
- android基础 (1)
- Gson (1)
- Android中的单元测试 (1)
最新评论
-
jlees:
Nice post.i hope this will help ...
Business mobile application development. The developer’s insight. -
weisi2375:
确实很详细的开发流程。
Android应用开发全流程 -
mikefather:
不错不错
Android,谁动了我的内存 -
ylzyd12345:
mark一下,谢谢分享
android的一些开源项目 -
limingcai:
确实不行,2.2就不行了,虽说2.3了 只有1.6可以
Android完全关闭应用程序
1. Intent open a picture file public:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); Uri uri = Uri.fromFile(new File("/mnt/sdcard/images/001041580.jpg")); intent.setDataAndType (uri, "image/*"); this.startActivity(intent);
2. Intent to open a PDF file:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); Uri uri = Uri.fromFile(new File("file:///android_asset/helphelp.pdf")); intent.setDataAndType (uri, "application/pdf"); this.startActivity(intent);
3. Intent to open a text file:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); if (paramBoolean) { Uri uri1 = Uri.parse (param); intent.setDataAndType (URI1, "text/plain"); } else { Uri uri = Uri.fromFile(new File("/mnt/sdcard/hello.txt")); intent.setDataAndType (URI2, "text/plain"); } this.startActivity(intent);
4. Intent to open the audio file:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.putExtra ("oneshot", 0); intent.putExtra ("configchange", 0); Uri uri = Uri.fromFile(new File("/mnt/sdcard/ren.mp3")); intent.setDataAndType (uri, "audio/*"); this.startActivity(intent);
5. Intent to open the video file:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intent.putExtra ("oneshot", 0); intent.putExtra ("configchange", 0); Uri uri = Uri.fromFile(new File("/mnt/sdcard/ice.avi")); intent.setDataAndType (uri, "video/*"); this.startActivity(intent);
6. Intent to open the CHM file:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); Uri uri = Uri.fromFile(new File("/mnt/sdcard/ice.chm")); intent.setDataAndType (uri, "application / x-chm"); this.startActivity(intent);
7. Intent to open a Word document:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); Uri uri = Uri.fromFile(new File("/system/etc/help.doc")); intent.setDataAndType(uri, "application/msword"); this.startActivity(intent);
8. Android Excel intent:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); Uri uri = Uri.fromFile(new File("/mnt/sdcard/Book1.xls")); intent.setDataAndType (uri, "application/vnd.ms-excel"); this.startActivity(intent);
9. Intent to open the PPT file:
Intent intent = new Intent("android.intent.action.VIEW"); intent.addCategory("android.intent.category.DEFAULT"); intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK); Uri uri = Uri.fromFile(new File("/mnt/sdcard/download/Android_PPT.ppt")); intent.setDataAndType (uri, "application/vnd.ms-powerpoint"); this.startActivity(intent);
10. Display Html page::
Uri uri = Uri.parse ("http://www.google.com"); Intent intent = new Intent (Intent.ACTION_VIEW, uri); this.startActivity(intent);
11. Show map:
Uri uri = Uri.parse ("geo: 38.899533, -77.036476"); Intent intent = new Intent (Intent.Action_VIEW, uri); this.startActivity(intent);
12. Call the dialer:
Uri uri = Uri.parse ("tel: xxxxxx"); Intent intent = new Intent (Intent.ACTION_DIAL, uri); this.startActivity(intent);
13. Call :
Uri uri = Uri.parse ("tel: xxxxxx"); Intent it = new Intent (Intent.ACTION_CALL, uri); this.startActivity(intent); /*permission: <uses-permission id="android.permission.CALL_PHONE"> </uses-permission> */
14. Call to send text messages of the program :
Intent intent = new Intent (Intent.ACTION_VIEW); intent.putExtra("sms_body", "The SMS text"); intent.setType("vnd.android-dir/mms-sms"); this.startActivity(intent);
15. Send SMS :
Uri uri = Uri.parse("smsto:0800000123"); Intent intent = new Intent(Intent.ACTION_SENDTO, uri); intent.putExtra("sms_body", "The SMS text"); this.startActivity(intent);
16. Send MMS :
Uri uri = Uri.parse("content://media/external/images/media/23"); Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra("sms_body", "some text"); intent.putExtra(Intent.EXTRA_STREAM, uri); intent.setType("image/png"); this.startActivity(intent);
17. Send an Email :
Uri uri = Uri.parse ("mailto: xxx@abc.com"); Intent intent = new Intent (Intent.ACTION_SENDTO, uri); this.startActivity(intent);
18. Send an Email with body :
Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_EMAIL,"me@abc.com"); intent.putExtra(Intent.EXTRA_TEXT,"The email body text"); intent.setType ("text/plain"); this.startActivity( Intent.createChooser(intent, "Choose Email Client"));
19. Send an Email with body,to,cc :
Intent intent = new Intent(Intent.ACTION_SEND); String [] tos ={"me@abc.com"}; String [] ccs ={"you@abc.com"}; intent.putExtra(Intent.EXTRA_EMAIL, tos); intent.putExtra(Intent.EXTRA_CC, ccs); intent.putExtra(Intent.EXTRA_TEXT, "The email body text"); intent.putExtra(Intent.EXTRA_SUBJECT, "The email subject text"); intent.setType("message/rfc822"); this.startActivity( Intent.createChooser(intent, "Choose Email Client"));
20. Send an Email with attachments :
Intent intent = new Intent(Intent.ACTION_SEND); intent.putExtra(Intent.EXTRA_SUBJECT,"The email subject text"); intent.putExtra(Intent.EXTRA_STREAM,"file :///sdcard/mysong.mp3"); sendIntent.setType("audio/mp3"); this.startActivity( Intent.createChooser(intent,"Choose Email Client"));
21. Uninstall the program :
Uri uri = Uri.fromParts ("package", strPackageName, null); Intent intent = new Intent (Intent.ACTION_DELETE, uri); this.startActivity( Intent.createChooser(intent,"Choose Email Client"));
22. Install the apk :
Uri installUri = Uri.fromParts("package", "xxx", null); returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri); this.startActivity(returnIt);
23. Search applications :
Uri uri = Uri.parse("market://search?Q=pname:pkg_name"); Intent intent = new Intent(Intent.ACTION_VIEW, uri); this.startActivity(intent); //Where pkg_name is the full package path for an application
24. Google Search Launch Web Browser :
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH); String term = "Android"; intent.putExtra(SearchManager.QUERY, term); activity.startActivity(intent);
25. Send text using Intent (to messaging apps) :
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH); String msgBody = "This is message"; Intent intent = new Intent(android.content.Intent.ACTION_SEND); intent.setType("text/plain"); intent.putExtra(android.content.Intent.EXTRA_SUBJECT, "message subject"); intent.putExtra(android.content.Intent.EXTRA_TEXT, msgBody); activity.startActivity(Intent.createChooser(intent, getResources(). getString(R.string.share_by_using)));
26. Create Shortcut on "Home Screen" :
Intent intent = new Intent(Intent.ACTION_WEB_SEARCH); Intent toPrint = new Intent(this, anCreateshutcut.class); Intent addShortcut = new Intent ("com.android.launcher.action.INSTALL_SHORTCUT"); addShortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Shutcutname"); addShortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, toPrint); addShortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE, Intent.ShortcutIconResource.fromContext(this, R.drawable.icon)); Manifest file: <intent-filter> <action android:name="android.intent.action.CREATE_SHORTCUT"> <category android:name="android.intent.category.LAUNCHER"> </category></action></intent-filter> <uses-permission android:name="com.android.launcher. permission.INSTALL_SHORTCUT"> </uses-permission>
发表评论
-
Resource-type-->Color State List Resource
2013-04-22 10:50 1660Color State List Resource Col ... -
Business mobile application development. The developer’s insight.
2012-11-07 17:49 1641from: http://www.enterra-inc.co ... -
Android. Handling some SQLite issues.
2012-11-07 17:48 1774转载: http://www.enterra-inc.com/ ... -
git 获取android source
2012-08-15 12:52 3676在做android开发的时,在遇到某一问题,想看andro ... -
Android 手机上获取物理唯一标识码
2012-07-27 10:27 11761唯一标识码这东西在网络应用中非常有用,例如检测是否 ... -
android listview adapter
2012-06-23 14:41 1012listview 在什么情况下会刷新: 1. 当ada ... -
Android多线程下载详解
2012-06-20 18:31 939http://www.pin5i.com/showtopic- ... -
Unable to open sync connection!
2012-06-18 17:04 962把设置里的USB调试重新开了开,问题解决! -
android checkbox 定制(修改checkbox 的图片)
2012-06-18 14:30 3642转载:http://www.bangchui.org/read ... -
Android ProgressBar自定义图片进度,自定义渐变色进度条
2012-06-15 16:53 7587 -
Android应用开发全流程
2012-06-15 09:21 3774转载:http://blog.csd ... -
Android操作HTTP实现与服务器通信
2012-06-03 14:47 1737本示例以Servlet为例,演示Android与Serv ... -
android.view.ViewRootImpl$CalledFromWrongThreadException: Only the original thre
2012-06-03 12:00 9031当应用程序启动,创建了一个叫“main”的线程,用于管理 ... -
这篇文章是android开发人员的必备知识,是我特别为大家整理和总结的,不求完美,但是有用。 1.签名的意义 为了保证每个应用程序开发商合法ID,防止部分开
2012-05-25 13:58 1517这篇文章是android开发人员的必备知识,是我特别为大 ... -
android Collections.sort(List<T> list) 与JAVA Collections.sort(List<T> list)
2012-05-04 10:33 1852Info.java : public class In ... -
android string xliff:g
2012-03-22 10:47 1015这个主要用于程序中,动态的插入内容时候使用,例如, ... -
android的一些开源项目
2011-12-07 17:13 2165转自: http://www.uuroid.com ... -
Understanding the Android Build Process
2011-11-25 12:38 971http://www.alittlemadness.com/2 ... -
Android 命令行手动编译打包详解
2011-11-24 10:07 1244Android 命令行手动编译打包过程图 【详细步骤】: 1 ... -
Android ListView 自定义背景后 滚动时的背景变黑问题
2011-11-21 14:30 1545ListView是常用的显示控件, ...
相关推荐
intent.setDataAndType(uri, "application/pdf"); //return intent; } ``` **解析:** - 这段代码同样定义了一个静态方法`getPdfFileIntent`来获取一个用于打开PDF文件的Intent。 - 创建Intent并设置其动作为`...
intent.setDataAndType(uri, "application/vnd.ms-powerpoint"); return intent; } ``` ##### 7. 打开音频文件 ```java public static Intent getAudioFileIntent(String param) { Intent intent = new Intent(...
在上面的代码中,我们首先创建了一个 Intent 对象,并指定了动作为 "android.intent.action.VIEW",然后使用 setDataAndType 方法设置了 URI 和类型为 "application/pdf",最后使用 startActivity 方法启动该 Intent...
intent.setDataAndType(uri, "application/vnd.ms-powerpoint"); context.startActivity(intent); }else if(name.lastIndexOf("zip") >=0){ Toast.makeText(context, "没有可以打开的工具!", Toast.LENGTH_LONG...
把其它app 放在assets/ 下面打包, 通过系统调用安装这个app //申请安装未知应用权限 ... intent.setDataAndType(uri, "application/vnd.android.package-archive"); Log.i(TAG,"btnAppInstallClick uri="+uri);
intent.setDataAndType(Uri.fromFile(file), application/vnd.android.package-archive); startActivity(intent); 但是,这并没有真正的实现静默安装,因为有用户界面,会让用户知道。那么,怎么
intent.setDataAndType(getImageContentUri(this,file), "image/*");//自己使用Content Uri替换File Uri }else{ intent.setDataAndType(Uri.fromFile(file), "image/*"); } android7.0拍照或相册选择照片并裁剪 ...
intent.setDataAndType(Uri.parse("smsto:1234567890"), "text/plain"); // 设置接收方号码和文本类型 intent.putExtra("sms_body", "这是短信内容"); // 设置短信内容 if (intent.resolveActivity...
intent.setDataAndType(Uri.EMPTY, MediaStore.Audio.Playlists.CONTENT_TYPE); break; default: return; } intent.putExtra("withtabs", true); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); a.start...
intent.setDataAndType(Uri.parse("file://path_to_file"), "text/plain"); startActivity(intent); ``` 这里,`ACTION_SEND`是自定义的动作,`Uri`用于指定数据,`text/plain`是数据的MIME类型。 3. **Intent...
intent.setDataAndType(Uri.fromFile(f), type); startActivity(intent); } private String getMIMEType(File f) { // 获取MIME类型的具体实现 } ``` 总结,Intent在Android开发中扮演着核心角色,通过它开发者...
Intent i = new Intent(Intent.ACTION_VIEW); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); if (Build.VERSION.SDK_INT >= 24) { // 适配 android 7.0 ,不能直接访问原路径 // 需要对 intent 授权 i.addFlags...
intent.setDataAndType(Uri.fromFile(file), "application/msword"); // 对于Word文件 // 或者 intent.setDataAndType(Uri.fromFile(file), "application/pdf"); // 对于PDF文件 ``` 在`Uri.fromFile(file)`中,`...
在安卓平台上,应用程序之间的...intent.setDataAndType(Uri.fromFile(file), "application/pdf"); ``` 3. **处理权限问题**: 如果文件位于外部存储,别忘了添加读取外部存储的权限到AndroidManifest.xml: ```xml ...
intent.setDataAndType(Uri.parse("file:///path/to/video.mp4"), "video/mp4"); startActivity(intent); ``` 此外,Intent还支持Bundle作为额外数据的容器,允许更复杂的数据结构传递。例如: ```java Bundle ...
intent.setDataAndType(Uri.fromFile(file), "image/*"); startActivity(intent); ``` 这里需要注意的是,`Uri.fromFile(file)`用于获取文件的URI,而`"image/*"`则指定了数据类型为所有图片格式。 ### 二、地理...
intent.setDataAndType(Uri.fromFile(new File("path/to/image.jpg")), "image/*"); try { startActivity(intent); } catch (ActivityNotFoundException e) { Toast.makeText(this, "没有找到能处理图片的应用", ...
intent.setDataAndType(Uri.fromFile(new File("path_to_image.jpg")), "image/*"); startActivity(intent); ``` 在这个例子中,ACTION_VIEW是动作,表示我们要查看某个内容,"image/*"是数据类型,指明我们希望...
intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive"); mService.startActivity(intent); } ``` 这里的关键是设置`ACTION_VIEW`动作并指定文件类型为`...