lmw
2023-04-03 16ea883d3c03fd8b910f9282aa1bc08378d40d54
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
package cn.sinata.xldutils.fragment;
 
import android.content.Context;
import android.os.Bundle;
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
 
import androidx.annotation.Nullable;
import androidx.fragment.app.Fragment;
 
import cn.sinata.xldutils.R;
import cn.sinata.xldutils.utils.DensityUtil;
import cn.sinata.xldutils.utils.Toast;
import cn.sinata.xldutils.view.utils.ViewHolder;
import cn.sinata.xldutils.widget.ProgressDialog;
import io.reactivex.disposables.CompositeDisposable;
import io.reactivex.disposables.Disposable;
 
 
/**
 * fragment ,单独在activity使用请设置setUserVisibleHint(true),结合viewpager使用不需要
 */
public abstract class BaseFragment extends Fragment {
 
    private ProgressDialog dialog;
    protected Context context;
    protected int mScreenWidth;
    public View DictorView;
    protected abstract int getContentViewLayoutID();
    protected abstract void onFirstVisibleToUser();
    protected abstract void onVisibleToUser();
    protected abstract void onInvisibleToUser();
 
    private boolean isFirstResume = true;
    private boolean isFirstVisible = true;
    private boolean isFirstInvisible = true;
    private boolean isPrepared;
    protected ViewHolder mHolder;
    private CompositeDisposable compositeSubscription;
 
    @Override
    public void onActivityCreated(Bundle savedInstanceState) {
        super.onActivityCreated(savedInstanceState);
        context = getActivity();
        mScreenWidth = DensityUtil.getDeviceWidth(context);
        initPrepare();
    }
 
    @Nullable
    @Override
    public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
        if (getContentViewLayoutID() != 0) {
            DictorView = inflater.inflate(getContentViewLayoutID(), null);
            return DictorView;
        } else {
            return super.onCreateView(inflater, container, savedInstanceState);
        }
    }
 
    @Override
    public void onViewCreated(View view, @Nullable Bundle savedInstanceState) {
        super.onViewCreated(view, savedInstanceState);
        compositeSubscription = new CompositeDisposable();
        mHolder = new ViewHolder(view);
        DictorView = view;
    }
 
    public void addDisposable(Disposable disposable){
        compositeSubscription.add(disposable);
    }
 
    @Override
    public void onResume() {
        super.onResume();
        if (isFirstResume){
            isFirstResume = false;
            return;
        }
        if (getUserVisibleHint()){
            onVisibleToUser();
        }
    }
    @Override
    public void onPause() {
        super.onPause();
        if (getUserVisibleHint()) {
            onInvisibleToUser();
        }
    }
    @Override
    public void setUserVisibleHint(boolean isVisibleToUser) {
        super.setUserVisibleHint(isVisibleToUser);
        if (isVisibleToUser) {
            if (isFirstVisible) {
                isFirstVisible = false;
                initPrepare();
            } else {
                onVisibleToUser();
            }
        } else {
            if (isFirstInvisible) {
                isFirstInvisible = false;
//                onFirstUserInvisible();
            } else {
               onInvisibleToUser();
            }
        }
    }
 
    protected <T extends View >T bind(int resId){
        return mHolder.bind(resId);
    }
 
    @Override
    public void onDetach() {
        super.onDetach();
 
        if (compositeSubscription!=null&&!compositeSubscription.isDisposed()){
            compositeSubscription.dispose();
        }
        // for bug ---> java.lang.IllegalStateException: Activity has been destroyed
        //noinspection TryWithIdenticalCatches
//        try {
//            Field childFragmentManager = Fragment.class.getDeclaredField("mChildFragmentManager");
//            childFragmentManager.setAccessible(true);
//            childFragmentManager.set(this, null);
//
//        } catch (NoSuchFieldException e) {
//            throw new RuntimeException(e);
//        } catch (IllegalAccessException e) {
//            throw new RuntimeException(e);
//        }
    }
 
    private synchronized void initPrepare() {
        if (isPrepared) {
            onFirstVisibleToUser();
        } else {
            isPrepared = true;
        }
    }
 
 
    /**
     * 查找    View
     * @param paramInt
     * @return
     */
    public final <T extends View>T findViewById(int paramInt) {
        if (getView()==null){
            return null;
        }
        //noinspection unchecked
        return (T)getView().findViewById(paramInt);
    }
 
    public View getDictorView() {
        return DictorView;
    }
 
 
    /**
     * 显示加载提示窗
     */
    public void showDialog(){
        showDialog("加载中...");
    }
 
    /**
     * 显示加载提示窗
     * @param msg 提示文字
     */
    protected void showDialog(CharSequence msg){
        showDialog(msg,false);
    }
 
    /**
     * 显示加载提示窗
     * @param msg 提示文字
     * @param canCancel 是否可手动取消
     */
    protected void showDialog(CharSequence msg,boolean canCancel){
        if (context == null) {
            return;
        }
        if(dialog == null){
            dialog = new ProgressDialog(context, R.style.Theme_ProgressDialog);
        }
        dialog.setCanceledOnTouchOutside(canCancel);
        dialog.setMessage(msg);
        if (!dialog.isShowing()) {
            dialog.show();
        }
    }
 
    /**
     * 关闭加载窗
     */
    public void dismissDialog(){
        if (dialog != null && dialog.isShowing()){
            dialog.dismiss();
        }
    }
 
    /**
     * 显示Toast
     * @param msg 显示文字
     */
    public void showToast(String msg){
        if (context == null) {
            return;
        }
        Toast.create(context).show(msg);
    }
}