1
1
package io .github .materialapps .texteditor .ui .fragment ;
2
2
3
3
import androidx .appcompat .app .AppCompatActivity ;
4
+ import androidx .lifecycle .SavedStateViewModelFactory ;
4
5
import androidx .lifecycle .ViewModelProvider ;
5
6
6
7
import android .annotation .SuppressLint ;
58
59
import io .github .materialapps .texteditor .R ;
59
60
import io .github .materialapps .texteditor .databinding .FragmentEditorBinding ;
60
61
import io .github .materialapps .texteditor .logic .render .FormatRender ;
62
+ import io .github .materialapps .texteditor .ui .MainActivity ;
61
63
import io .github .materialapps .texteditor .util .ClipBrdUtil ;
62
64
import io .github .materialapps .texteditor .util .StatusUtil ;
63
65
import io .noties .markwon .Markwon ;
@@ -117,7 +119,8 @@ public void onActivityCreated(@Nullable Bundle savedInstanceState) {
117
119
.usePlugin (GlideImagesPlugin .create (Glide .with (getContext ())))
118
120
.build ();
119
121
120
- mViewModel = new ViewModelProvider (this ).get (EditorViewModel .class );
122
+ //mViewModel = new ViewModelProvider(this).get(EditorViewModel.class);
123
+ mViewModel = new ViewModelProvider (this , new SavedStateViewModelFactory (getActivity ().getApplication (), this )).get (EditorViewModel .class );
121
124
if (!Environment .isExternalStorageManager ()) {
122
125
//申请权限
123
126
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder (getContext ());
@@ -216,7 +219,7 @@ public void accept(String s) throws Exception {
216
219
//
217
220
// @Override
218
221
// public void onTextChanged(CharSequence s, int start, int before, int count) {
219
- // mViewModel.onTextChanged(s.toString());//todo:bad behaviour
222
+ // mViewModel.onTextChanged(s.toString());
220
223
// if(before!=0||count!=0){
221
224
// mViewModel.changeSaveStatus(BaseApplication.MODIFIED);
222
225
// }
@@ -232,7 +235,6 @@ public void accept(String s) throws Exception {
232
235
if (showPreview ) {
233
236
Log .d (TAG , "onActivityCreated: ==========================预览工作=========================" );
234
237
if (markdownMode ) {
235
- //Markwon markwon = Markwon.create(binding.txbPrevArea.getContext());
236
238
237
239
// markwon=Markwon.builder(binding.txbPrevArea.getContext())
238
240
// // create default instance of TablePlugin
@@ -302,23 +304,6 @@ public void onActivityResult(int requestCode, int resultCode, @Nullable Intent d
302
304
if (resultCode == Activity .RESULT_OK && data != null ) {
303
305
Uri fileUri = data .getData ();
304
306
openDocument (fileUri );
305
- // mViewModel.setInstanceStatus(BaseApplication.OPEN_FILE);
306
- // mViewModel.setFileUriPath(fileUri);
307
- // //存储URI以便保存文档
308
- // ContentResolver crs = getActivity().getContentResolver();
309
- // try {
310
- // InputStream is = crs.openInputStream(fileUri);
311
- // StringBuffer sb = new StringBuffer();
312
- // BufferedReader reader = new BufferedReader(new InputStreamReader(is));
313
- // String line;
314
- // while ((line = reader.readLine()) != null) {
315
- // sb.append(line + "\n");
316
- // }
317
- // reader.close();
318
- // binding.txeEditor.setText(sb.toString());
319
- // } catch (IOException e) {
320
- // Log.e(TAG, "onActivityResult: ", e);
321
- // }
322
307
} else {
323
308
Toast .makeText (getContext (), "无法打开文件,它可能不是文本文档或已被移动、删除或文件内容已损坏。" , Toast .LENGTH_SHORT ).show ();
324
309
}
@@ -771,6 +756,11 @@ private void handleMenu(Integer id) {
771
756
break ;
772
757
}
773
758
759
+ case R .id .menu_options :{
760
+ ((MainActivity )(getActivity ())).getNavController ().navigate (R .id .settingsFragment );
761
+ break ;
762
+ }
763
+
774
764
case R .id .menu_about_us :{
775
765
View dialogView =LayoutInflater .from (getContext ()).inflate (R .layout .flyout_about_us ,null );
776
766
TextView textView = dialogView .findViewById (R .id .txb_my_link );
0 commit comments