Skip to content

Commit 07002d1

Browse files
committed
增加设置功能
1 parent 9640e62 commit 07002d1

File tree

5 files changed

+51
-27
lines changed

5 files changed

+51
-27
lines changed

app/src/main/java/io/github/materialapps/texteditor/ui/fragment/EditorFragment.java

+10-20
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package io.github.materialapps.texteditor.ui.fragment;
22

33
import androidx.appcompat.app.AppCompatActivity;
4+
import androidx.lifecycle.SavedStateViewModelFactory;
45
import androidx.lifecycle.ViewModelProvider;
56

67
import android.annotation.SuppressLint;
@@ -58,6 +59,7 @@
5859
import io.github.materialapps.texteditor.R;
5960
import io.github.materialapps.texteditor.databinding.FragmentEditorBinding;
6061
import io.github.materialapps.texteditor.logic.render.FormatRender;
62+
import io.github.materialapps.texteditor.ui.MainActivity;
6163
import io.github.materialapps.texteditor.util.ClipBrdUtil;
6264
import io.github.materialapps.texteditor.util.StatusUtil;
6365
import io.noties.markwon.Markwon;
@@ -117,7 +119,8 @@ public void onActivityCreated(@Nullable Bundle savedInstanceState) {
117119
.usePlugin(GlideImagesPlugin.create(Glide.with(getContext())))
118120
.build();
119121

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);
121124
if (!Environment.isExternalStorageManager()) {
122125
//申请权限
123126
MaterialAlertDialogBuilder builder = new MaterialAlertDialogBuilder(getContext());
@@ -216,7 +219,7 @@ public void accept(String s) throws Exception {
216219
//
217220
// @Override
218221
// public void onTextChanged(CharSequence s, int start, int before, int count) {
219-
// mViewModel.onTextChanged(s.toString());//todo:bad behaviour
222+
// mViewModel.onTextChanged(s.toString());
220223
// if(before!=0||count!=0){
221224
// mViewModel.changeSaveStatus(BaseApplication.MODIFIED);
222225
// }
@@ -232,7 +235,6 @@ public void accept(String s) throws Exception {
232235
if (showPreview) {
233236
Log.d(TAG, "onActivityCreated: ==========================预览工作=========================");
234237
if (markdownMode) {
235-
//Markwon markwon = Markwon.create(binding.txbPrevArea.getContext());
236238

237239
// markwon=Markwon.builder(binding.txbPrevArea.getContext())
238240
// // create default instance of TablePlugin
@@ -302,23 +304,6 @@ public void onActivityResult(int requestCode, int resultCode, @Nullable Intent d
302304
if (resultCode == Activity.RESULT_OK && data != null) {
303305
Uri fileUri = data.getData();
304306
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-
// }
322307
} else {
323308
Toast.makeText(getContext(), "无法打开文件,它可能不是文本文档或已被移动、删除或文件内容已损坏。", Toast.LENGTH_SHORT).show();
324309
}
@@ -771,6 +756,11 @@ private void handleMenu(Integer id) {
771756
break;
772757
}
773758

759+
case R.id.menu_options:{
760+
((MainActivity)(getActivity())).getNavController().navigate(R.id.settingsFragment);
761+
break;
762+
}
763+
774764
case R.id.menu_about_us:{
775765
View dialogView=LayoutInflater.from(getContext()).inflate(R.layout.flyout_about_us,null);
776766
TextView textView = dialogView.findViewById(R.id.txb_my_link);

app/src/main/java/io/github/materialapps/texteditor/ui/fragment/EditorViewModel.java

+25-1
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,21 @@
11
package io.github.materialapps.texteditor.ui.fragment;
22

3+
import android.app.Application;
4+
import android.content.SharedPreferences;
35
import android.net.Uri;
46

7+
import androidx.annotation.NonNull;
8+
import androidx.lifecycle.AndroidViewModel;
59
import androidx.lifecycle.LiveData;
610
import androidx.lifecycle.MutableLiveData;
711
import androidx.lifecycle.ViewModel;
12+
import androidx.preference.PreferenceManager;
813

914
import io.github.materialapps.texteditor.BaseApplication;
1015
import lombok.Getter;
1116
import lombok.Setter;
1217

13-
public class EditorViewModel extends ViewModel {
18+
public class EditorViewModel extends AndroidViewModel {
1419

1520
public static final int ZOOM_INC=2;//todo:自定义步进
1621
public static final int ZOOM_DEFAULT=18;
@@ -51,6 +56,25 @@ public class EditorViewModel extends ViewModel {
5156
@Setter
5257
private MutableLiveData<Uri> currentFileUri=new MutableLiveData<>();
5358

59+
@Getter
60+
@Setter
61+
private SharedPreferences spf;
62+
63+
public EditorViewModel(@NonNull Application application) {
64+
super(application);
65+
spf = PreferenceManager.getDefaultSharedPreferences(application);
66+
String mode = spf.getString("prev_mode", "markdown");
67+
boolean showPreview=spf.getBoolean("tow_panel",true);
68+
69+
show2Panel.setValue(showPreview);
70+
if("markdown".equals(mode)){
71+
markdownMode.setValue(true);
72+
}
73+
else{
74+
markdownMode.setValue(false);
75+
}
76+
}
77+
5478
public void incSize(){
5579
Integer cur = uiSize.getValue();
5680
if(cur!=null && cur+ZOOM_INC<=BaseApplication.MAX_UI_SIZE){

app/src/main/res/layout/fragment_editor.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
android:id="@+id/edit_main_toolbar"
1313
android:layout_width="match_parent"
1414
android:layout_height="wrap_content"
15-
app:title="简单文本编辑器"
15+
app:title="编辑笔记"
1616
app:menu="@menu/edit_menu"
1717
android:minHeight="?attr/actionBarSize"
1818
/>

app/src/main/res/menu/edit_menu.xml

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@
127127
</menu>
128128
</item>
129129
<item
130+
android:id="@+id/menu_options"
130131
android:title="选项"
131132
app:showAsAction="ifRoom"/>
132133
<item

app/src/main/res/xml/root_preferences.xml

+14-5
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,31 @@
1-
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto">
1+
<PreferenceScreen xmlns:app="http://schemas.android.com/apk/res-auto"
2+
app:title="软件设置"
3+
app:summary="所有设置将在重新启动软件后生效">
24

3-
<PreferenceCategory app:title="通用">
5+
<PreferenceCategory app:title="通用"
6+
app:summary="所有更改将在重新启动软件后生效">
47
<ListPreference
58
app:defaultValue="txt"
69
app:entries="@array/reply_entries"
710
app:entryValues="@array/reply_values"
8-
app:key="prev_Mode"
11+
app:key="prev_mode"
912
app:title="默认预览模式"
1013
app:useSimpleSummaryProvider="true" />
14+
15+
<SwitchPreference
16+
app:key="tow_panel"
17+
app:defaultValue="true"
18+
app:title="打开文档时默认开启预览面板"
19+
app:summary="您可以从“视图”-“打开/关闭预览”手动切换"/>
1120
</PreferenceCategory>
1221

1322
<PreferenceCategory app:title="AI设置">
1423

1524
<EditTextPreference
1625
app:key="api_key"
1726
app:title="GEMINI API密钥"
18-
app:useSimpleSummaryProvider="true" />
27+
app:useSimpleSummaryProvider="true"
28+
/>
1929

2030
<SwitchPreferenceCompat
2131
app:enabled="false"
@@ -41,5 +51,4 @@
4151
app:summary="计算机上需要安装了webview"/>
4252

4353
</PreferenceCategory>
44-
4554
</PreferenceScreen>

0 commit comments

Comments
 (0)