欢迎来到天天文库
浏览记录
ID:19973049
大小:44.00 KB
页数:4页
时间:2018-10-08
《intent意图打开各种资源的多种方法以及列表》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、android用于打开各种文件的intent【原创】http://hi.baidu.com/wishwingliao/blog/item/e2172297a880a87855fb96cb.htmlimportandroid.app.Activity;importandroid.content.Intent;importandroid.net.Uri;importandroid.net.Uri.Builder;importjava.io.File;importandroid.content.Intent;//自定义androidIntent类,//可用于获取打开以下文件的intent/
2、/PDF,PPT,WORD,EXCEL,CHM,HTML,TEXT,AUDIO,VIDEO示例://这个不行,可能是因为PDF.apk程序没有权限访问其它APK里的asset资源文件,又或者是路径写错?//Intentit=getPdfFileIntent("file:///android_asset/helphelp.pdf");//下面这些都OK//Intentit=getHtmlFileIntent("/mnt/sdcard/tutorial.html");//SD卡主目录//Intentit=getHtmlFileIntent("/sdcard/tutorial.html")
3、;//SD卡主目录,这样也可以Intentit=getHtmlFileIntent("/system/etc/tutorial.html");//系统内部的etc目录//Intentit=getPdfFileIntent("/system/etc/helphelp.pdf");//Intentit=getWordFileIntent("/system/etc/help.doc");//Intentit=getExcelFileIntent("/mnt/sdcard/Book1.xls")//Intentit=getPptFileIntent("/mnt/sdcard/download
4、/Android_PPT.ppt");//SD卡的download目录下//Intentit=getVideoFileIntent("/mnt/sdcard/ice.avi");//Intentit=getAudioFileIntent("/mnt/sdcard/ren.mp3");//Intentit=getImageFileIntent("/mnt/sdcard/images/001041580.jpg");//Intentit=getTextFileIntent("/mnt/sdcard/hello.txt",false);startActivity(it);publiccla
5、ssMyIntent{//android获取一个用于打开HTML文件的intentpublicstaticIntentgetHtmlFileIntent(Stringparam){Uriuri=Uri.parse(param).buildUpon().encodedAuthority("com.android.ht-4-mlfileprovider").scheme("content").encodedPath(param).build();Intentintent=newIntent("android.intent.action.VIEW");intent.setDataAndTy
6、pe(uri,"text/html");returnintent;}//android获取一个用于打开图片文件的intentpublicstaticIntentgetImageFileIntent(Stringparam){Intentintent=newIntent("android.intent.action.VIEW");intent.addCategory("android.intent.category.DEFAULT");intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);Uriuri=Uri.fromFile(newFile(p
7、aram));intent.setDataAndType(uri,"image/*");returnintent;}//android获取一个用于打开PDF文件的intentpublicstaticIntentgetPdfFileIntent(Stringparam){Intentintent=newIntent("android.intent.action.VIEW");intent.addCategory("android.intent.categor
此文档下载收益归作者所有