wxr
2022-11-24 2af932533ef851bf983385244e9912976dbd4daa
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
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
package com.mm.android.deviceaddmodule.helper;
 
import android.os.Bundle;
import android.support.v4.app.Fragment;
import android.support.v4.app.FragmentActivity;
import android.support.v4.app.FragmentTransaction;
 
import com.lechange.opensdk.media.DeviceInitInfo;
import com.mm.android.deviceaddmodule.R;
import com.lechange.opensdk.searchwifi.WlanInfo;
import com.mm.android.deviceaddmodule.mobilecommon.AppConsume.ProviderManager;
import com.mm.android.deviceaddmodule.mobilecommon.common.LCConfiguration;
import com.mm.android.deviceaddmodule.mobilecommon.entity.AddApResult;
import com.mm.android.deviceaddmodule.mobilecommon.entity.deviceadd.DeviceAddInfo;
import com.mm.android.deviceaddmodule.model.DeviceAddModel;
import com.mm.android.deviceaddmodule.p_ap.ApBindSuccessFragment;
import com.mm.android.deviceaddmodule.p_ap.ApPairFragment;
import com.mm.android.deviceaddmodule.p_ap.GatewayListFragment;
import com.mm.android.deviceaddmodule.p_ap.TipApLightFragment;
import com.mm.android.deviceaddmodule.p_ap.TipApPowerFragment;
import com.mm.android.deviceaddmodule.p_ap.hubap.HubapGuide1Fragment;
import com.mm.android.deviceaddmodule.p_ap.hubap.HubapGuide2Fragment;
import com.mm.android.deviceaddmodule.p_ap.hubap.HubapGuide3Fragment;
import com.mm.android.deviceaddmodule.p_bindsuccess.BindSuccessFragment;
import com.mm.android.deviceaddmodule.p_cloudconnect.CloudConnectFragment;
import com.mm.android.deviceaddmodule.p_devicelocal.TipDeviceLocalFragment;
import com.mm.android.deviceaddmodule.p_devlogin.DevLoginFragment;
import com.mm.android.deviceaddmodule.p_devlogin.DevSecCodeFragment;
import com.mm.android.deviceaddmodule.p_errortip.ErrorTipFragment;
import com.mm.android.deviceaddmodule.p_init.InitFragment;
import com.mm.android.deviceaddmodule.p_init.SecurityCheckFragment;
import com.mm.android.deviceaddmodule.p_inputsn.DeviceDispatchFragment;
import com.mm.android.deviceaddmodule.p_inputsn.IMEIInputFragment;
import com.mm.android.deviceaddmodule.p_inputsn.ManualInputFragment;
import com.mm.android.deviceaddmodule.p_inputsn.ScanFragment;
import com.mm.android.deviceaddmodule.p_nb.TipNBFragment;
import com.mm.android.deviceaddmodule.p_offlineconfig.OfflineConfigFragment;
import com.mm.android.deviceaddmodule.p_softap.DevWifiListFragment;
import com.mm.android.deviceaddmodule.p_softap.HiddenWifiPwdFragment;
import com.mm.android.deviceaddmodule.p_softap.SoftApWifiPwdFragment;
import com.mm.android.deviceaddmodule.p_softap.TipSoftApConnectWifiFragment;
import com.mm.android.deviceaddmodule.p_softap.TipSoftApStep1Fragment;
import com.mm.android.deviceaddmodule.p_softap.TipSoftApStep2Fragment;
import com.mm.android.deviceaddmodule.p_softap.TipSoftApStep3Fragment;
import com.mm.android.deviceaddmodule.p_softap.TipSoftApStep4Fragment;
import com.mm.android.deviceaddmodule.p_softap.oversea.SoftApResultFragment;
import com.mm.android.deviceaddmodule.p_typechoose.TypeChooseFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.SmartConfigFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.TipLightFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.TipNetCablePluginFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.TipPowerFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.TipSameNetworkFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.TipSoundFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.TipWifiConnectFragment;
import com.mm.android.deviceaddmodule.p_wiredwireless.WifiPwdFragment;
 
/**
 * 设备添加页面跳转帮助类
 **/
public class PageNavigationHelper {
    public static final String TIP_POWER_FRAGMENT_TAG = "tip_power_fragment";
    public static final String WIFI_PWD_TAG = "wifi_pwd_fragment";
    public static final String SOFT_AP_TIP_TAG = "soft_ap_tip_fragment";
    public static final String AP_TIP_TAG = "ap_tip_fragment";
    public static final String SECURITY_CHECK_TAG = "security_check_fragment";
 
