diff --git a/EmotionPost.zip b/EmotionPost.zip new file mode 100644 index 0000000..1fd1a4d Binary files /dev/null and b/EmotionPost.zip differ diff --git a/MyApplication/.idea/.name b/MyApplication/.idea/.name new file mode 100644 index 0000000..b3405b3 --- /dev/null +++ b/MyApplication/.idea/.name @@ -0,0 +1 @@ +My Application \ No newline at end of file diff --git a/MyApplication/.idea/AndroidProjectSystem.xml b/MyApplication/.idea/AndroidProjectSystem.xml new file mode 100644 index 0000000..4a53bee --- /dev/null +++ b/MyApplication/.idea/AndroidProjectSystem.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/MyApplication/.idea/vcs.xml b/MyApplication/.idea/vcs.xml new file mode 100644 index 0000000..6c0b863 --- /dev/null +++ b/MyApplication/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MyApplication/.idea/workspace.xml b/MyApplication/.idea/workspace.xml new file mode 100644 index 0000000..17e4fdc --- /dev/null +++ b/MyApplication/.idea/workspace.xml @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + 1775029254474 + + + + \ No newline at end of file diff --git a/MyApplication2/.gitignore b/MyApplication2/.gitignore new file mode 100644 index 0000000..aa724b7 --- /dev/null +++ b/MyApplication2/.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/MyApplication2/.idea/.gitignore b/MyApplication2/.idea/.gitignore new file mode 100644 index 0000000..26d3352 --- /dev/null +++ b/MyApplication2/.idea/.gitignore @@ -0,0 +1,3 @@ +# Default ignored files +/shelf/ +/workspace.xml diff --git a/MyApplication2/.idea/.name b/MyApplication2/.idea/.name new file mode 100644 index 0000000..b3405b3 --- /dev/null +++ b/MyApplication2/.idea/.name @@ -0,0 +1 @@ +My Application \ No newline at end of file diff --git a/MyApplication2/.idea/AndroidProjectSystem.xml b/MyApplication2/.idea/AndroidProjectSystem.xml new file mode 100644 index 0000000..4a53bee --- /dev/null +++ b/MyApplication2/.idea/AndroidProjectSystem.xml @@ -0,0 +1,6 @@ + + + + + \ No newline at end of file diff --git a/MyApplication2/.idea/compiler.xml b/MyApplication2/.idea/compiler.xml new file mode 100644 index 0000000..b86273d --- /dev/null +++ b/MyApplication2/.idea/compiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MyApplication2/.idea/deploymentTargetSelector.xml b/MyApplication2/.idea/deploymentTargetSelector.xml new file mode 100644 index 0000000..b268ef3 --- /dev/null +++ b/MyApplication2/.idea/deploymentTargetSelector.xml @@ -0,0 +1,10 @@ + + + + + + + + + \ No newline at end of file diff --git a/MyApplication2/.idea/deviceManager.xml b/MyApplication2/.idea/deviceManager.xml new file mode 100644 index 0000000..91f9558 --- /dev/null +++ b/MyApplication2/.idea/deviceManager.xml @@ -0,0 +1,13 @@ + + + + + + \ No newline at end of file diff --git a/MyApplication2/.idea/gradle.xml b/MyApplication2/.idea/gradle.xml new file mode 100644 index 0000000..02c4aa5 --- /dev/null +++ b/MyApplication2/.idea/gradle.xml @@ -0,0 +1,18 @@ + + + + + + + \ No newline at end of file diff --git a/MyApplication2/.idea/misc.xml b/MyApplication2/.idea/misc.xml new file mode 100644 index 0000000..1a1bf72 --- /dev/null +++ b/MyApplication2/.idea/misc.xml @@ -0,0 +1,9 @@ + + + + + + + + \ No newline at end of file diff --git a/MyApplication2/.idea/runConfigurations.xml b/MyApplication2/.idea/runConfigurations.xml new file mode 100644 index 0000000..16660f1 --- /dev/null +++ b/MyApplication2/.idea/runConfigurations.xml @@ -0,0 +1,17 @@ + + + + + + \ No newline at end of file diff --git a/MyApplication2/.idea/vcs.xml b/MyApplication2/.idea/vcs.xml new file mode 100644 index 0000000..288b36b --- /dev/null +++ b/MyApplication2/.idea/vcs.xml @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/MyApplication2/app/.gitignore b/MyApplication2/app/.gitignore new file mode 100644 index 0000000..42afabf --- /dev/null +++ b/MyApplication2/app/.gitignore @@ -0,0 +1 @@ +/build \ No newline at end of file diff --git a/MyApplication2/app/build.gradle.kts b/MyApplication2/app/build.gradle.kts new file mode 100644 index 0000000..99b4075 --- /dev/null +++ b/MyApplication2/app/build.gradle.kts @@ -0,0 +1,47 @@ +plugins { + alias(libs.plugins.android.application) +} + +android { + namespace = "com.example.myapplication" + compileSdk { + version = release(36) { + minorApiLevel = 1 + } + } + + defaultConfig { + applicationId = "com.example.myapplication" + minSdk = 24 + targetSdk = 36 + versionCode = 1 + versionName = "1.0" + + testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" + } + + 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.androidx.core.ktx) + implementation(libs.androidx.appcompat) + implementation(libs.material) + implementation(libs.androidx.activity) + implementation(libs.androidx.constraintlayout) + testImplementation(libs.junit) + androidTestImplementation(libs.androidx.junit) + androidTestImplementation(libs.androidx.espresso.core) +} \ No newline at end of file diff --git a/MyApplication2/app/proguard-rules.pro b/MyApplication2/app/proguard-rules.pro new file mode 100644 index 0000000..481bb43 --- /dev/null +++ b/MyApplication2/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/MyApplication2/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.kt b/MyApplication2/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.kt new file mode 100644 index 0000000..e9283cf --- /dev/null +++ b/MyApplication2/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.kt @@ -0,0 +1,24 @@ +package com.example.myapplication + +import androidx.test.platform.app.InstrumentationRegistry +import androidx.test.ext.junit.runners.AndroidJUnit4 + +import org.junit.Test +import org.junit.runner.RunWith + +import org.junit.Assert.* + +/** + * Instrumented test, which will execute on an Android device. + * + * See [testing documentation](http://d.android.com/tools/testing). + */ +@RunWith(AndroidJUnit4::class) +class ExampleInstrumentedTest { + @Test + fun useAppContext() { + // Context of the app under test. + val appContext = InstrumentationRegistry.getInstrumentation().targetContext + assertEquals("com.example.myapplication", appContext.packageName) + } +} \ No newline at end of file diff --git a/MyApplication2/app/src/main/AndroidManifest.xml b/MyApplication2/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..e2d8658 --- /dev/null +++ b/MyApplication2/app/src/main/AndroidManifest.xml @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/drawable/bagcircle.xml b/MyApplication2/app/src/main/res/drawable/bagcircle.xml new file mode 100644 index 0000000..1af2ce6 --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/bagcircle.xml @@ -0,0 +1,26 @@ + + + + + + + + diff --git a/MyApplication2/app/src/main/res/drawable/bagsimple.xml b/MyApplication2/app/src/main/res/drawable/bagsimple.xml new file mode 100644 index 0000000..3b6e816 --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/bagsimple.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/MyApplication2/app/src/main/res/drawable/heartstraight.xml b/MyApplication2/app/src/main/res/drawable/heartstraight.xml new file mode 100644 index 0000000..6597a4a --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/heartstraight.xml @@ -0,0 +1,17 @@ + + + + + + diff --git a/MyApplication2/app/src/main/res/drawable/housesimple.xml b/MyApplication2/app/src/main/res/drawable/housesimple.xml new file mode 100644 index 0000000..a0d86b9 --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/housesimple.xml @@ -0,0 +1,17 @@ + + + + + + diff --git a/MyApplication2/app/src/main/res/drawable/ic_home.png b/MyApplication2/app/src/main/res/drawable/ic_home.png new file mode 100644 index 0000000..f42aa9d Binary files /dev/null and b/MyApplication2/app/src/main/res/drawable/ic_home.png differ diff --git a/MyApplication2/app/src/main/res/drawable/ic_launcher_background.xml b/MyApplication2/app/src/main/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/MyApplication2/app/src/main/res/drawable/ic_launcher_foreground.xml b/MyApplication2/app/src/main/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/drawable/listmagnifyingglass.xml b/MyApplication2/app/src/main/res/drawable/listmagnifyingglass.xml new file mode 100644 index 0000000..483d117 --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/listmagnifyingglass.xml @@ -0,0 +1,38 @@ + + + + + + + + + diff --git a/MyApplication2/app/src/main/res/drawable/user.xml b/MyApplication2/app/src/main/res/drawable/user.xml new file mode 100644 index 0000000..1fc97b8 --- /dev/null +++ b/MyApplication2/app/src/main/res/drawable/user.xml @@ -0,0 +1,23 @@ + + + + + + + diff --git a/MyApplication2/app/src/main/res/layout/activity_main.xml b/MyApplication2/app/src/main/res/layout/activity_main.xml new file mode 100644 index 0000000..e96e17f --- /dev/null +++ b/MyApplication2/app/src/main/res/layout/activity_main.xml @@ -0,0 +1,19 @@ + + + + + + + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/menu/bottom_nav_menu.xml b/MyApplication2/app/src/main/res/menu/bottom_nav_menu.xml new file mode 100644 index 0000000..930ae33 --- /dev/null +++ b/MyApplication2/app/src/main/res/menu/bottom_nav_menu.xml @@ -0,0 +1,23 @@ + + + + + + + + diff --git a/MyApplication2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/MyApplication2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/MyApplication2/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/MyApplication2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml new file mode 100644 index 0000000..6f3b755 --- /dev/null +++ b/MyApplication2/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher.webp new file mode 100644 index 0000000..c209e78 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp new file mode 100644 index 0000000..b2dfe3d Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher.webp new file mode 100644 index 0000000..4f0f1d6 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp new file mode 100644 index 0000000..62b611d Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp new file mode 100644 index 0000000..948a307 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..1b9a695 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp new file mode 100644 index 0000000..28d4b77 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9287f50 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp new file mode 100644 index 0000000..aa7d642 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ diff --git a/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp new file mode 100644 index 0000000..9126ae3 Binary files /dev/null and b/MyApplication2/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ diff --git a/MyApplication2/app/src/main/res/values-night/themes.xml b/MyApplication2/app/src/main/res/values-night/themes.xml new file mode 100644 index 0000000..d25b0f2 --- /dev/null +++ b/MyApplication2/app/src/main/res/values-night/themes.xml @@ -0,0 +1,7 @@ + + + + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/values/colors.xml b/MyApplication2/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..c8524cd --- /dev/null +++ b/MyApplication2/app/src/main/res/values/colors.xml @@ -0,0 +1,5 @@ + + + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/values/strings.xml b/MyApplication2/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..3de1a39 --- /dev/null +++ b/MyApplication2/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + My Application + \ No newline at end of file diff --git a/MyApplication2/app/src/main/res/values/themes.xml b/MyApplication2/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..d66ac09 --- /dev/null +++ b/MyApplication2/app/src/main/res/values/themes.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/Week1(Test)/app/src/main/res/values/colors.xml b/Week1(Test)/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..c8524cd --- /dev/null +++ b/Week1(Test)/app/src/main/res/values/colors.xml @@ -0,0 +1,5 @@ + + + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/Week1(Test)/app/src/main/res/values/strings.xml b/Week1(Test)/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..1077797 --- /dev/null +++ b/Week1(Test)/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + EmotionPost + \ No newline at end of file diff --git a/Week1(Test)/app/src/main/res/values/themes.xml b/Week1(Test)/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..6f06a11 --- /dev/null +++ b/Week1(Test)/app/src/main/res/values/themes.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/Week2(Final)/app/src/main/res/values/colors.xml b/Week2(Final)/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..c8524cd --- /dev/null +++ b/Week2(Final)/app/src/main/res/values/colors.xml @@ -0,0 +1,5 @@ + + + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/Week2(Final)/app/src/main/res/values/strings.xml b/Week2(Final)/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..034fb26 --- /dev/null +++ b/Week2(Final)/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + Week2(Final) + \ No newline at end of file diff --git a/Week2(Final)/app/src/main/res/values/themes.xml b/Week2(Final)/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..aec6b77 --- /dev/null +++ b/Week2(Final)/app/src/main/res/values/themes.xml @@ -0,0 +1,9 @@ + + + + + + \ No newline at end of file diff --git a/finalweek2/app/src/main/res/values/colors.xml b/finalweek2/app/src/main/res/values/colors.xml new file mode 100644 index 0000000..c8524cd --- /dev/null +++ b/finalweek2/app/src/main/res/values/colors.xml @@ -0,0 +1,5 @@ + + + #FF000000 + #FFFFFFFF + \ No newline at end of file diff --git a/finalweek2/app/src/main/res/values/strings.xml b/finalweek2/app/src/main/res/values/strings.xml new file mode 100644 index 0000000..7f05eb7 --- /dev/null +++ b/finalweek2/app/src/main/res/values/strings.xml @@ -0,0 +1,3 @@ + + WEEK2(FINAL) + \ No newline at end of file diff --git a/finalweek2/app/src/main/res/values/themes.xml b/finalweek2/app/src/main/res/values/themes.xml new file mode 100644 index 0000000..c4bd75e --- /dev/null +++ b/finalweek2/app/src/main/res/values/themes.xml @@ -0,0 +1,9 @@ + + + + +