diff --git a/src/notesmaster/.gitignore b/src/notesmaster/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/src/notesmaster/.gitignore @@ -0,0 +1,15 @@ +*.iml +.gradle +/local.properties +/.idea/caches +/.idea/libraries +/.idea/modules.xml +/.idea/workspace.xml +/.idea/navEditor.xml +/.idea/assetWizardSettings.xml +.DS_Store +/build +/captures +.externalNativeBuild +.cxx +local.properties diff --git a/src/notesmaster/.idea/.gitignore b/src/notesmaster/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/src/notesmaster/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/src/notesmaster/.idea/.name b/src/notesmaster/.idea/.name new file mode 100644 index 0000000..f33ecdc --- /dev/null +++ b/src/notesmaster/.idea/.name @@ -0,0 +1 @@ +notes-master \ No newline at end of file diff --git a/src/notesmaster/.idea/compiler.xml b/src/notesmaster/.idea/compiler.xml new file mode 100644 index 0000000..b86273d --- /dev/null +++ b/src/notesmaster/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/src/notesmaster/.idea/deploymentTargetSelector.xml b/src/notesmaster/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..bf83238 --- /dev/null +++ b/src/notesmaster/.idea/deploymentTargetSelector.xml @@ -0,0 +1,26 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/.idea/deviceManager.xml b/src/notesmaster/.idea/deviceManager.xml new file mode 100644 index 0000000..57a8236 --- /dev/null +++ b/src/notesmaster/.idea/deviceManager.xml @@ -0,0 +1,21 @@ + + + + + + \ No newline at end of file diff --git a/src/notesmaster/.idea/gradle.xml b/src/notesmaster/.idea/gradle.xml new file mode 100644 index 0000000..7b3006b --- /dev/null +++ b/src/notesmaster/.idea/gradle.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/.idea/migrations.xml b/src/notesmaster/.idea/migrations.xml new file mode 100644 index 0000000..f8051a6 --- /dev/null +++ b/src/notesmaster/.idea/migrations.xml @@ -0,0 +1,10 @@ + + + + + + \ No newline at end of file diff --git a/src/notesmaster/.idea/misc.xml b/src/notesmaster/.idea/misc.xml new file mode 100644 index 0000000..b2c751a --- /dev/null +++ b/src/notesmaster/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/.idea/runConfigurations.xml b/src/notesmaster/.idea/runConfigurations.xml new file mode 100644 index 0000000..16660f1 --- /dev/null +++ b/src/notesmaster/.idea/runConfigurations.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/.gitignore b/src/notesmaster/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/src/notesmaster/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/src/notesmaster/app/build.gradle.kts b/src/notesmaster/app/build.gradle.kts new file mode 100644 index 0000000..6e90cae --- /dev/null +++ b/src/notesmaster/app/build.gradle.kts @@ -0,0 +1,61 @@ +plugins { + alias(libs.plugins.android.application) +} + +android { + namespace = "net.micode.notes" + compileSdk = 34 + + defaultConfig { + applicationId = "net.micode.notes" + minSdk = 34 + targetSdk = 34 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + packaging { + resources.excludes.add("META-INF/DEPENDENCIES"); + resources.excludes.add("META-INF/NOTICE"); + resources.excludes.add("META-INF/LICENSE"); + resources.excludes.add("META-INF/LICENSE.txt"); + resources.excludes.add("META-INF/NOTICE.txt"); + } + + buildTypes { + release { + isMinifyEnabled = false + proguardFiles( + getDefaultProguardFile("proguard-android-optimize.txt"), + "proguard-rules.pro" + ) + } + } + compileOptions { + sourceCompatibility = JavaVersion.VERSION_11 + targetCompatibility = JavaVersion.VERSION_11 + } +} + dependencies { + + implementation(libs.appcompat) + implementation(libs.material) + implementation(libs.activity) + implementation(libs.constraintlayout) + // 部分需要重新修改 + // implementation(fileTree(mapOf( + // "dir" to "D:\\Code\\AndroidCode\\Notesmaster\\httpcomponents-client-4.5.14-bin\\lib", + // "include" to listOf("*.aar", "*.jar"), + // "exclude" to listOf("") + // ))) + //修改为如下代码: + implementation(files("D:\\app\\notesmaster\\httpcomponents-clent-4.5.14-bin\\lib\\httpclient-osgi-4.5.14.jar")) + implementation(files("D:\\app\\notesmaster\\httpcomponents-clent-4.5.14-bin\\lib\\httpclient-win-4.5.14.jar")) + implementation(files("D:\\app\\notesmaster\\httpcomponents-clent-4.5.14-bin\\lib\\httpcore-4.4.16.jar")) + testImplementation(libs.junit) + androidTestImplementation(libs.ext.junit) + androidTestImplementation(libs.espresso.core) + } + + diff --git a/src/notesmaster/app/proguard-rules.pro b/src/notesmaster/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/src/notesmaster/app/proguard-rules.pro @@ -0,0 +1,21 @@ +# Add project specific ProGuard rules here. +# You can control the set of applied configuration files using the +# proguardFiles setting in build.gradle. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} + +# Uncomment this to preserve the line number information for +# debugging stack traces. +#-keepattributes SourceFile,LineNumberTable + +# If you keep the line number information, uncomment this to +# hide the original source file name. +#-renamesourcefileattribute SourceFile \ No newline at end of file diff --git a/src/notesmaster/app/src/androidTest/java/net/micode/notes/ExampleInstrumentedTest.java b/src/notesmaster/app/src/androidTest/java/net/micode/notes/ExampleInstrumentedTest.java new file mode 100644 index 0000000..a889a75 --- /dev/null +++ b/src/notesmaster/app/src/androidTest/java/net/micode/notes/ExampleInstrumentedTest.java @@ -0,0 +1,26 @@ +package net.micode.notes; + +import android.content.Context; + +import androidx.test.platform.app.InstrumentationRegistry; +import androidx.test.ext.junit.runners.AndroidJUnit4; + +import org.junit.Test; +import org.junit.runner.RunWith; + +import static org.junit.Assert.*; + +/** + * Instrumented test, which will execute on an Android device. + * + * @see Testing documentation + */ +@RunWith(AndroidJUnit4.class) +public class ExampleInstrumentedTest { + @Test + public void useAppContext() { + // Context of the app under test. + Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext(); + assertEquals("net.micode.notes", appContext.getPackageName()); + } +} \ No newline at end of file diff --git a/src/notesmaster/app/src/main/AndroidManifest.xml b/src/notesmaster/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..e061ed5 --- /dev/null +++ b/src/notesmaster/app/src/main/AndroidManifest.xml @@ -0,0 +1,156 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/src/notes/MainActivity.java b/src/notesmaster/app/src/main/java/net/micode/notes/MainActivity.java similarity index 100% rename from src/notes/MainActivity.java rename to src/notesmaster/app/src/main/java/net/micode/notes/MainActivity.java diff --git a/src/notes/data/Contact.java b/src/notesmaster/app/src/main/java/net/micode/notes/data/Contact.java similarity index 100% rename from src/notes/data/Contact.java rename to src/notesmaster/app/src/main/java/net/micode/notes/data/Contact.java diff --git a/src/notes/data/Notes.java b/src/notesmaster/app/src/main/java/net/micode/notes/data/Notes.java similarity index 100% rename from src/notes/data/Notes.java rename to src/notesmaster/app/src/main/java/net/micode/notes/data/Notes.java diff --git a/src/notes/data/NotesDatabaseHelper.java b/src/notesmaster/app/src/main/java/net/micode/notes/data/NotesDatabaseHelper.java similarity index 100% rename from src/notes/data/NotesDatabaseHelper.java rename to src/notesmaster/app/src/main/java/net/micode/notes/data/NotesDatabaseHelper.java diff --git a/src/notes/data/NotesProvider.java b/src/notesmaster/app/src/main/java/net/micode/notes/data/NotesProvider.java similarity index 100% rename from src/notes/data/NotesProvider.java rename to src/notesmaster/app/src/main/java/net/micode/notes/data/NotesProvider.java diff --git a/src/notes/gtask/data/MetaData.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/MetaData.java similarity index 100% rename from src/notes/gtask/data/MetaData.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/MetaData.java diff --git a/src/notes/gtask/data/Node.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/Node.java similarity index 100% rename from src/notes/gtask/data/Node.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/Node.java diff --git a/src/notes/gtask/data/SqlData.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/SqlData.java similarity index 100% rename from src/notes/gtask/data/SqlData.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/SqlData.java diff --git a/src/notes/gtask/data/SqlNote.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/SqlNote.java similarity index 100% rename from src/notes/gtask/data/SqlNote.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/SqlNote.java diff --git a/src/notes/gtask/data/Task.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/Task.java similarity index 100% rename from src/notes/gtask/data/Task.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/Task.java diff --git a/src/notes/gtask/data/TaskList.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/TaskList.java similarity index 100% rename from src/notes/gtask/data/TaskList.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/data/TaskList.java diff --git a/src/notes/gtask/exception/ActionFailureException.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/exception/ActionFailureException.java similarity index 100% rename from src/notes/gtask/exception/ActionFailureException.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/exception/ActionFailureException.java diff --git a/src/notes/gtask/exception/NetworkFailureException.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/exception/NetworkFailureException.java similarity index 100% rename from src/notes/gtask/exception/NetworkFailureException.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/exception/NetworkFailureException.java diff --git a/src/notes/gtask/remote/GTaskASyncTask.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskASyncTask.java similarity index 100% rename from src/notes/gtask/remote/GTaskASyncTask.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskASyncTask.java diff --git a/src/notes/gtask/remote/GTaskClient.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskClient.java similarity index 100% rename from src/notes/gtask/remote/GTaskClient.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskClient.java diff --git a/src/notes/gtask/remote/GTaskManager.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskManager.java similarity index 100% rename from src/notes/gtask/remote/GTaskManager.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskManager.java diff --git a/src/notes/gtask/remote/GTaskSyncService.java b/src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskSyncService.java similarity index 100% rename from src/notes/gtask/remote/GTaskSyncService.java rename to src/notesmaster/app/src/main/java/net/micode/notes/gtask/remote/GTaskSyncService.java diff --git a/src/notes/model/Note.java b/src/notesmaster/app/src/main/java/net/micode/notes/model/Note.java similarity index 100% rename from src/notes/model/Note.java rename to src/notesmaster/app/src/main/java/net/micode/notes/model/Note.java diff --git a/src/notes/model/WorkingNote.java b/src/notesmaster/app/src/main/java/net/micode/notes/model/WorkingNote.java similarity index 100% rename from src/notes/model/WorkingNote.java rename to src/notesmaster/app/src/main/java/net/micode/notes/model/WorkingNote.java diff --git a/src/notes/tool/BackupUtils.java b/src/notesmaster/app/src/main/java/net/micode/notes/tool/BackupUtils.java similarity index 100% rename from src/notes/tool/BackupUtils.java rename to src/notesmaster/app/src/main/java/net/micode/notes/tool/BackupUtils.java diff --git a/src/notes/tool/DataUtils.java b/src/notesmaster/app/src/main/java/net/micode/notes/tool/DataUtils.java similarity index 100% rename from src/notes/tool/DataUtils.java rename to src/notesmaster/app/src/main/java/net/micode/notes/tool/DataUtils.java diff --git a/src/notes/tool/GTaskStringUtils.java b/src/notesmaster/app/src/main/java/net/micode/notes/tool/GTaskStringUtils.java similarity index 100% rename from src/notes/tool/GTaskStringUtils.java rename to src/notesmaster/app/src/main/java/net/micode/notes/tool/GTaskStringUtils.java diff --git a/src/notes/tool/ResourceParser.java b/src/notesmaster/app/src/main/java/net/micode/notes/tool/ResourceParser.java similarity index 100% rename from src/notes/tool/ResourceParser.java rename to src/notesmaster/app/src/main/java/net/micode/notes/tool/ResourceParser.java diff --git a/src/notes/ui/AlarmAlertActivity.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/AlarmAlertActivity.java similarity index 100% rename from src/notes/ui/AlarmAlertActivity.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/AlarmAlertActivity.java diff --git a/src/notes/ui/AlarmInitReceiver.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/AlarmInitReceiver.java similarity index 100% rename from src/notes/ui/AlarmInitReceiver.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/AlarmInitReceiver.java diff --git a/src/notes/ui/AlarmReceiver.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/AlarmReceiver.java similarity index 100% rename from src/notes/ui/AlarmReceiver.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/AlarmReceiver.java diff --git a/src/notes/ui/DateTimePicker.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/DateTimePicker.java similarity index 100% rename from src/notes/ui/DateTimePicker.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/DateTimePicker.java diff --git a/src/notes/ui/DateTimePickerDialog.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/DateTimePickerDialog.java similarity index 100% rename from src/notes/ui/DateTimePickerDialog.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/DateTimePickerDialog.java diff --git a/src/notes/ui/DropdownMenu.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/DropdownMenu.java similarity index 100% rename from src/notes/ui/DropdownMenu.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/DropdownMenu.java diff --git a/src/notes/ui/FoldersListAdapter.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/FoldersListAdapter.java similarity index 100% rename from src/notes/ui/FoldersListAdapter.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/FoldersListAdapter.java diff --git a/src/notes/ui/NoteEditActivity.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java similarity index 100% rename from src/notes/ui/NoteEditActivity.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/NoteEditActivity.java diff --git a/src/notes/ui/NoteEditText.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/NoteEditText.java similarity index 100% rename from src/notes/ui/NoteEditText.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/NoteEditText.java diff --git a/src/notes/ui/NoteItemData.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/NoteItemData.java similarity index 100% rename from src/notes/ui/NoteItemData.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/NoteItemData.java diff --git a/src/notes/ui/NotesListActivity.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesListActivity.java similarity index 100% rename from src/notes/ui/NotesListActivity.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesListActivity.java diff --git a/src/notes/ui/NotesListAdapter.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesListAdapter.java similarity index 100% rename from src/notes/ui/NotesListAdapter.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesListAdapter.java diff --git a/src/notes/ui/NotesListItem.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesListItem.java similarity index 100% rename from src/notes/ui/NotesListItem.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesListItem.java diff --git a/src/notes/ui/NotesPreferenceActivity.java b/src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesPreferenceActivity.java similarity index 100% rename from src/notes/ui/NotesPreferenceActivity.java rename to src/notesmaster/app/src/main/java/net/micode/notes/ui/NotesPreferenceActivity.java diff --git a/src/notes/widget/NoteWidgetProvider.java b/src/notesmaster/app/src/main/java/net/micode/notes/widget/NoteWidgetProvider.java similarity index 100% rename from src/notes/widget/NoteWidgetProvider.java rename to src/notesmaster/app/src/main/java/net/micode/notes/widget/NoteWidgetProvider.java diff --git a/src/notes/widget/NoteWidgetProvider_2x.java b/src/notesmaster/app/src/main/java/net/micode/notes/widget/NoteWidgetProvider_2x.java similarity index 100% rename from src/notes/widget/NoteWidgetProvider_2x.java rename to src/notesmaster/app/src/main/java/net/micode/notes/widget/NoteWidgetProvider_2x.java diff --git a/src/notes/widget/NoteWidgetProvider_4x.java b/src/notesmaster/app/src/main/java/net/micode/notes/widget/NoteWidgetProvider_4x.java similarity index 100% rename from src/notes/widget/NoteWidgetProvider_4x.java rename to src/notesmaster/app/src/main/java/net/micode/notes/widget/NoteWidgetProvider_4x.java diff --git a/src/notesmaster/app/src/main/res/color/primary_text_dark.xml b/src/notesmaster/app/src/main/res/color/primary_text_dark.xml new file mode 100644 index 0000000..7c85459 --- /dev/null +++ b/src/notesmaster/app/src/main/res/color/primary_text_dark.xml @@ -0,0 +1,22 @@ + + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/color/secondary_text_dark.xml b/src/notesmaster/app/src/main/res/color/secondary_text_dark.xml new file mode 100644 index 0000000..c1c2384 --- /dev/null +++ b/src/notesmaster/app/src/main/res/color/secondary_text_dark.xml @@ -0,0 +1,20 @@ + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/bg_btn_set_color.png b/src/notesmaster/app/src/main/res/drawable-hdpi/bg_btn_set_color.png new file mode 100644 index 0000000..5eb5d44 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/bg_btn_set_color.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/bg_color_btn_mask.png b/src/notesmaster/app/src/main/res/drawable-hdpi/bg_color_btn_mask.png new file mode 100644 index 0000000..100db77 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/bg_color_btn_mask.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/call_record.png b/src/notesmaster/app/src/main/res/drawable-hdpi/call_record.png new file mode 100644 index 0000000..fb88ca4 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/call_record.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/clock.png b/src/notesmaster/app/src/main/res/drawable-hdpi/clock.png new file mode 100644 index 0000000..5f2ae9a Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/clock.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/delete.png b/src/notesmaster/app/src/main/res/drawable-hdpi/delete.png new file mode 100644 index 0000000..643de3e Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/delete.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/dropdown_icon.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/dropdown_icon.9.png new file mode 100644 index 0000000..5525025 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/dropdown_icon.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_blue.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_blue.9.png new file mode 100644 index 0000000..55a1856 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_blue.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_green.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_green.9.png new file mode 100644 index 0000000..2cb2d60 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_green.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_red.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_red.9.png new file mode 100644 index 0000000..bae944a Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_red.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_blue.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_blue.9.png new file mode 100644 index 0000000..96e6092 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_blue.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_green.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_green.9.png new file mode 100644 index 0000000..08d8644 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_green.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_red.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_red.9.png new file mode 100644 index 0000000..9c430e5 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_red.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_white.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_white.9.png new file mode 100644 index 0000000..19e8d95 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_white.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_yellow.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_yellow.9.png new file mode 100644 index 0000000..bf8f580 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_title_yellow.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_white.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_white.9.png new file mode 100644 index 0000000..918f7a6 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_white.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/edit_yellow.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_yellow.9.png new file mode 100644 index 0000000..10cb642 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/edit_yellow.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/font_large.png b/src/notesmaster/app/src/main/res/drawable-hdpi/font_large.png new file mode 100644 index 0000000..78cf2e6 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/font_large.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/font_normal.png b/src/notesmaster/app/src/main/res/drawable-hdpi/font_normal.png new file mode 100644 index 0000000..9de7ced Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/font_normal.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/font_size_selector_bg.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/font_size_selector_bg.9.png new file mode 100644 index 0000000..be8e64c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/font_size_selector_bg.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/font_small.png b/src/notesmaster/app/src/main/res/drawable-hdpi/font_small.png new file mode 100644 index 0000000..d3ff104 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/font_small.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/font_super.png b/src/notesmaster/app/src/main/res/drawable-hdpi/font_super.png new file mode 100644 index 0000000..85b13a1 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/font_super.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/icon_app.png b/src/notesmaster/app/src/main/res/drawable-hdpi/icon_app.png new file mode 100644 index 0000000..418aadc Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/icon_app.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_background.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_background.png new file mode 100644 index 0000000..087e1f9 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_background.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_down.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_down.9.png new file mode 100644 index 0000000..b88eebf Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_down.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_middle.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_middle.9.png new file mode 100644 index 0000000..96b1c8b Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_middle.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_single.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_single.9.png new file mode 100644 index 0000000..d7e7206 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_single.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_up.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_up.9.png new file mode 100644 index 0000000..632e88c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_blue_up.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_folder.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_folder.9.png new file mode 100644 index 0000000..829f61b Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_folder.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_footer_bg.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_footer_bg.9.png new file mode 100644 index 0000000..5325c25 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_footer_bg.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_down.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_down.9.png new file mode 100644 index 0000000..64a39d9 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_down.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_middle.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_middle.9.png new file mode 100644 index 0000000..897325a Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_middle.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_single.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_single.9.png new file mode 100644 index 0000000..c83405f Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_single.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_up.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_up.9.png new file mode 100644 index 0000000..141f9e1 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_green_up.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_down.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_down.9.png new file mode 100644 index 0000000..4224309 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_down.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_middle.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_middle.9.png new file mode 100644 index 0000000..9988f17 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_middle.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_single.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_single.9.png new file mode 100644 index 0000000..587c348 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_single.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_up.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_up.9.png new file mode 100644 index 0000000..46b4757 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_red_up.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_down.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_down.9.png new file mode 100644 index 0000000..29f9d8c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_down.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_middle.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_middle.9.png new file mode 100644 index 0000000..77a4ab4 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_middle.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_single.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_single.9.png new file mode 100644 index 0000000..3e79189 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_single.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_up.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_up.9.png new file mode 100644 index 0000000..e23cd5c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_white_up.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_down.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_down.9.png new file mode 100644 index 0000000..31cfc1e Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_down.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_middle.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_middle.9.png new file mode 100644 index 0000000..b6549b2 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_middle.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_single.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_single.9.png new file mode 100644 index 0000000..3faf507 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_single.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_up.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_up.9.png new file mode 100644 index 0000000..4ae791c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/list_yellow_up.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/menu_delete.png b/src/notesmaster/app/src/main/res/drawable-hdpi/menu_delete.png new file mode 100644 index 0000000..ccdfc4b Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/menu_delete.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/menu_move.png b/src/notesmaster/app/src/main/res/drawable-hdpi/menu_move.png new file mode 100644 index 0000000..1140b71 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/menu_move.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/new_note_normal.png b/src/notesmaster/app/src/main/res/drawable-hdpi/new_note_normal.png new file mode 100644 index 0000000..e24e0d1 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/new_note_normal.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/new_note_pressed.png b/src/notesmaster/app/src/main/res/drawable-hdpi/new_note_pressed.png new file mode 100644 index 0000000..c748936 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/new_note_pressed.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/note_edit_color_selector_panel.png b/src/notesmaster/app/src/main/res/drawable-hdpi/note_edit_color_selector_panel.png new file mode 100644 index 0000000..fc49552 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/note_edit_color_selector_panel.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/notification.png b/src/notesmaster/app/src/main/res/drawable-hdpi/notification.png new file mode 100644 index 0000000..b13ab4a Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/notification.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/search_result.png b/src/notesmaster/app/src/main/res/drawable-hdpi/search_result.png new file mode 100644 index 0000000..ff2befd Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/search_result.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/selected.png b/src/notesmaster/app/src/main/res/drawable-hdpi/selected.png new file mode 100644 index 0000000..b889bef Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/selected.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/title_alert.png b/src/notesmaster/app/src/main/res/drawable-hdpi/title_alert.png new file mode 100644 index 0000000..544ee9c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/title_alert.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/title_bar_bg.9.png b/src/notesmaster/app/src/main/res/drawable-hdpi/title_bar_bg.9.png new file mode 100644 index 0000000..eb6bff0 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/title_bar_bg.9.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_blue.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_blue.png new file mode 100644 index 0000000..a1707f4 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_blue.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_green.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_green.png new file mode 100644 index 0000000..f86886c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_green.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_red.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_red.png new file mode 100644 index 0000000..0e66c29 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_red.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_white.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_white.png new file mode 100644 index 0000000..5f0619a Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_white.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_yellow.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_yellow.png new file mode 100644 index 0000000..12d1c2b Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_2x_yellow.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_blue.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_blue.png new file mode 100644 index 0000000..9183738 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_blue.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_green.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_green.png new file mode 100644 index 0000000..fa8b452 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_green.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_red.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_red.png new file mode 100644 index 0000000..62de074 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_red.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_white.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_white.png new file mode 100644 index 0000000..a37d67c Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_white.png differ diff --git a/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_yellow.png b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_yellow.png new file mode 100644 index 0000000..d7c5fa4 Binary files /dev/null and b/src/notesmaster/app/src/main/res/drawable-hdpi/widget_4x_yellow.png differ diff --git a/src/notesmaster/app/src/main/res/drawable/ic_launcher_background.xml b/src/notesmaster/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/src/notesmaster/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/notesmaster/app/src/main/res/drawable/ic_launcher_foreground.xml b/src/notesmaster/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/src/notesmaster/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/drawable/new_note.xml b/src/notesmaster/app/src/main/res/drawable/new_note.xml new file mode 100644 index 0000000..2154ebc --- /dev/null +++ b/src/notesmaster/app/src/main/res/drawable/new_note.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/src/notesmaster/app/src/main/res/layout/account_dialog_title.xml b/src/notesmaster/app/src/main/res/layout/account_dialog_title.xml new file mode 100644 index 0000000..7717112 --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/account_dialog_title.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/layout/activity_main.xml b/src/notesmaster/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..86a5d97 --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,19 @@ + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/layout/add_account_text.xml b/src/notesmaster/app/src/main/res/layout/add_account_text.xml new file mode 100644 index 0000000..c799178 --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/add_account_text.xml @@ -0,0 +1,32 @@ + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/layout/datetime_picker.xml b/src/notesmaster/app/src/main/res/layout/datetime_picker.xml new file mode 100644 index 0000000..f10d592 --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/datetime_picker.xml @@ -0,0 +1,56 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/layout/dialog_edit_text.xml b/src/notesmaster/app/src/main/res/layout/dialog_edit_text.xml new file mode 100644 index 0000000..361b39a --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/dialog_edit_text.xml @@ -0,0 +1,23 @@ + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/layout/folder_list_item.xml b/src/notesmaster/app/src/main/res/layout/folder_list_item.xml new file mode 100644 index 0000000..77e8148 --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/folder_list_item.xml @@ -0,0 +1,29 @@ + + + + + + + + \ No newline at end of file diff --git a/src/notesmaster/app/src/main/res/layout/note_edit.xml b/src/notesmaster/app/src/main/res/layout/note_edit.xml new file mode 100644 index 0000000..10b2aa7 --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/note_edit.xml @@ -0,0 +1,400 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/notesmaster/app/src/main/res/layout/note_edit_list_item.xml b/src/notesmaster/app/src/main/res/layout/note_edit_list_item.xml new file mode 100644 index 0000000..a885f9c --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/note_edit_list_item.xml @@ -0,0 +1,39 @@ + + + + + + + + + + diff --git a/src/notesmaster/app/src/main/res/layout/note_item.xml b/src/notesmaster/app/src/main/res/layout/note_item.xml new file mode 100644 index 0000000..d541f6a --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/note_item.xml @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/notesmaster/app/src/main/res/layout/note_list.xml b/src/notesmaster/app/src/main/res/layout/note_list.xml new file mode 100644 index 0000000..6b25d38 --- /dev/null +++ b/src/notesmaster/app/src/main/res/layout/note_list.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + + + +