111
hxb
2022-11-24 0a3e07f10937484145f33c7560607b4b2353cb81
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
package com.mm.android.deviceaddmodule.p_errortip;
 
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
 
import com.mm.android.deviceaddmodule.R;
import com.mm.android.deviceaddmodule.base.BaseDevAddFragment;
 
/**
 * 不支持5G
 */
public class TipConnectFailFragment extends BaseDevAddFragment {
    public static TipConnectFailFragment newInstance() {
        TipConnectFailFragment fragment = new TipConnectFailFragment();
        return fragment;
    }
 
 
    @Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container,
                             Bundle savedInstanceState) {
        // Inflate the layout for this fragment
        return inflater.inflate(R.layout.fragment_tip_connect_fail, container, false);
    }
 
    @Override
    protected void initView(View view) {
    }
 
    @Override
    protected void initData() {
    }
}