From 927cf1074193ed04222b05f89329df25e7ca588c Mon Sep 17 00:00:00 2001
From: Bswordload <1292690617@qq.com>
Date: Sun, 10 Mar 2019 17:37:24 +0800
Subject: [PATCH] =?UTF-8?q?#2=20Bswordload=20=E7=AC=AC2=E6=AC=A1=E5=AE=9E?=
=?UTF-8?q?=E9=AA=8C?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
.../app/.gitignore" | Bin 0 -> 15 bytes
.../app/app.iml" | 139 ++++++++++++++++++
.../app/build.gradle" | 28 ++++
.../soft1714080902202/BuildConfig.java" | 13 ++
.../app/proguard-rules.pro" | 21 +++
.../ExampleInstrumentedTest.java" | 26 ++++
.../app/src/main/AndroidManifest.xml" | 22 +++
.../soft1714080902202/MainActivity.java" | 13 ++
.../soft1714080902202timer.java" | 13 ++
.../drawable-v24/ic_launcher_foreground.xml" | Bin 0 -> 1904 bytes
.../res/drawable/ic_launcher_background.xml" | Bin 0 -> 4884 bytes
.../src/main/res/layout/activity_main.xml" | 18 +++
.../activity_soft1714080902202timer.xml" | 9 ++
.../res/mipmap-anydpi-v26/ic_launcher.xml" | Bin 0 -> 368 bytes
.../mipmap-anydpi-v26/ic_launcher_round.xml" | Bin 0 -> 368 bytes
.../src/main/res/mipmap-hdpi/ic_launcher.png" | Bin 0 -> 2963 bytes
.../res/mipmap-hdpi/ic_launcher_round.png" | Bin 0 -> 4905 bytes
.../src/main/res/mipmap-mdpi/ic_launcher.png" | Bin 0 -> 2060 bytes
.../res/mipmap-mdpi/ic_launcher_round.png" | Bin 0 -> 2783 bytes
.../main/res/mipmap-xhdpi/ic_launcher.png" | Bin 0 -> 4490 bytes
.../res/mipmap-xhdpi/ic_launcher_round.png" | Bin 0 -> 6895 bytes
.../main/res/mipmap-xxhdpi/ic_launcher.png" | Bin 0 -> 6387 bytes
.../res/mipmap-xxhdpi/ic_launcher_round.png" | Bin 0 -> 10413 bytes
.../main/res/mipmap-xxxhdpi/ic_launcher.png" | Bin 0 -> 9128 bytes
.../res/mipmap-xxxhdpi/ic_launcher_round.png" | Bin 0 -> 15132 bytes
.../app/src/main/res/values/colors.xml" | Bin 0 -> 219 bytes
.../app/src/main/res/values/strings.xml" | 3 +
.../app/src/main/res/values/styles.xml" | 11 ++
.../soft1714080902202/ExampleUnitTest.java" | 17 +++
29 files changed, 333 insertions(+)
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/.gitignore"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/app.iml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build.gradle"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build/generated/source/buildConfig/debug/edu/hzuapps/androidlabs/soft1714080902202/BuildConfig.java"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/proguard-rules.pro"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/androidTest/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleInstrumentedTest.java"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/AndroidManifest.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/MainActivity.java"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/soft1714080902202timer.java"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/drawable-v24/ic_launcher_foreground.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/drawable/ic_launcher_background.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/layout/activity_main.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/layout/activity_soft1714080902202timer.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-hdpi/ic_launcher.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-hdpi/ic_launcher_round.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-mdpi/ic_launcher.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-mdpi/ic_launcher_round.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xhdpi/ic_launcher.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxhdpi/ic_launcher.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/values/colors.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/values/strings.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/values/styles.xml"
create mode 100644 "students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/test/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleUnitTest.java"
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/.gitignore" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/.gitignore"
new file mode 100644
index 0000000000000000000000000000000000000000..3c6833112c0baeb15920fa8042539ce43f6d0790
GIT binary patch
literal 15
QcmaFAfA4!3VqjnZ09?5VtpET3
literal 0
HcmV?d00001
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/app.iml" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/app.iml"
new file mode 100644
index 000000000..56696e901
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/app.iml"
@@ -0,0 +1,139 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ generateDebugSources
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build.gradle" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build.gradle"
new file mode 100644
index 000000000..66a570b8e
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build.gradle"
@@ -0,0 +1,28 @@
+apply plugin: 'com.android.application'
+
+android {
+ compileSdkVersion 28
+ defaultConfig {
+ applicationId "edu.hzuapps.androidlabs.soft1714080902202"
+ minSdkVersion 23
+ targetSdkVersion 28
+ versionCode 1
+ versionName "1.0"
+ testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+}
+
+dependencies {
+ implementation fileTree(dir: 'libs', include: ['*.jar'])
+ implementation 'com.android.support:appcompat-v7:28.0.0'
+ implementation 'com.android.support.constraint:constraint-layout:1.1.3'
+ testImplementation 'junit:junit:4.12'
+ androidTestImplementation 'com.android.support.test:runner:1.0.2'
+ androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
+}
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build/generated/source/buildConfig/debug/edu/hzuapps/androidlabs/soft1714080902202/BuildConfig.java" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build/generated/source/buildConfig/debug/edu/hzuapps/androidlabs/soft1714080902202/BuildConfig.java"
new file mode 100644
index 000000000..ab3b17f11
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/build/generated/source/buildConfig/debug/edu/hzuapps/androidlabs/soft1714080902202/BuildConfig.java"
@@ -0,0 +1,13 @@
+/**
+ * Automatically generated file. DO NOT MODIFY
+ */
+package edu.hzuapps.androidlabs.soft1714080902202;
+
+public final class BuildConfig {
+ public static final boolean DEBUG = Boolean.parseBoolean("true");
+ public static final String APPLICATION_ID = "edu.hzuapps.androidlabs.soft1714080902202";
+ public static final String BUILD_TYPE = "debug";
+ public static final String FLAVOR = "";
+ public static final int VERSION_CODE = 1;
+ public static final String VERSION_NAME = "1.0";
+}
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/proguard-rules.pro" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/proguard-rules.pro"
new file mode 100644
index 000000000..f1b424510
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/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
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/androidTest/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleInstrumentedTest.java" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/androidTest/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleInstrumentedTest.java"
new file mode 100644
index 000000000..8240fcb32
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/androidTest/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleInstrumentedTest.java"
@@ -0,0 +1,26 @@
+package edu.hzuapps.androidlabs.soft1714080902202;
+
+import android.content.Context;
+import android.support.test.InstrumentationRegistry;
+import android.support.test.runner.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.getTargetContext();
+
+ assertEquals("edu.hzuapps.androidlabs.soft1714080902202", appContext.getPackageName());
+ }
+}
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/AndroidManifest.xml" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/AndroidManifest.xml"
new file mode 100644
index 000000000..d680c0b55
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/AndroidManifest.xml"
@@ -0,0 +1,22 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/MainActivity.java" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/MainActivity.java"
new file mode 100644
index 000000000..5a3c85a28
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/MainActivity.java"
@@ -0,0 +1,13 @@
+package edu.hzuapps.androidlabs.soft1714080902202;
+
+import android.support.v7.app.AppCompatActivity;
+import android.os.Bundle;
+
+public class MainActivity extends AppCompatActivity {
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_main);
+ }
+}
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/soft1714080902202timer.java" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/soft1714080902202timer.java"
new file mode 100644
index 000000000..a0b2d4811
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/java/edu/hzuapps/androidlabs/soft1714080902202/soft1714080902202timer.java"
@@ -0,0 +1,13 @@
+package edu.hzuapps.androidlabs.soft1714080902202;
+
+import android.support.v7.app.AppCompatActivity;
+import android.os.Bundle;
+
+public class soft1714080902202timer extends AppCompatActivity {
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_soft1714080902202timer);
+ }
+}
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/drawable-v24/ic_launcher_foreground.xml" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/drawable-v24/ic_launcher_foreground.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..535691d3b924765af9f145b49284d1a87a88cb01
GIT binary patch
literal 1904
zcmb7_ZBG<25XYy2Kp;GdPdtO5pa};Di5iV>NK8nGCTMt}FPd(*%a(N8we21`-}uRl
zABnGE+got=T+X<;7k9J2&irSlGk5jt=hgKG01n^+hJcO2`6#3aR!KxLp_VI&BcgGt
zGKOPjsOGshB0$Foj+8W(NP9*^!G?ZJ03cZIJ6Yt_a~?tnHY-rZWPw$O=|rf@e)bN6
z`6{boCqu~)YzV>n^}7zYT})G@4AZ#7*(ElNVIqVNIE>(V6)d@c^}b`0=Ymt>Q}ZY8
zBAE6kD9O1c0;?qP<`D!_HFJPR%W@@3TAYxKi!P2-+{ODiBbI4Sf{L-*uyzewb59dl
zSnGOGb%ZcndPB>q*aU)&elF%F7o=aIi+d|s7dZetsA-%UKpxh}>9U*EbW%oQ
z!6mDKGvyttg5eHTlb&rTjwvGVu;y$I!AgH|EVrT_@*aXkPlYfrqu!#w=;@^|%_)
zqWLZ=nX|gf>ZEtk%hNvxZ!*~^~@ez{|8t^84n6K21o8FPQ%`MQqF`)iDtbWn`_nK
zap<(O;Y)5)A9@qPt}oVLvVVDPl{&0a!tZXXgdn-8?Qie>DS|P#_pl^c(De+#Y+3Yh
zt->65a2vsv+w-o_O_{i;T*VYp^
z%O8p?V)`?QgtN?@C`!Z`aXZreE{(%B<;Hn2RldU~+uTJ;zcqeI$r6%)LB3VR6w)
zzZWh6(;_m~ipOpkP0Ogn?!VkW+hkI@CA7Qu@@etrX7D}DL^
literal 0
HcmV?d00001
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/drawable/ic_launcher_background.xml" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/drawable/ic_launcher_background.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..29b62185cb8193cd80ff1c20d33898aa536fec5d
GIT binary patch
literal 4884
zcmbVP`E%1o6n;zE!t_3%P$&>?%Fz-#B!N<>k5B?}q1ZURw~Dp3H7JrsmYcM{@RxP^
zC-E=napJLz3*M$zTNlwzkgrLUjV2d;{U+{{ynVz5IENGS)8;z#}9|J
z5k;+VCvp-3WP?B}491BQBz?!9u!UEP00d51@pRK0juM0r0w)`Rx8o#U7-&M8dO*Y>
z0%xpoiZtx;P)B?J)@btpaPdov6gTN6Uac{(SM09U**G*^4s5L|+eT%^2Y=lnY
zFoClv&Juyn7{L3Lpf!YkK;UAbXWE=3Nf;pZ
zLjsqIu`MS;aUu940+)-yZEqa;P8#vYRna2oPpYEp7|GG9=w(D7D@8wIj_Z4Y5ca2~
zCD{o6V)0mjkC(P((}{-ydV;|9;_3+~HP}BRaJR$+Cjs5^+#yTovoM-O9TrTea(eQh
z4BZ{a_px}VO4Zb1t~c31?B@h-6vvxl%^Xh?IA3NHOpyJIJcBb&OP3$A!RR>~Pkb>R
z&l0E?bDI{lJK0X~=%X`!d~eNRDntP7>uXm#Ah24Tdd}2r{xt#*
z4rp%H@;ZU#IcZdJZxDFz?Ry8YHY2!6U~LYLPUy1CDfp7W?Ro803SX7#W7-6L9o-^u
zzmmVygkO)b%VM96$FvptVa$Z^m#PY9%3_$-<}@|5T_>SOrz+zdbI|Np2
z1oAA)2OC}Ai=4n^uDA=O_1zg|&ROFK+UCQ=oCseNs8w<;jnyf*N8o5`i7)5u8}S?Y
z`V_Bf{f?*)TIjP1ErWLVUY%0`Kaf_xtpsoNkY6j
pe3meIiDLDbDzn9C-SrX#Bk)f-25js`JBISa
+
+
+
+
+
\ No newline at end of file
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/layout/activity_soft1714080902202timer.xml" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/layout/activity_soft1714080902202timer.xml"
new file mode 100644
index 000000000..ed427f36e
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/layout/activity_soft1714080902202timer.xml"
@@ -0,0 +1,9 @@
+
+
+
+
\ No newline at end of file
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml"
new file mode 100644
index 0000000000000000000000000000000000000000..07bda8a5598738200181ebb3332510b54f144f2b
GIT binary patch
literal 368
zcmaFAfA4!3Vqjn}X60uD@>zhGxt@u^5JVV(2xAZt3nJn`L_CN{01=5GA_+vKf`}{-
zkqsisKm^nrYEp~}K!X|iL4+2FFjfEpxT6^vL3W}EG1?;wAhSVk^gzhGxt@u^5JVV(2xAZt3nJn`L_CN{01=5GA_+vKf`}{-
zkqsisKm^nrYEp~}K!X|iL4+2FFjfEpxT6^vL3W}EG1?;wAhSVk^gq~Wh01k4
zFlt~cuNqUD+}BPGwKvY{QWe^5BH#}Q`yba;<8|eK)#cbM{jm!GVeM_SO4}cJHbjK$
z!O&MKuglt*LS?lpj4MskC~toE;sNvDK{zwdPe@A$r{ED_s_aD-`%(JmjTu`7ey?Atzs
zlO2$%YB$s+Gxj5#>SBx>71@NGe9+cxPQUHL$T@&;KFZ{EMeW#TE(z&iTZqPV^CYN4
z2*+5^bH``gf&-Ipav9j`!w3fjElf|3%h0n&5Dv+?DXixPWP_t^j)Gic%%<{#@i1d(
zWm>Bl*{U**&yOLjh*tBP^^{xh=tVO4A;M9e=Z2h1Vm!`5^+D)3@i#Q^5i+ag8
zN6RNp@I>WfnmC;Vk+@CmI@M;0!X3Jz3m1V^8lJK_XerGs85zrK)D(+ZB6gSNjJS}|
z&QyJ8w$%OARW8YTH~Ju=pDaK(g6+mMS{O4TM`>5zjkfo?(T#|HN^?xS3J$GB;C=$E
zN8kZ9)vQJI;9TP@yB&pEtyT`!=D>HLgewoAl>=oAXm&^24M8Q#4%m-F%+d2XPZNV8f;b%3
zKJW>3itU-rKp304s;en;)WP}$pLGSf1@s(k;$Sh(u`%8;cZADT*)>K^8ePKhGgKD8
z%3#o=GwAfMOqx`TUZoxuxy(j66WE$2F;i@&ind))hH$%SHqGPWcH-@;ZQDN115~fjPaE7cPW58>admq=|qCh=2%)
XfCz|y2#A0Ph=2%)fCz}dKNt80m)NY6
literal 0
HcmV?d00001
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-mdpi/ic_launcher.png" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-mdpi/ic_launcher.png"
new file mode 100644
index 0000000000000000000000000000000000000000..4c90d759803cd7e798093daceb32ceecf8bc57d4
GIT binary patch
literal 2060
zcmeHE%T60H6g@Wy38a$}UTxE|=%NcA5;F-%fLc|mB2|i%wi2zf9eHL9I5>7R;{k~c
z-^2=u1s~9ls(NS2f-TERW69S(_i^s^@$WzP4*>SD*+w0&Tj;g$me3PX9E#W}Yr;sR
zp`1lB37v>C0*wfrp*5Kk#!ZCIW&NfO5H`yqt?gCFvG{^3qTIQE6h#gZ-WNHsHK*$A
zk^h@C`N+xH7p;e4o)vjDLi3X{%6%r(x3(vQ#?U5`usl{qe$RQB^p}ViUQMgWxDQ
z4hDl@;GcXbC_WO}KW(1I@~bL(Hc$4Z;!=3<&}rcvA$Tq$p<6KcT9`BcM>LhOBkVqd
z1%1@`zreeP1{PTTCZiho1F`r7FEMUE!7n(IB|(SnORn%s3@q&2fo@BRWwuRr!|S5U
ncdxiJ#R}HT_(o}8VU5o=$7*KO00gBN15Uo9g&s8*I{UfrUL0isg%T9G6JBzhU+d0M5^i$x6zp;61SCENOT+@82cLykI
Yv^8KCJS@NhEWiRRzyd750)H>?0r6Hry#N3J
literal 0
HcmV?d00001
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xhdpi/ic_launcher.png" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xhdpi/ic_launcher.png"
new file mode 100644
index 0000000000000000000000000000000000000000..19e80849d7c60fc5cb64d9fd2c895d0054d6260f
GIT binary patch
literal 4490
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
literal 0
HcmV?d00001
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png"
new file mode 100644
index 0000000000000000000000000000000000000000..8b96457b0ed685cbe98f2ac5b7706bee24bdd87a
GIT binary patch
literal 9128
zcmeIw&2HN;3;^Js1LPfqT-*$e;G_eV^){p(&>e=MO?N4FP$D{GD@%fYhNZ*ay>x8X
zeujd&*dQs2`fTOBISOy`0qvD2_O6!7>flgIMJe2?gw7Vz$#l}i#lPu9(4tb02JZFq
zPY98U#A@AUn&S3NL#47w8)qv#^c$Paqu#e#%s^-P`z2E}_QxBwi!!<@Ek7+kmh19!
zxmuO0S=+a1QKKE7eK};33I|BzWH(r|?N2-G#%U1CVNVzSu4)jor7Y>7A(;M1&
literal 0
HcmV?d00001
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png"
new file mode 100644
index 0000000000000000000000000000000000000000..215ba2360a24653570ff62531ef884a8f1a92401
GIT binary patch
literal 15132
zcmeIuF$%&!5QX7cg9HSRp^c?Su<`=7%NSR)5H}Dc>3Z
zcYYjCA~KeHPcpgWa?R!DWT5lHYhkfYey)u#>SQ6Ak7*Okuhl{mwQ}O7PWqENZA_ER
zwAzO3&=vXhU>~jYNq247IT?PmEy7Z_mH9HnRr#)K(;X+HZ|TAvx6ol{L&_IF-EtG^#9h1pJI+iY;3?@_X8lEi$3*;vwSxcAvve2KDzfct#
z$Z^Ykciipgdb=CI9&gC-I>&mB4Pj}zljSH~uRVb(Lg^$-EK|ca>g)m#o*zah@1m&0
ziSU#!K8={^i;!)14PjO~r3tIrh(5%j)&9t>P2{C^9ovSz`OE)sHuWZ?m%)q!kA!^j
io>YlwUs?`9r}CrLDi-~B
+ soft1714080902202
+
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/values/styles.xml" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/values/styles.xml"
new file mode 100644
index 000000000..5885930df
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/main/res/values/styles.xml"
@@ -0,0 +1,11 @@
+
+
+
+
+
+
diff --git "a/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/test/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleUnitTest.java" "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/test/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleUnitTest.java"
new file mode 100644
index 000000000..3963fcd5e
--- /dev/null
+++ "b/students/soft1714080902202/\347\254\254\344\272\214\346\254\241\345\256\236\351\252\214/app/src/test/java/edu/hzuapps/androidlabs/soft1714080902202/ExampleUnitTest.java"
@@ -0,0 +1,17 @@
+package edu.hzuapps.androidlabs.soft1714080902202;
+
+import org.junit.Test;
+
+import static org.junit.Assert.*;
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * @see Testing documentation
+ */
+public class ExampleUnitTest {
+ @Test
+ public void addition_isCorrect() {
+ assertEquals(4, 2 + 2);
+ }
+}
\ No newline at end of file