|
16 | 16 |
|
17 | 17 | import net.kdt.pojavlaunch.R;
|
18 | 18 | import net.kdt.pojavlaunch.Tools;
|
| 19 | +import net.kdt.pojavlaunch.extra.ExtraCore; |
19 | 20 | import net.kdt.pojavlaunch.mirrors.DownloadMirror;
|
20 | 21 | import net.kdt.pojavlaunch.modloaders.ModloaderDownloadListener;
|
21 | 22 | import net.kdt.pojavlaunch.modloaders.ModloaderListenerProxy;
|
|
25 | 26 | import java.io.IOException;
|
26 | 27 |
|
27 | 28 | public abstract class ModVersionListFragment<T> extends Fragment implements Runnable, View.OnClickListener, ExpandableListView.OnChildClickListener, ModloaderDownloadListener {
|
28 |
| - public static final String TAG = "ForgeInstallFragment"; |
| 29 | + private final String mExtraTag; |
29 | 30 | private ExpandableListView mExpandableListView;
|
30 | 31 | private ProgressBar mProgressBar;
|
31 | 32 | private LayoutInflater mInflater;
|
32 | 33 | private View mRetryView;
|
33 | 34 |
|
34 |
| - public ModVersionListFragment() { |
| 35 | + public ModVersionListFragment(String mFragmentTag) { |
35 | 36 | super(R.layout.fragment_mod_version_list);
|
| 37 | + this.mExtraTag = mFragmentTag + "_proxy"; |
36 | 38 | }
|
37 | 39 |
|
38 | 40 | @Override
|
@@ -148,11 +150,19 @@ public void onDownloadError(Exception e) {
|
148 | 150 | });
|
149 | 151 | }
|
150 | 152 |
|
| 153 | + private void setTaskProxy(ModloaderListenerProxy proxy) { |
| 154 | + ExtraCore.setValue(mExtraTag, proxy); |
| 155 | + } |
| 156 | + |
| 157 | + private ModloaderListenerProxy getTaskProxy() { |
| 158 | + return (ModloaderListenerProxy) ExtraCore.getValue(mExtraTag); |
| 159 | + } |
| 160 | + |
151 | 161 | public abstract int getTitleText();
|
152 | 162 | public abstract int getNoDataMsg();
|
153 |
| - public abstract ModloaderListenerProxy getTaskProxy(); |
| 163 | + |
154 | 164 | public abstract T loadVersionList() throws IOException;
|
155 |
| - public abstract void setTaskProxy(ModloaderListenerProxy proxy); |
| 165 | + |
156 | 166 | public abstract ExpandableListAdapter createAdapter(T versionList, LayoutInflater layoutInflater);
|
157 | 167 | public abstract Runnable createDownloadTask(Object selectedVersion, ModloaderListenerProxy listenerProxy);
|
158 | 168 | public abstract void onDownloadFinished(Context context, File downloadedFile);
|
|
0 commit comments