android打开文件 博客分类: android android打开文件
程序员文章站
2024-03-14 22:22:23
...
class OpenFiles { public static Intent getImageFileIntent(File 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(file); intent.setDataAndType(uri, "image/*"); return intent; } intent = OpenFiles.getImageFileIntent(new File(record+"/"+filename)); startActivity(intent);
可以改变setDataAndType的值 打开不同的文件
推荐阅读
-
android打开文件 博客分类: android android打开文件
-
Android 判断两个图片相等 博客分类: android android
-
Listener 博客分类: Android UI 界面 Android事件ListenerOnLongClickListenerOnTouchListener
-
android网络状态检查 博客分类: android android网络检查
-
tab布局 博客分类: Android viewpager导航栏androidfragment
-
Android 判断两个图片相等 博客分类: android android
-
android layout_weight属性学习巩固 博客分类: Android UI 界面 面试layout-weight
-
android 按钮选中效果 博客分类: android
-
android 按钮选中效果 博客分类: android
-
安卓开发gridview根据屏幕宽度行列相同的单元格集合 博客分类: Android UI 界面 gridview 九宫格 动态设定