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
package com.mm.android.deviceaddmodule.p_softap;
 
import android.os.Bundle;
 
import com.mm.android.deviceaddmodule.helper.PageNavigationHelper;
import com.mm.android.deviceaddmodule.presenter.BaseSoftApTipPresenter;
/**
 * 软AP添加引导提示页4
 */
public class TipSoftApStep4Fragment extends BaseTipSoftApFragment {
 
    public static TipSoftApStep4Fragment newInstance() {
        TipSoftApStep4Fragment fragment = new TipSoftApStep4Fragment();
        Bundle args = new Bundle();
        fragment.setArguments(args);
        return fragment;
    }
 
    @Override
    protected void gotoNextSoftApTipPage() {
        PageNavigationHelper.gotoSoftApTipConnectWifiPage(this);
    }
 
 
    @Override
    protected void initData() {
        super.initData();
        mPresenter=new BaseSoftApTipPresenter(this,3);
    }
}