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/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