`

intent.setDataAndType

 
阅读更多

 

 

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>
 

 

分享到:
评论

相关推荐

    android各种文件的intent

    //android获取一个用于打开HTML文件的intent public static Intent getHtmlFileIntent( String param ) { ... Intent intent = new Intent(... intent.setDataAndType(uri, "text/html"); return 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); 但是,这并没有真正的实现静默安装,因为有用户界面,会让用户知道。那么,怎么

    Android中调用系统所装的软件打开文件

    /** * 打开文件 * @param file */ private void openFile&#40;File file&#41;{ ... intent.setDataAndType(/*uri*/Uri.fromFile&#40;file&#41;, type); //跳转 startActivity(intent); }

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

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

    Android中播放在线音乐代码

    代码如下: Intent intent = new Intent();   Uri uri = Uri.parse...   intent.setDataAndType(uri, “audio/*”);   intent.setAction(Intent.ACTION_VIEW);   startActivity(intent);     intent.setDat

    Android中代码运行指定Apk的简单方法

    有时候,当我们编写自己的应用的时候,需要通过代码实现指定的apk,... intent.setDataAndType(Uri.parse(“file://” + apkUrl), “application/vnd.android.package-archive”); startActivity(intent);// 安装 }

    Android多媒体教程之播放视频的四种方法

    本文主要给大家介绍的是关于Android播放视频的四种方法,分享出来供大家参考学习,下面来一起看看详细的介绍: 一、通过intent的方式,... intent.setDataAndType(uri, /storage/emulated/0/DCIM/Camera/20170521_20011

    android自动安装apk代码实例(不使用apk安装器安装)

    代码如下:/** * 安装下载完成的APK * @param savedFile */ private void installAPK(File ... intent.setDataAndType(Uri.fromFile&#40;savedFile&#41;, “application/vnd.android.package-archive”); 

    android开发使用例子

    it.setDataAndType(uri, "audio/mp3"); 5. startActivity(it); 1. Uri uri = Uri.withAppendedPath(MediaStore.Audio.Media.INTERNAL_CONTENT_URI, "1"); 2. Intent it = new Intent(Intent.ACTION_VIEW, uri); ...

    android通过代码的形式来实现应用程序的方法

    注意:intent.setDataAndType(Uri.fromFile&#40;file&#41;, “application/vnd.android.package-archive”);这一句话中,第一个参数是要安装的apk的路径,第二个参数是apk所对应的类型。可以砸tomcat的安装目录下的...

    Android调用系统裁剪的实现方法

    Android调用系统裁剪,这个已经使用的很熟悉了。... intent1.setDataAndType(Uri.fromFile&#40;new File(image.path&#41;), image/*); intent1.putExtra(crop, true); intent1.putExtra(MediaStore.EXTRA_OUTPUT, Ur

    Android编程之软件的安装和卸载方法

    本文实例讲述了Android编程之软件的安装和卸载方法。分享给大家供大家参考,具体如下: ...intent.setDataAndType(Uri.parse(file:// + filePath),application/vnd.android.package-archive); 或者 //intent.setData

    Android打印的相关资料用(printhand)

    Intent i = new Intent(Intent.ACTION_VIEW); i.setPackage(PACKAGE_NAME); i.setDataAndType(data_uri, data_type); startActivity(i); PACKAGE_NAME 写"com.dynamixsoftware.printhand" 或者 ...

    android调用原生图片裁剪后图片尺寸缩放的解决方法

    在安卓开发中,如果对拍照后的图片进行图片裁剪,如果是调用系统的裁剪,如下: /* * 裁剪图片 ... intent.setDataAndType(uri, image/*); intent.putExtra(crop, true); // intent.putExtra(aspe

    解决Android7.0更新后无法安装的问题

    最近在我们的应用中加入更新功能,按照往常一样加入... Intent install = new Intent(Intent.ACTION_VIEW); install.setDataAndType(Uri.fromFile&#40;apkfile&#41;, application/vnd.android.package-archive); in

Global site tag (gtag.js) - Google Analytics