1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
import android.app.Activity;
import android.content.Intent;
import android.net.Uri;
import android.net.Uri.Builder;
import java.io.File;
import
android.content.Intent;
//自定义android Intent类, //可用于获取打开以下文件的intent //PDF,PPT,WORD,EXCEL,CHM,HTML,TEXT,AUDIO,VIDEO public
class MyIntent
{ //android获取一个用于打开HTML文件的intent
public
static Intent getHtmlFileIntent( String param )
{
Uri uri = Uri.parse(param ).buildUpon().encodedAuthority( "com.android.htmlfileprovider" ).scheme( "content" ).encodedPath(param ).build();
Intent intent = new
Intent( "android.intent.action.VIEW" );
intent.setDataAndType(uri, "text/html" );
return
intent;
}
//android获取一个用于打开图片文件的intent
public
static Intent getImageFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "image/*" );
return
intent;
}
//android获取一个用于打开PDF文件的intent
public
static Intent getPdfFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "application/pdf" );
return
intent;
}
//android获取一个用于打开文本文件的intent
public
static Intent getTextFileIntent( String paramString, boolean
paramBoolean)
{
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" );
}
while
( true )
{
return
intent;
Uri uri2 = Uri.fromFile( new
File(param ));
intent.setDataAndType(uri2, "text/plain" );
}
}
//android获取一个用于打开音频文件的intent
public
static Intent getAudioFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "audio/*" );
return
intent;
}
//android获取一个用于打开视频文件的intent
public
static Intent getVideoFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "video/*" );
return
intent;
}
//android获取一个用于打开CHM文件的intent
public
static Intent getChmFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "application/x-chm" );
return
intent;
}
//android获取一个用于打开Word文件的intent
public
static Intent getWordFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "application/msword" );
return
intent;
}
//android获取一个用于打开Excel文件的intent
public
static Intent getExcelFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "application/vnd.ms-excel" );
return
intent;
}
//android获取一个用于打开PPT文件的intent
public
static Intent getPptFileIntent( String param )
{
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(param ));
intent.setDataAndType(uri, "application/vnd.ms-powerpoint" );
return
intent;
}
|
相关文章
- 09-17【2021-10-30】通过删除项目目录下的 .idea 文件夹并在 Android Studio 中重新打开项目,解决一些古怪的问题
- 09-17Android 打开系统文件管理器,并返回选中文件的路径
- 09-17android intent打开各种文件(txt、apk、ppt,面试官不讲武德
- 09-17Cookie是储存在电脑文本文件中的数据,用于保存访问者的信息,并可以在下次打开页面时引用。
- 09-17android-寻找用于smali文件的解析器
- 09-17android intent打开各种格式文档方法,android实战
- 09-17Android 各种MIME类型和文件类型的匹配表
- 09-17关于各种文件用Editplus的方式打开出现“向程序发送命令时出现问题”的解决方法
- 09-17Android开发之Intent.Action 各种Action的常见作用
- 09-17android 保存文件的各种目录列表