webview文件选择-input-file适配
# Android webview 文件选择-input-file 适配
# webview回调
<input type="file" xxx
public class FileChooseImpl extends MiddlewareWebChromeBase {
/**
* <input type="file" id="file1" accept="image/*,.pdf" capture="camera" @change="changePic" multiple="true"/>
* @param webView
* @param filePathCallback error时必须有回调,否则无法再次点击
* @param fileChooserParams
* @return
*/
@RequiresApi(api = Build.VERSION_CODES.LOLLIPOP)
@Override
public boolean onShowFileChooser(WebView webView, ValueCallback<Uri[]> filePathCallback, FileChooserParams fileChooserParams) {
Intent intent0 = fileChooserParams.createIntent();
//Intent { act=android.intent.action.GET_CONTENT cat=[android.intent.category.OPENABLE] typ=image/png }
LogUtils.i("getTitle-"+fileChooserParams.getTitle(),
//mode: 0 -单选 1-多选
"getMode-"+fileChooserParams.getMode(),
"getFilenameHint-"+fileChooserParams.getFilenameHint(),
fileChooserParams.getAcceptTypes(),
"isCaptureEnabled-"+fileChooserParams.isCaptureEnabled(),
//Use getAcceptTypes to determine suitable capture devices. caputure="user" 前置摄像头,但传不过来,只有一个是否capture. 响应策略: 为capture时,仅允许拍照/录制,false时,允许录制或从相册选择
intent0);
String[] washMimeTypes = MimeTypeUtil.washMimeType(fileChooserParams.getAcceptTypes());
LogUtils.d(washMimeTypes);
if(fileChooserParams.getMode() == FileChooserParams.MODE_OPEN_MULTIPLE){
MediaPickUtil.pickMultiFiles(new MyCommonCallback<List<Uri>>() {
@Override
public void onSuccess(List<Uri> uris) {
Uri[] uris1 = new Uri[uris.size()];
for (int i = 0; i < uris.size(); i++) {
uris1[i] = uris.get(i);
}
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
return true;
}
if(isOnlyImage(washMimeTypes)){
if(fileChooserParams.isCaptureEnabled()){
CaptureImageUtil.takePicture(false,new MyCommonCallback<String>() {
@Override
public void onSuccess(String s) {
Uri[] uris1 = {Uri.fromFile(new File(s))};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}else {
MediaPickOrCaptureUtil.pickImageOrTakePhoto(false,new MyCommonCallback<Uri>() {
@Override
public void onSuccess(Uri uri) {
Uri[] uris1 = {uri};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}
return true;
}
if(isOnlyVideo(washMimeTypes)){
if(fileChooserParams.isCaptureEnabled()){
CaptureVideoUtil.startVideoCapture(false,30,1024*1024*1024,new MyCommonCallback<String>() {
@Override
public void onSuccess(String s) {
Uri[] uris1 = {Uri.fromFile(new File(s))};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}else {
MediaPickOrCaptureUtil.pickOrRecordVideo(false,30,new MyCommonCallback<Uri>() {
@Override
public void onSuccess(Uri uri) {
Uri[] uris1 = {uri};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}
return true;
}
if(isOnlyVideoOrImage(washMimeTypes)){
if(fileChooserParams.isCaptureEnabled()){
new XPopup.Builder(ActivityUtils.getTopActivity())
.asBottomList(StringUtils.getString(R.string.meida_pick_please_choose),
new String[]{StringUtils.getString(R.string.meida_pick_take_photo),
StringUtils.getString(R.string.meida_pick_record_video)},
new OnSelectListener() {
@Override
public void onSelect(int position, String text) {
if(position ==1){
CaptureVideoUtil.startVideoCapture(false,30,1024*1024*1024,new MyCommonCallback<String>() {
@Override
public void onSuccess(String s) {
Uri[] uris1 = {Uri.fromFile(new File(s))};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}else if(position ==0){
CaptureImageUtil.takePicture(false,new MyCommonCallback<String>() {
@Override
public void onSuccess(String s) {
Uri[] uris1 = {Uri.fromFile(new File(s))};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}
}
})
.show();
}else {
MediaPickOrCaptureUtil.pickOrCaptureImageOrVideo(true,30, new MyCommonCallback<Uri>() {
@Override
public void onSuccess(Uri uri) {
Uri[] uris1 = {uri};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}
return true;
}
if(isOnlyAudio(washMimeTypes)){
if(fileChooserParams.isCaptureEnabled()){
CaptureAudioUtil.startRecord(new MyCommonCallback<Uri>() {
@Override
public void onSuccess(Uri uri) {
Uri[] uris1 = {uri};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}else {
MediaPickOrCaptureUtil.pickOrRecordAudio(new MyCommonCallback<Uri>() {
@Override
public void onSuccess(Uri uri) {
Uri[] uris1 = {uri};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
});
}
return true;
}
MediaPickUtil.pickOne(new MyCommonCallback<Uri>() {
@Override
public void onSuccess(Uri uri) {
Uri[] uris1 = {uri};
filePathCallback.onReceiveValue(uris1);
}
@Override
public void onError(String code, String msg, @Nullable Throwable throwable) {
MyCommonCallback.super.onError(code, msg, throwable);
filePathCallback.onReceiveValue(null);
}
},washMimeTypes);
return true;
}
private boolean isOnlyImage(String[] washMimeTypes) {
for (String washMimeType : washMimeTypes) {
if(!washMimeType.startsWith("image")){
return false;
}
}
return true;
}
private boolean isOnlyVideo(String[] washMimeTypes) {
for (String washMimeType : washMimeTypes) {
if(!washMimeType.startsWith("video")){
return false;
}
}
return true;
}
private boolean isOnlyAudio(String[] washMimeTypes) {
for (String washMimeType : washMimeTypes) {
if(!washMimeType.startsWith("audio")){
return false;
}
}
return true;
}
private boolean isOnlyVideoOrImage(String[] washMimeTypes) {
for (String washMimeType : washMimeTypes) {
if(!washMimeType.startsWith("video") && !washMimeType.startsWith("image")){
return false;
}
}
return true;
}
}
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
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
# webRTC-user.getUserMedia
# 代码
api 'com.github.hss01248.ImageLoader:baseWebview:3.5.2'
1
basewebview/dom/FileChooseImpl (opens new window)
# flutter参考
编辑 (opens new window)
上次更新: 2022/12/20, 10:13:10