    private static void setFragmentAnimations(FragmentTransaction transaction, boolean anim) {
        if (anim) {
            transaction.setCustomAnimations(R.anim.slide_in_right,
                    R.anim.slide_out_left,
                    R.anim.slide_left_back_in,
                    R.anim.slide_right_back_out);
        }
    }
 
    private static void setFragmentAnimations(FragmentTransaction transaction) {
        setFragmentAnimations(transaction, true);
    }
 
    /**
     * 跳转至二维码扫描页
     *
     * @param fragmentActivity
     */
    public static void gotoScanPage(FragmentActivity fragmentActivity) {
        if (fragmentActivity == null || fragmentActivity.getSupportFragmentManager() == null) {
            return;
        }
        ScanFragment fragment = ScanFragment.newInstance();
        FragmentTransaction transaction = fragmentActivity.getSupportFragmentManager().beginTransaction();
        transaction.add(R.id.content, fragment);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至二维码扫描页
     *
     * @param fragmentActivity
     */
    public static void gotoDispatchPage(FragmentActivity fragmentActivity) {
        if (fragmentActivity == null || fragmentActivity.getSupportFragmentManager() == null) {
            return;
        }
        DeviceDispatchFragment fragment = DeviceDispatchFragment.newInstance();
        FragmentTransaction transaction = fragmentActivity.getSupportFragmentManager().beginTransaction();
        transaction.add(R.id.content, fragment);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至手动输入序列号页
     *
     * @param from
     */
    public static void gotoManualInputPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        ManualInputFragment fragment = ManualInputFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至输入imei页
     *
     * @param from
     */
    public static void gotoIMEIInputPage(Fragment from, boolean anim) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        IMEIInputFragment fragment = IMEIInputFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction, anim);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    public static void gotoIMEIInputPage(Fragment from) {
        gotoIMEIInputPage(from, true);
    }
 
    /**
     * 跳转至设备类型选择页
     *
     * @param from
     */
    public static void gotoTypeChoosePage(Fragment from, boolean anim) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TypeChooseFragment fragment = TypeChooseFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction, anim);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    public static void gotoTypeChoosePage(Fragment from) {
        gotoTypeChoosePage(from, true);
    }
 
