接下来就是处理基类BaseFragment的问题了,这里贴出该类所有代码,具体请参考注释。
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
|
public
class
BaseFragment
extends
Fragment {
private
static
final
String TAG = BaseFragment.
class
.getSimpleName();
protected
Activity mActivity;
//所在activity
private
String mPageName;
//页面名
private
int
mRequestCode;
//用于startForResult的requestCode
private
CoreSwitcher mPageCoreSwitcher;
//openPageForResult接口,用于传递返回结果
private
OnFragmentFinishListener mFragmentFinishListener;
/**
* 设置该接口用于返回结果
* @param listener OnFragmentFinishListener对象
*/
public
void
setFragmentFinishListener(OnFragmentFinishListener listener) {
this
.mFragmentFinishListener = listener;
}
/**
* 设置openPageForResult打开的页面的返回结果
* @param resultCode 返回结果码
* @param intent 返回的intent对象
*/
public
void
setFragmentResult(
int
resultCode, Intent intent) {
if
(mFragmentFinishListener !=
null
) {
mFragmentFinishListener.onFragmentResult(mRequestCode, resultCode, intent);
}
}
/**
* 得到requestCode
* @return 请求码
*/
public
int
getRequestCode() {
return
this
.mRequestCode;
}
/**
* 设置requestCode
* @param code 请求码
*/
public
void
setRequestCode(
int
code) {
this
.mRequestCode = code;
}
/**
* 将Activity中onKeyDown在Fragment中实现,
* @param keyCode
* @param event
* @return
*/
public
boolean
onKeyDown(
int
keyCode, KeyEvent event) {
return
false
;
}
/**
* 数据设置,回调
* @param bundle
*/
public
void
onFragmentDataReset(Bundle bundle) {
}
/**
* 弹出栈顶的Fragment。如果Activity中只有一个Fragemnt时,Acitivity也退出。
*/
public
void
popToBack() {
this
.popToBack(
null
,
null
);
}
/**
* 如果在fragment栈中找到,则跳转到该fragment中去,否则弹出栈顶
* @param pageName 页面名
* @param bundle 参数
*/
public
final
void
popToBack(String pageName, Bundle bundle) {
CoreSwitcher coreSwitcher = getSwitcher();
if
(coreSwitcher !=
null
) {
if
(pageName ==
null
) {
coreSwitcher.popPage();
}
else
{
if
(
this
.findPage(pageName)) {
CoreSwitchBean page =
new
CoreSwitchBean(pageName, bundle);
coreSwitcher.gotoPage(page);
}
else
{
coreSwitcher.popPage();
}
}
}
else
{
Log.d(TAG,
"pageSwitcher null"
);
}
}
/**
* 得到页面切换Switcher,即BaseActivity
* @return Switcher
*/
public
CoreSwitcher getSwitcher() {
synchronized
(BaseFragment.
this
) {
// 加强保护,保证pageSwitcher 不为null
if
(mPageCoreSwitcher ==
null
) {
if
(
this
.mActivity !=
null
&&
this
.mActivity
instanceof
CoreSwitcher) {
mPageCoreSwitcher = (CoreSwitcher)
this
.mActivity;
}
if
(mPageCoreSwitcher ==
null
) {
BaseActivity topActivity = BaseActivity.getTopActivity();
if
(topActivity !=
null
&& topActivity
instanceof
CoreSwitcher) {
mPageCoreSwitcher = (CoreSwitcher) topActivity;
}
}
}
}
return
mPageCoreSwitcher;
}
public
void
setSwitcher(CoreSwitcher pageCoreSwitcher) {
this
.mPageCoreSwitcher = pageCoreSwitcher;
}
/**
* 查找fragment是否存在,通过Switcher查找
* @param pageName 页面名
* @return 是否找到
*/
public
boolean
findPage(String pageName) {
if
(pageName ==
null
) {
Log.d(TAG,
"pageName is null"
);
return
false
;
}
CoreSwitcher coreSwitcher = getSwitcher();
if
(coreSwitcher !=
null
) {
return
coreSwitcher.findPage(pageName);
}
else
{
Log.d(TAG,
"pageSwitch is null"
);
return
false
;
}
}
/**
* 对应fragment是否位于栈顶,通过Switcher查找
* @param fragmentTag fragment的tag
* @return 是否位于栈顶
*/
public
boolean
isFragmentTop(String fragmentTag) {
CoreSwitcher pageCoreSwitcher =
this
.getSwitcher();
if
(pageCoreSwitcher !=
null
) {
return
pageCoreSwitcher.isFragmentTop(fragmentTag);
}
else
{
Log.d(TAG,
"pageSwitcher is null"
);
return
false
;
}
}
/**
* 重新该方法用于获得返回的数据
* @param requestCode 请求码
* @param resultCode 返回结果码
* @param data 返回数据
*/
public
void
onFragmentResult(
int
requestCode,
int
resultCode, Intent data) {
Log.d(TAG,
"onFragmentResult from baseFragment:requestCode-"
+ requestCode +
" resultCode-"
+ resultCode);
}
/**
* 在当前activity中打开一个fragment,并添加到返回栈中
* @param pageName Fragemnt 名,在page.json中配置。
* @param bundle 页面跳转时传递的参数
* @param coreAnim 指定的动画理性 none/slide(左右平移)/present(由下向上)/fade(fade 动画)
* @return
*/
public
final
Fragment openPage(String pageName, Bundle bundle, CoreAnim coreAnim) {
return
this
.openPage(pageName, bundle, CoreSwitchBean.convertAnimations(coreAnim),
true
);
}
/**
* 在当前activity中打开一个fragment,并设置是否添加到返回栈
* @param pageName Fragemnt 名,在page.json中配置。
* @param bundle 页面跳转时传递的参数
* @param anim 指定的动画农林 none/slide(左右平移)/present(由下向上)/fade(fade 动画)
* @param addToBackStack 是否添加到用户操作栈中
* @return
*/
public f
inal
Fragment openPage(String pageName, Bundle bundle,
int
[] anim,
boolean
addToBackStack) {
return
this
.openPage(pageName, bundle, anim, addToBackStack,
false
);
}
/**
* 打开一个fragment并设置是否新开activity,设置是否添加返回栈
* @param pageName Fragemnt 名,在page.json中配置。
* @param bundle 页面跳转时传递的参数
* @param anim 指定的动画理性 none/slide(左右平移)/present(由下向上)/fade(fade 动画)
* @param addToBackStack 是否添加到用户操作栈中
* @param newActivity 该页面是否新建一个Activity
* @return
*/
public
final
Fragment openPage(String pageName, Bundle bundle,
int
[] anim,
boolean
addToBackStack,
boolean
newActivity) {
if
(pageName ==
null
) {
Log.d(TAG,
"pageName is null"
);
return
null
;
}
CoreSwitcher coreSwitcher =
this
.getSwitcher();
if
(coreSwitcher !=
null
) {
CoreSwitchBean page =
new
CoreSwitchBean(pageName, bundle, anim, addToBackStack, newActivity);
return
coreSwitcher.openPage(page);
}
else
{
Log.d(TAG,
"pageSwitcher is null"
);
return
null
;
}
}
/**
* 在当前activity中打开一个fragment,并添加到返回栈中
*
* @param pageName Fragemnt 名,在page.json中配置。
* @param bundle 页面跳转时传递的参数
* @param anim 指定的动画理性 none/slide(左右平移)/present(由下向上)/fade(fade 动画)
* @return
*/
public
final
Fragment openPage(String pageName, Bundle bundle,
int
[] anim) {
return
this
.openPage(pageName, bundle, anim,
true
);
}
/**
* 在当前activity中打开一个fragment,并设置是否添加到返回栈
*
* @param pageName Fragemnt 名,在page.json中配置。
* @param bundle 页面跳转时传递的参数
* @param coreAnim 指定的动画理性 none/slide(左右平移)/present(由下向上)/fade(fade 动画)
* @param addToBackStack 是否添加到用户操作栈中
* @return
*/
public
final
Fragment openPage(String pageName, Bundle bundle, CoreAnim coreAnim,
boolean
addToBackStack) {
return
this
.openPage(pageName, bundle, CoreSwitchBean.convertAnimations(coreAnim), addToBackStack,
false
);
}
/**
* 打开一个fragment并设置是否新开activity,设置是否添加返回栈
* @param pageName Fragemnt 名,在page.json中配置。
* @param bundle 页面跳转时传递的参数
* @param coreAnim 指定的动画理性 none/slide(左右平移)/present(由下向上)/fade(fade 动画)
* @param addToBackStack 是否添加到用户操作栈中
* @param newActivity 该页面是否新建一个Activity
* @return
*/
public
final
Fragment openPage(String pageName, Bundle bundle, CoreAnim coreAnim,
boolean
addToBackStack,
boolean
newActivity) {
return
this
.openPage(pageName, bundle, CoreSwitchBean.convertAnimations(coreAnim), addToBackStack, newActivity);
}
/**
* @param pageName
* @param bundle
* @param coreAnim
* @return
*/
public
Fragment gotoPage(String pageName, Bundle bundle, CoreAnim coreAnim) {
return
this
.gotoPage(pageName, bundle, coreAnim,
false
);
}
/**
* 新建或跳转到一个页面(Fragment)。找不到pageName Fragment时,就新建Fragment。找到pageName
* Fragment时,则弹出该Fragement到栈顶上的所有actvity和fragment
*
* @param pageName Fragemnt 名,在在configure.zip 的pageContext.txt中配置。
* @param bundle 页面跳转时传递的参数
* @param coreAnim 指定的动画理性 none/slide(左右平移)/present(由下向上)/fade(fade 动画)
* @param newActivity 该页面是否新建一个Activity
* @return
*/
public
Fragment gotoPage(String pageName, Bundle bundle, CoreAnim coreAnim,
boolean
newActivity) {
CoreSwitcher pageCoreSwitcher =
this
.getSwitcher();
if
(pageCoreSwitcher !=
null
) {
CoreSwitchBean page =
new
CoreSwitchBean(pageName, bundle, coreAnim,
true
, newActivity);
return
pageCoreSwitcher.gotoPage(page);
}
else
{
Log.d(TAG,
"pageSwitcher is null"
);
return
null
;
}
}
/**
* 打开fragment并请求获得返回值
* @param pageName
* @param bundle
* @param coreAnim
* @param requestCode 请求码
* @return
*/
public
final
Fragment openPageForResult(String pageName, Bundle bundle, CoreAnim coreAnim,
int
requestCode) {
return
this
.openPageForResult(
false
, pageName, bundle, coreAnim, requestCode);
}
/**
* 打开fragment并请求获得返回值,并设置是否在新activity中打开
* @param newActivity
* @param pageName
* @param bundle
* @param coreAnim
* @param requestCode
* @return
*/
public
final
Fragment openPageForResult(
boolean
newActivity, String pageName, Bundle bundle, CoreAnim coreAnim,
int
requestCode) {
CoreSwitcher pageCoreSwitcher =
this
.getSwitcher();
if
(pageCoreSwitcher !=
null
) {
CoreSwitchBean page =
new
CoreSwitchBean(pageName, bundle, coreAnim,
true
, newActivity);
page.setRequestCode(requestCode);
return
pageCoreSwitcher.openPageForResult(page,
this
);
}
else
{
Log.d(TAG,
"pageSwitcher is null"
);
return
null
;
}
}
@Override
public
void
onAttach(Activity activity) {
super
.onAttach(activity);
mActivity = activity;
}
@Override
public
void
onCreate(Bundle savedInstanceState) {
super
.onCreate(savedInstanceState);
if
(getPageName() !=
null
) {
Log.d(TAG,
"====Fragment.onCreate===="
+ getPageName());
}
}
|