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
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
package com.miya.fastcashier.log
import android.app.Activity
import android.app.Fragment
import android.content.Intent
import android.os.Bundle
import androidx.annotation.StyleRes
import com.miya.fastcashier.R
/**
* 作者:Leon
* 时间:2017/3/20 16:57
*/
class LFilePicker {
private var mActivity: Activity? = null
private var mFragment: Fragment? = null
private var mTitle: String? = null
private var mTitleColor: String? = null
private var theme = R.style.LFileTheme
private var mTitleStyle = R.style.LFileToolbarTextStyle
private var mBackgroundColor: String? = null
private var mBackStyle = 0
private var mRequestCode = 0
private var mMutilyMode = true
private var mChooseMode = true
private var mAddText: String? = null
private var mIconStyle = 0
private var mFileTypes: Array<String>? = null
private var mNotFoundFiles: String? = null
private var mMaxNum = 0
private var mStartPath: String? = null
private var mIsGreater = true //是否大于
private var mFileSize: Long = 0
private var mFileName: String? = null
/**
* 绑定Activity
*
* @param activity
* @return
*/
fun withActivity(activity: Activity?): LFilePicker {
mActivity = activity
return this
}
/**
* 绑定Fragment
*
* @param fragment
* @return
*/
fun withFragment(fragment: Fragment?): LFilePicker {
mFragment = fragment
return this
}
/**
* 设置主标题
*
* @param title
* @return
*/
fun withTitle(title: String?): LFilePicker {
mTitle = title
return this
}
/**
* 设置辩题颜色
*
* @param color
* @return
*/
@Deprecated("")
fun withTitleColor(color: String?): LFilePicker {
mTitleColor = color
return this
}
/**
* 设置主题
*
* @param theme
* @return
*/
fun withTheme(@StyleRes theme: Int): LFilePicker {
this.theme = theme
return this
}
/**
* 设置标题的颜色和字体大小
*
* @param style
* @return
*/
fun withTitleStyle(@StyleRes style: Int): LFilePicker {
mTitleStyle = style
return this
}
/**
* 设置背景色
*
* @param color
* @return
*/
fun withBackgroundColor(color: String?): LFilePicker {
mBackgroundColor = color
return this
}
/**
* 请求码
*
* @param requestCode
* @return
*/
fun withRequestCode(requestCode: Int): LFilePicker {
mRequestCode = requestCode
return this
}
/**
* 设置返回图标
*
* @param backStyle
* @return
*/
fun withBackIcon(backStyle: Int): LFilePicker {
mBackStyle = 0 //默认样式
mBackStyle = backStyle
return this
}
/**
* 设置选择模式,默认为true,多选;false为单选
*
* @param isMutily
* @return
*/
fun withMutilyMode(isMutily: Boolean): LFilePicker {
mMutilyMode = isMutily
return this
}
/**
* 设置多选时按钮文字
*
* @param text
* @return
*/
fun withAddText(text: String?): LFilePicker {
mAddText = text
return this
}
/**
* 设置文件夹图标风格
*
* @param style
* @return
*/
fun withIconStyle(style: Int): LFilePicker {
mIconStyle = style
return this
}
fun withFileFilter(arrs: Array<String>): LFilePicker {
mFileTypes = arrs
return this
}
/**
* 没有选中文件时的提示信息
*
* @param notFoundFiles
* @return
*/
fun withNotFoundBooks(notFoundFiles: String?): LFilePicker {
mNotFoundFiles = notFoundFiles
return this
}
/**
* 设置最大选中数量
*
* @param num
* @return
*/
fun withMaxNum(num: Int): LFilePicker {
mMaxNum = num
return this
}
/**
* 设置选择上传的文件
*
* @param fileName
* @return
*/
fun withFileName(fileName: String?): LFilePicker {
mFileName = fileName
return this
}
/**
* 设置初始显示路径
*
* @param path
* @return
*/
fun withStartPath(path: String?): LFilePicker {
mStartPath = path
return this
}
/**
* 设置选择模式,true为文件选择模式,false为文件夹选择模式,默认为true
*
* @param chooseMode
* @return
*/
fun withChooseMode(chooseMode: Boolean): LFilePicker {
mChooseMode = chooseMode
return this
}
/**
* 设置文件大小过滤方式:大于指定大小或者小于指定大小
*
* @param isGreater true:大于 ;false:小于,同时包含指定大小在内
* @return
*/
fun withIsGreater(isGreater: Boolean): LFilePicker {
mIsGreater = isGreater
return this
}
/**
* 设置过滤文件大小
*
* @param fileSize
* @return
*/
fun withFileSize(fileSize: Long): LFilePicker {
mFileSize = fileSize
return this
}
fun start() {
if (mActivity == null && mFragment == null) {
throw RuntimeException("You must pass Activity or Fragment by withActivity or withFragment or withSupportFragment method")
}
val intent = initIntent()
val bundle = bundle
intent.putExtras(bundle)
if (mActivity != null) {
mActivity!!.startActivityForResult(intent, mRequestCode)
} else {
mFragment!!.startActivityForResult(intent, mRequestCode)
}
}
private fun initIntent(): Intent {
val intent: Intent
intent = if (mActivity != null) {
Intent(mActivity, LFilePickerActivity::class.java)
} else {
Intent(mFragment!!.activity, LFilePickerActivity::class.java)
}
return intent
}
private val bundle: Bundle
private get() {
val paramEntity = LFileParamEntity()
paramEntity.title = mTitle
paramEntity.theme = theme
paramEntity.titleColor = mTitleColor
paramEntity.titleStyle = mTitleStyle
paramEntity.backgroundColor = mBackgroundColor
paramEntity.backIcon = mBackStyle
paramEntity.isMutilyMode = mMutilyMode
paramEntity.addText = mAddText
paramEntity.iconStyle = mIconStyle
paramEntity.fileTypes = mFileTypes
paramEntity.notFoundFiles = mNotFoundFiles
paramEntity.maxNum = mMaxNum
paramEntity.isChooseMode = mChooseMode
paramEntity.path = mStartPath
paramEntity.fileSize = mFileSize
paramEntity.fileName = mFileName
paramEntity.isGreater = mIsGreater
val bundle = Bundle()
bundle.putSerializable("param", paramEntity)
return bundle
}
}