`
dengzhangtao
  • 浏览: 677513 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论

intent.setDataAndType

 
阅读更多

 

1. Intent open a picture file public: 

 

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addCategory("android.intent.category.DEFAULT");  
  3. intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);  
  4. Uri uri = Uri.fromFile(new  
  5. File("/mnt/sdcard/images/001041580.jpg"));  
  6. intent.setDataAndType (uri, "image/*");  
  7. this.startActivity(intent);  

 

 

2. Intent to open a PDF file:

 

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addCategory("android.intent.category.DEFAULT");  
  3. intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);  
  4. Uri uri = Uri.fromFile(new  
  5. File("file:///android_asset/helphelp.pdf"));  
  6. intent.setDataAndType (uri, "application/pdf");  
  7. this.startActivity(intent);  

 

 

3. Intent to open a text file:

 

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addCategory("android.intent.category.DEFAULT");  
  3. intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);  
  4. if (paramBoolean)  
  5. {  
  6. Uri uri1 = Uri.parse (param);  
  7. intent.setDataAndType (URI1, "text/plain");  
  8. }  
  9. else  
  10. {  
  11. Uri uri = Uri.fromFile(new File("/mnt/sdcard/hello.txt"));  
  12. intent.setDataAndType (URI2, "text/plain");  
  13. }  
  14. this.startActivity(intent);  

 

 

4. Intent to open the audio file:

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);  
  3. intent.putExtra ("oneshot"0);  
  4. intent.putExtra ("configchange"0);  
  5. Uri uri = Uri.fromFile(new File("/mnt/sdcard/ren.mp3"));  
  6. intent.setDataAndType (uri, "audio/*");  
  7. this.startActivity(intent);  

 

 

5. Intent to open the video file:

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);  
  3. intent.putExtra ("oneshot"0);  
  4. intent.putExtra ("configchange"0);  
  5. Uri uri = Uri.fromFile(new File("/mnt/sdcard/ice.avi"));  
  6. intent.setDataAndType (uri, "video/*");  
  7. this.startActivity(intent);  

 

6. Intent to open the CHM file:

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addCategory("android.intent.category.DEFAULT");  
  3. intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);  
  4. Uri uri = Uri.fromFile(new File("/mnt/sdcard/ice.chm"));  
  5. intent.setDataAndType (uri, "application / x-chm");  
  6. this.startActivity(intent);  

 

 

7. Intent to open a Word document:

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addCategory("android.intent.category.DEFAULT");  
  3. intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);  
  4. Uri uri = Uri.fromFile(new File("/system/etc/help.doc"));  
  5. intent.setDataAndType(uri, "application/msword");  
  6. this.startActivity(intent);  

 

 

8. Android Excel intent:

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addCategory("android.intent.category.DEFAULT");  
  3. intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);  
  4. Uri uri = Uri.fromFile(new File("/mnt/sdcard/Book1.xls"));  
  5. intent.setDataAndType (uri, "application/vnd.ms-excel");  
  6. this.startActivity(intent);  

 

 

9. Intent to open the PPT file:

 

Java代码  收藏代码
  1. Intent intent = new Intent("android.intent.action.VIEW");  
  2. intent.addCategory("android.intent.category.DEFAULT");  
  3. intent.addFlags (Intent.FLAG_ACTIVITY_NEW_TASK);  
  4. Uri uri = Uri.fromFile(new  
  5. File("/mnt/sdcard/download/Android_PPT.ppt"));  
  6. intent.setDataAndType (uri, "application/vnd.ms-powerpoint");  
  7. this.startActivity(intent);  

 

10. Display Html page::

 

Java代码  收藏代码
  1. Uri uri = Uri.parse ("http://www.google.com");   
  2. Intent intent = new Intent (Intent.ACTION_VIEW, uri);   
  3. this.startActivity(intent);  

 

 

11. Show map:

 

Java代码  收藏代码
  1. Uri uri = Uri.parse ("geo: 38.899533, -77.036476");   
  2. Intent intent = new Intent (Intent.Action_VIEW, uri);   
  3. this.startActivity(intent);  

 

 

12. Call the dialer:

 

Java代码  收藏代码
  1. Uri uri = Uri.parse ("tel: xxxxxx");   
  2. Intent intent = new Intent (Intent.ACTION_DIAL, uri);   
  3. this.startActivity(intent);  

 

 

13. Call :

 

Java代码  收藏代码
  1. Uri uri = Uri.parse ("tel: xxxxxx");   
  2. Intent it = new Intent (Intent.ACTION_CALL, uri);    
  3. this.startActivity(intent);  
  4. /*permission:  
  5. <uses-permission id="android.permission.CALL_PHONE"> 
  6. </uses-permission> */  

 

14. Call to send text messages of the program :

 

Java代码  收藏代码
  1. Intent intent = new Intent (Intent.ACTION_VIEW);  
  2. intent.putExtra("sms_body""The SMS text");  
  3. intent.setType("vnd.android-dir/mms-sms");  
  4. this.startActivity(intent);  

 

 

15. Send SMS :

 

Java代码  收藏代码
  1. Uri uri = Uri.parse("smsto:0800000123");  
  2. Intent intent = new Intent(Intent.ACTION_SENDTO, uri);  
  3. intent.putExtra("sms_body""The SMS text");  
  4. this.startActivity(intent);  

 

 

16. Send MMS :

 

Java代码  收藏代码
  1. Uri uri = Uri.parse("content://media/external/images/media/23");  
  2. Intent intent = new Intent(Intent.ACTION_SEND);  
  3. intent.putExtra("sms_body""some text");  
  4. intent.putExtra(Intent.EXTRA_STREAM, uri);  
  5. intent.setType("image/png");   
  6. this.startActivity(intent);  

 

 

17. Send an Email :

 

Java代码  收藏代码
  1. Uri uri = Uri.parse ("mailto: xxx@abc.com");   
  2. Intent intent = new Intent (Intent.ACTION_SENDTO, uri);    
  3. this.startActivity(intent);  

 

 

18. Send an Email with body :

 

Java代码  收藏代码
  1. Intent intent = new Intent(Intent.ACTION_SEND);  
  2. intent.putExtra(Intent.EXTRA_EMAIL,"me@abc.com");  
  3. intent.putExtra(Intent.EXTRA_TEXT,"The email body text");  
  4. intent.setType ("text/plain");  
  5. this.startActivity(  
  6. Intent.createChooser(intent, "Choose Email Client"));    

 

 

19. Send an Email with body,to,cc :

 

 

Java代码  收藏代码
  1. Intent intent = new Intent(Intent.ACTION_SEND);  
  2. String [] tos ={"me@abc.com"};  
  3. String [] ccs ={"you@abc.com"};  
  4. intent.putExtra(Intent.EXTRA_EMAIL, tos);  
  5. intent.putExtra(Intent.EXTRA_CC, ccs);  
  6. intent.putExtra(Intent.EXTRA_TEXT, "The email body text");  
  7. intent.putExtra(Intent.EXTRA_SUBJECT, "The email subject text");  
  8. intent.setType("message/rfc822");  
  9. this.startActivity(  
  10. Intent.createChooser(intent, "Choose Email Client"));    

 

 

 

20. Send an Email with attachments :

 

 

Java代码  收藏代码
  1. Intent intent = new Intent(Intent.ACTION_SEND);  
  2. intent.putExtra(Intent.EXTRA_SUBJECT,"The email subject text");  
  3. intent.putExtra(Intent.EXTRA_STREAM,"file :///sdcard/mysong.mp3");  
  4. sendIntent.setType("audio/mp3");  
  5. this.startActivity(  
  6. Intent.createChooser(intent,"Choose Email Client"));    

 

 

 

21. Uninstall the program :

 

 

Java代码  收藏代码
  1. Uri uri = Uri.fromParts ("package", strPackageName, null);  
  2. Intent intent = new Intent (Intent.ACTION_DELETE, uri);   
  3. this.startActivity(  
  4. Intent.createChooser(intent,"Choose Email Client"));    

 

 

 

22. Install the apk :

 

Java代码  收藏代码
  1. Uri installUri = Uri.fromParts("package""xxx"null);  
  2. returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);   
  3. this.startActivity(returnIt);    

 

 

23. Search applications :

 

Java代码  收藏代码
  1. Uri uri = Uri.parse("market://search?Q=pname:pkg_name");  
  2. Intent intent = new Intent(Intent.ACTION_VIEW, uri);  
  3. this.startActivity(intent);    
  4. //Where pkg_name is the full package path for an application  

 

24. Google Search Launch Web Browser :

 

Java代码  收藏代码
  1. Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);  
  2. String term = "Android";  
  3. intent.putExtra(SearchManager.QUERY, term);  
  4. activity.startActivity(intent);  

 

 

25. Send text using Intent (to messaging apps) :

 

 

Java代码  收藏代码
  1. Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);  
  2. String msgBody = "This is message";  
  3. Intent intent = new Intent(android.content.Intent.ACTION_SEND);  
  4. intent.setType("text/plain");  
  5. intent.putExtra(android.content.Intent.EXTRA_SUBJECT,   
  6. "message subject");  
  7. intent.putExtra(android.content.Intent.EXTRA_TEXT, msgBody);  
  8. activity.startActivity(Intent.createChooser(intent, getResources().  
  9. getString(R.string.share_by_using)));  

 

26. Create Shortcut on "Home Screen" :

 

 

Java代码  收藏代码
  1. Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);  
  2. Intent toPrint = new Intent(this, anCreateshutcut.class);    
  3. Intent addShortcut = new Intent  
  4. ("com.android.launcher.action.INSTALL_SHORTCUT");    
  5. addShortcut.putExtra(Intent.EXTRA_SHORTCUT_NAME, "Shutcutname");    
  6. addShortcut.putExtra(Intent.EXTRA_SHORTCUT_INTENT, toPrint);    
  7. addShortcut.putExtra(Intent.EXTRA_SHORTCUT_ICON_RESOURCE,   
  8. Intent.ShortcutIconResource.fromContext(this, R.drawable.icon));  
  9.    
  10. Manifest file:  
  11. <intent-filter>    
  12.   <action android:name="android.intent.action.CREATE_SHORTCUT">    
  13.   <category android:name="android.intent.category.LAUNCHER">    
  14. </category></action></intent-filter>  
  15. <uses-permission android:name="com.android.launcher.  
  16. permission.INSTALL_SHORTCUT">  
  17. </uses-permission>  

 

1
2
分享到:
评论

相关推荐

    android各种文件的intent

    intent.setDataAndType(uri, "application/pdf"); //return intent; } ``` **解析:** - 这段代码同样定义了一个静态方法`getPdfFileIntent`来获取一个用于打开PDF文件的Intent。 - 创建Intent并设置其动作为`...

    android用于打开各种文件的intent.docx

    intent.setDataAndType(uri, "application/vnd.ms-powerpoint"); return intent; } ``` ##### 7. 打开音频文件 ```java public static Intent getAudioFileIntent(String param) { Intent intent = new Intent(...

    android用于打开各种文件的intent.pdf

    在上面的代码中,我们首先创建了一个 Intent 对象,并指定了动作为 "android.intent.action.VIEW",然后使用 setDataAndType 方法设置了 URI 和类型为 "application/pdf",最后使用 startActivity 方法启动该 Intent...

    打开附件.java

    intent.setDataAndType(uri, "application/vnd.ms-powerpoint"); context.startActivity(intent); }else if(name.lastIndexOf("zip") &gt;=0){ Toast.makeText(context, "没有可以打开的工具!", Toast.LENGTH_LONG...

    AppInstall.rar

    把其它app 放在assets/ 下面打包, 通过系统调用安装这个app //申请安装未知应用权限 ... intent.setDataAndType(uri, "application/vnd.android.package-archive"); Log.i(TAG,"btnAppInstallClick uri="+uri);

    Android无需root实现apk的静默安装

    intent.setDataAndType(Uri.fromFile&#40;file&#41;, application/vnd.android.package-archive); startActivity(intent); 但是,这并没有真正的实现静默安装,因为有用户界面,会让用户知道。那么,怎么

    兼容android7.0拍照或相册选择照片并裁剪

    intent.setDataAndType(getImageContentUri(this,file), "image/*");//自己使用Content Uri替换File Uri }else{ intent.setDataAndType(Uri.fromFile(file), "image/*"); } android7.0拍照或相册选择照片并裁剪 ...

    system-Intent

    intent.setDataAndType(Uri.parse("smsto:1234567890"), "text/plain"); // 设置接收方号码和文本类型 intent.putExtra("sms_body", "这是短信内容"); // 设置短信内容 if (intent.resolveActivity...

    Android-Music源码分析

    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...

    Android Intent切换.rar

    intent.setDataAndType(Uri.parse("file://path_to_file"), "text/plain"); startActivity(intent); ``` 这里,`ACTION_SEND`是自定义的动作,`Uri`用于指定数据,`text/plain`是数据的MIME类型。 3. **Intent...

    Android中使用Intent获取其他应用程序信息的方法介绍.pdf

    intent.setDataAndType(Uri.fromFile(f), type); startActivity(intent); } private String getMIMEType(File f) { // 获取MIME类型的具体实现 } ``` 总结,Intent在Android开发中扮演着核心角色,通过它开发者...

    适配android7.0获取文件的Uri的方法

    Intent i = new Intent(Intent.ACTION_VIEW); i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); if (Build.VERSION.SDK_INT &gt;= 24) { // 适配 android 7.0 ,不能直接访问原路径 // 需要对 intent 授权 i.addFlags...

    Android 用工具打开word,pdf等文件

    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 ...

    Activity数据传递案例代码

    intent.setDataAndType(Uri.parse("file:///path/to/video.mp4"), "video/mp4"); startActivity(intent); ``` 此外,Intent还支持Bundle作为额外数据的容器,允许更复杂的数据结构传递。例如: ```java Bundle ...

    android开发中Internet调用大全

    intent.setDataAndType(Uri.fromFile(file), "image/*"); startActivity(intent); ``` 这里需要注意的是,`Uri.fromFile(file)`用于获取文件的URI,而`"image/*"`则指定了数据类型为所有图片格式。 ### 二、地理...

    Intent跳转的三种写法

    intent.setDataAndType(Uri.fromFile(new File("path/to/image.jpg")), "image/*"); try { startActivity(intent); } catch (ActivityNotFoundException e) { Toast.makeText(this, "没有找到能处理图片的应用", ...

    显式和隐式、过滤器intent的使用

    intent.setDataAndType(Uri.fromFile(new File("path_to_image.jpg")), "image/*"); startActivity(intent); ``` 在这个例子中,ACTION_VIEW是动作,表示我们要查看某个内容,"image/*"是数据类型,指明我们希望...

    常用Intent

    intent.setDataAndType(Uri.fromFile(new File(fileName)), "application/vnd.android.package-archive"); mService.startActivity(intent); } ``` 这里的关键是设置`ACTION_VIEW`动作并指定文件类型为`...

Global site tag (gtag.js) - Google Analytics