diff --git a/other/200340031 吴越-实践总结报告.docx b/other/200340031 吴越-实践总结报告.docx
new file mode 100644
index 0000000..9e61d69
Binary files /dev/null and b/other/200340031 吴越-实践总结报告.docx differ
diff --git a/other/软件工程课设实践心得-王卓君.docx b/other/软件工程课设实践心得-王卓君.docx
new file mode 100644
index 0000000..27c54f1
Binary files /dev/null and b/other/软件工程课设实践心得-王卓君.docx differ
diff --git a/src/notice b/src/notice
deleted file mode 100644
index e69de29..0000000
diff --git a/src/notice1/activity_add.xml b/src/notice1/activity_add.xml
new file mode 100644
index 0000000..1ecaa59
--- /dev/null
+++ b/src/notice1/activity_add.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/notice1/add.java b/src/notice1/add.java
new file mode 100644
index 0000000..1866186
--- /dev/null
+++ b/src/notice1/add.java
@@ -0,0 +1,38 @@
+package com.example.hamburger;
+import androidx.appcompat.app.AppCompatActivity;
+
+import android.content.Intent;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.Button;
+import android.widget.EditText;
+
+import com.example.hamburger.R;
+import com.example.hamburger.notifications;
+import com.example.hamburger.ui.notifications.NotificationsFragment;
+
+public class add extends AppCompatActivity {
+
+ EditText mytext;
+
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_add);
+ mytext = findViewById(R.id.mt);
+
+ }
+
+ public void Confirm() {
+ Button button = (Button) findViewById(R.id.conf);
+
+ button.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ Intent intent = new Intent();
+ intent.setClass(add.this, NotificationsFragment.class);
+ startActivity(intent);
+ }
+ });
+ }
+}
\ No newline at end of file
diff --git a/src/notice1/fragment_notifications.xml b/src/notice1/fragment_notifications.xml
new file mode 100644
index 0000000..35c3a4f
--- /dev/null
+++ b/src/notice1/fragment_notifications.xml
@@ -0,0 +1,177 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/src/notice1/notifications.java b/src/notice1/notifications.java
new file mode 100644
index 0000000..7bdd418
--- /dev/null
+++ b/src/notice1/notifications.java
@@ -0,0 +1,29 @@
+package com.example.hamburger;
+import androidx.appcompat.app.AppCompatActivity;
+
+import android.content.Intent;
+import android.os.Bundle;
+import android.view.View;
+import android.widget.Button;
+import android.widget.TextView;
+
+public class notifications extends AppCompatActivity {
+
+ private TextView tv;
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.fragment_notifications);
+
+ Button button = (Button) findViewById(R.id.btn1);
+ button.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ Intent intent = new Intent();
+ intent.setClass(notifications.this, add.class);
+ startActivity(intent);
+ }
+ });
+ }
+
+}
\ No newline at end of file