    /**
     * 跳转至电源提示页
     *
     * @param from
     * @param isWirelessConfig
     */
    public static void gotoPowerTipPageNoAnim(Fragment from, boolean isWirelessConfig) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipPowerFragment fragment = TipPowerFragment.newInstance(isWirelessConfig);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(TIP_POWER_FRAGMENT_TAG);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至电源提示页
     *
     * @param from
     * @param isWirelessConfig
     */
    public static void gotoPowerTipPage(Fragment from, boolean isWirelessConfig) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipPowerFragment fragment = TipPowerFragment.newInstance(isWirelessConfig);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(TIP_POWER_FRAGMENT_TAG);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至网线提示页
     *
     * @param from
     */
    public static void gotoNetCableTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipNetCablePluginFragment fragment = TipNetCablePluginFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至同一网络提示页
     *
     * @param from
     */
    public static void gotoSameNetworkTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSameNetworkFragment fragment = TipSameNetworkFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至wifi连接提示页
     *
     * @param from
     */
    public static void gotoWifiConnectTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipWifiConnectFragment fragment = TipWifiConnectFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转至wifi密码输入页
     *
     * @param parent 父fragment
     * @param from
     */
    public static void gotoWifiPwdPage(Fragment parent, Fragment from) {
        if (parent == null || parent.getFragmentManager() == null) {
            return;
        }
        WifiPwdFragment fragment = WifiPwdFragment.newInstance();
        FragmentTransaction transaction = parent.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
 
        transaction.addToBackStack(WIFI_PWD_TAG);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转设备灯光提示页
     *
     * @param from
     */
    public static void gotoLightTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipLightFragment fragment = TipLightFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转设备声音提示页
     *
     * @param from
     */
    public static void gotoSoundTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSoundFragment fragment = TipSoundFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转设备声音提示页
     *
     * @param from
     */
    public static void gotoSmartConfigPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        SmartConfigFragment fragment = SmartConfigFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
 
    /**
     * 跳转到安全检查页
     *
     * @param from
     */
    public static void gotoSecurityCheckPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        SecurityCheckFragment fragment = SecurityCheckFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(SECURITY_CHECK_TAG);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到设备初始化页
     *
     * @param from
     */
    public static void gotoInitPage(Fragment from, DeviceInitInfo device_net_info_ex) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        InitFragment fragment = InitFragment.newInstance(device_net_info_ex);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到云平台连接页
     *
     * @param from
     */
    public static void gotoCloudConnectPage(Fragment from, boolean anim) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        CloudConnectFragment fragment = CloudConnectFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction, anim);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
 
    }
 
    public static void gotoCloudConnectPage(Fragment from) {
        gotoCloudConnectPage(from, true);
    }
 
    /**
     * 跳转到设备登录页
     *
     * @param from
     */
    public static void gotoDevLoginPage(Fragment from, boolean anim) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        DevLoginFragment fragment = DevLoginFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction, anim);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
        //离线进入的都认为走过初始化检查流程了,都默认上报
        DeviceAddInfo deviceAddInfo = DeviceAddModel.newInstance().getDeviceInfoCache();
    }
 
    public static void gotoDevLoginPage(Fragment from) {
        gotoDevLoginPage(from, true);
    }
 
    /**
     * 跳转到设备安全码验证页
     *
     * @param from
     */
    public static void gotoDevSecCodePage(Fragment from, boolean anim) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        DevSecCodeFragment fragment = DevSecCodeFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction, anim);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    public static void gotoDevSecCodePage(Fragment from) {
        gotoDevSecCodePage(from, true);
    }
 
    /**
     * 跳转到绑定设备连接页
     *
     * @param from
     */
    public static void gotoDeviceBindPage(Fragment from, boolean anim) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        CloudConnectFragment fragment = CloudConnectFragment.newInstance(true);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction, anim);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    public static void gotoDeviceBindPage(Fragment from) {
        gotoDeviceBindPage(from, true);
    }
 
    /**
     * 跳转到绑定成功提示页
     *
     * @param from
     */
    public static void gotoBindSuccessPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        BindSuccessFragment fragment = BindSuccessFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
        DeviceAddInfo deviceAddInfo = DeviceAddModel.newInstance().getDeviceInfoCache();
    }
 
    /**
     *
     *
     * @param from
     */
    public static void gotoErrorTipPage(Fragment from, int errorCode, boolean anim) {
        ErrorTipFragment fragment = ErrorTipFragment.newInstance(errorCode);
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction, anim);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    public static void gotoErrorTipPage(Fragment from, int errorCode) {
        gotoErrorTipPage(from, errorCode, true);
    }
 
    /**
     * 跳转到到软Ap添加引导页
     *
     * @param from
     */
    public static void gotoSoftApTipPage(Fragment from) {
        gotoSoftApTip1Page(from);
    }
 
    public static void gotoSoftApTip1Page(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSoftApStep1Fragment fragment = TipSoftApStep1Fragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(SOFT_AP_TIP_TAG);
        transaction.commitAllowingStateLoss();
 
    }
 
    public static void gotoSoftApTipPageNoAnim(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSoftApStep1Fragment fragment = TipSoftApStep1Fragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        transaction.replace(R.id.content, fragment, TipSoftApStep1Fragment.class.getName());
        transaction.addToBackStack(SOFT_AP_TIP_TAG);
        transaction.commitAllowingStateLoss();
 
    }
 
    public static void gotoSoftApTip2Page(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSoftApStep2Fragment fragment = TipSoftApStep2Fragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
 
    }
 
    public static void gotoSoftApTip3Page(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSoftApStep3Fragment fragment = TipSoftApStep3Fragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
 
    }
 
    public static void gotoSoftApTip4Page(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSoftApStep4Fragment fragment = TipSoftApStep4Fragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    public static void gotoSoftApTipConnectWifiPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipSoftApConnectWifiFragment fragment = TipSoftApConnectWifiFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到软Ap添加wifi列表
     *
     * @param from
     */
    public static void gotoSoftApWifiListPage(Fragment from, boolean isNotNeedLogin) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
 
        DevWifiListFragment fragment = DevWifiListFragment.newInstance(isNotNeedLogin);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到软Ap添加wifi列表
     *
     * @param from
     */
    public static void gotoSoftApWifiListPage(Fragment from) {
        gotoSoftApWifiListPage(from, false);
    }
 
    /**
     * 跳转到到软Ap添加wifi密码输入页
     *
     * @param from
     */
    public static void gotoSoftApWifiPwdPage(Fragment from, WlanInfo wlanInfo, boolean isNotNeedLogin) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        SoftApWifiPwdFragment fragment = SoftApWifiPwdFragment.newInstance(wlanInfo, isNotNeedLogin);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到软Ap添加wifi密码输入页
     *
     * @param from
     */
    public static void gotoHiddenWifiPwdPage(Fragment from, boolean isNotNeedLogin) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        HiddenWifiPwdFragment fragment = HiddenWifiPwdFragment.newInstance(isNotNeedLogin);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到软Ap添加wifi连接结果页(海外)
     *
     * @param from
     */
    public static void gotoSoftApResultdPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        SoftApResultFragment fragment = SoftApResultFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到配件添加网关列表页
     *
     * @param from
     */
    public static void gotoGatewayListPage(Fragment from, boolean hasSelectGateway) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        GatewayListFragment fragment = GatewayListFragment.newInstance(hasSelectGateway);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到配件电源引导页
     *
     * @param from
     */
    public static void gotoApPowerTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipApPowerFragment fragment = TipApPowerFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(AP_TIP_TAG);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到配件电源引导页
     *
     * @param from
     */
    public static void gotoApLightPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipApLightFragment fragment = TipApLightFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到配件配对页
     *
     * @param from
     */
    public static void gotoApPairPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        ApPairFragment fragment = ApPairFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到到配件绑定成功页
     *
     * @param from
     */
    public static void gotoApBindSuccessPage(Fragment from, AddApResult addApResult) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        ApBindSuccessFragment fragment = ApBindSuccessFragment.newInstance(addApResult);
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到电池相机配对引导页
     *
     * @param fragmentActivity
     */
    public static void gotoHubGuide1Page(FragmentActivity fragmentActivity, String sn, String hubType) {
        if (fragmentActivity == null || fragmentActivity.getSupportFragmentManager() == null) {
            return;
        }
        HubapGuide1Fragment fragment = HubapGuide1Fragment.newInstance(sn, hubType);
        FragmentTransaction transaction = fragmentActivity.getSupportFragmentManager().beginTransaction();
        transaction.add(R.id.content, fragment);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到电池相机配对引导页
     *
     * @param from
     */
    public static void gotoHubGuide2Page(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        HubapGuide2Fragment fragment = HubapGuide2Fragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到hub灯提示页
     *
     * @param from
     */
    public static void gotoHubGuide3Page(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        HubapGuide3Fragment fragment = HubapGuide3Fragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到NB设备添加引导页
     *
     * @param from
     */
    public static void gotoNBTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipNBFragment fragment = TipNBFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到离线配网
     *
     * @param fragmentActivity
     * @param sn
     * @param devModelName
     */
    public static void gotoOfflineConfigPage(FragmentActivity fragmentActivity, String sn, String devModelName, String imei) {
        if (fragmentActivity == null || fragmentActivity.getSupportFragmentManager() == null) {
            return;
        }
        OfflineConfigFragment fragment = OfflineConfigFragment.newInstance(sn, devModelName, imei);
        FragmentTransaction transaction = fragmentActivity.getSupportFragmentManager().beginTransaction();
        transaction.add(R.id.content, fragment);
        transaction.commitAllowingStateLoss();
    }
 
    public static void gotoDeviceSharePage(FragmentActivity fragmentActivity, String deviceSn) {
        Bundle bundle = new Bundle();
        bundle.putString(LCConfiguration.Device_ID, deviceSn);
        ProviderManager.getAppProvider().goDeviceSharePage(fragmentActivity, bundle);
    }
 
    /**
     * 跳转到设备本地配网引导页面
     *
     * @param from
     */
    public static void gotoLocationTipPage(Fragment from) {
        if (from == null || from.getFragmentManager() == null) {
            return;
        }
        TipDeviceLocalFragment fragment = TipDeviceLocalFragment.newInstance();
        FragmentTransaction transaction = from.getFragmentManager().beginTransaction();
        setFragmentAnimations(transaction);
        transaction.replace(R.id.content, fragment);
        transaction.addToBackStack(null);
        transaction.commitAllowingStateLoss();
    }
 
    /**
     * 跳转到蓝牙模块
     */
    public static void gotoAddBleLockPage(Bundle bundle) {
        //TODO 不会有逻辑进入
    }
}