map = new HashMap<>();
+ map.put("img", R.drawable.one);
+ list.add(map);
+
+ map = new HashMap<>();
+ map.put("img", R.drawable.two);
+ list.add(map);
+
+ map = new HashMap<>();
+ map.put("img", R.drawable.three);
+ list.add(map);
+
+ map = new HashMap<>();
+ map.put("img", R.drawable.four);
+ list.add(map);
+
+ map = new HashMap<>();
+ map.put("img", R.drawable.five);
+ list.add(map);
+
+ map = new HashMap<>();
+ map.put("img", R.drawable.six);
+ list.add(map);
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/example/deliciousfoodapp/personFragment.java b/app/src/main/java/com/example/deliciousfoodapp/personFragment.java
new file mode 100644
index 0000000..bf28900
--- /dev/null
+++ b/app/src/main/java/com/example/deliciousfoodapp/personFragment.java
@@ -0,0 +1,28 @@
+package com.example.deliciousfoodapp;
+
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import androidx.fragment.app.Fragment;
+
+import com.example.deliciousfoodapp.R;
+
+
+public class personFragment extends Fragment {
+
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container,
+ Bundle savedInstanceState) {
+
+ return inflater.inflate(R.layout.fragment_person, container, false);
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/example/deliciousfoodapp/placeholder/PlaceholderContent.java b/app/src/main/java/com/example/deliciousfoodapp/placeholder/PlaceholderContent.java
new file mode 100644
index 0000000..b67302f
--- /dev/null
+++ b/app/src/main/java/com/example/deliciousfoodapp/placeholder/PlaceholderContent.java
@@ -0,0 +1,72 @@
+package com.example.deliciousfoodapp.placeholder;
+
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+/**
+ * Helper class for providing sample content for user interfaces created by
+ * Android template wizards.
+ *
+ * TODO: Replace all uses of this class before publishing your app.
+ */
+public class PlaceholderContent {
+
+ /**
+ * An array of sample (placeholder) items.
+ */
+ public static final List ITEMS = new ArrayList();
+
+ /**
+ * A map of sample (placeholder) items, by ID.
+ */
+ public static final Map ITEM_MAP = new HashMap();
+
+ private static final int COUNT = 25;
+
+ static {
+ // Add some sample items.
+ for (int i = 1; i <= COUNT; i++) {
+ addItem(createPlaceholderItem(i));
+ }
+ }
+
+ private static void addItem(PlaceholderItem item) {
+ ITEMS.add(item);
+ ITEM_MAP.put(item.id, item);
+ }
+
+ private static PlaceholderItem createPlaceholderItem(int position) {
+ return new PlaceholderItem(String.valueOf(position), "Item " + position, makeDetails(position));
+ }
+
+ private static String makeDetails(int position) {
+ StringBuilder builder = new StringBuilder();
+ builder.append("Details about Item: ").append(position);
+ for (int i = 0; i < position; i++) {
+ builder.append("\nMore details information here.");
+ }
+ return builder.toString();
+ }
+
+ /**
+ * A placeholder item representing a piece of content.
+ */
+ public static class PlaceholderItem {
+ public final String id;
+ public final String content;
+ public final String details;
+
+ public PlaceholderItem(String id, String content, String details) {
+ this.id = id;
+ this.content = content;
+ this.details = details;
+ }
+
+ @Override
+ public String toString() {
+ return content;
+ }
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/java/com/example/deliciousfoodapp/shopFragment.java b/app/src/main/java/com/example/deliciousfoodapp/shopFragment.java
new file mode 100644
index 0000000..65c0cae
--- /dev/null
+++ b/app/src/main/java/com/example/deliciousfoodapp/shopFragment.java
@@ -0,0 +1,26 @@
+package com.example.deliciousfoodapp;
+
+import android.os.Bundle;
+import android.view.LayoutInflater;
+import android.view.View;
+import android.view.ViewGroup;
+
+import androidx.fragment.app.Fragment;
+
+
+public class shopFragment extends Fragment {
+
+
+ @Override
+ public void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+
+ }
+
+ @Override
+ public View onCreateView(LayoutInflater inflater, ViewGroup container,
+ Bundle savedInstanceState) {
+
+ return inflater.inflate(R.layout.fragment_shop, container, false);
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/res/drawable/baseline_currency_yen_24.xml b/app/src/main/res/drawable/baseline_currency_yen_24.xml
new file mode 100644
index 0000000..0d567c3
--- /dev/null
+++ b/app/src/main/res/drawable/baseline_currency_yen_24.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/app/src/main/res/drawable/bg.jpg b/app/src/main/res/drawable/bg.jpg
new file mode 100644
index 0000000..41df2a3
Binary files /dev/null and b/app/src/main/res/drawable/bg.jpg differ
diff --git a/app/src/main/res/drawable/bg2.jpg b/app/src/main/res/drawable/bg2.jpg
new file mode 100644
index 0000000..1c744ff
Binary files /dev/null and b/app/src/main/res/drawable/bg2.jpg differ
diff --git a/app/src/main/res/drawable/edittext_border.xml b/app/src/main/res/drawable/edittext_border.xml
new file mode 100644
index 0000000..1631c3d
--- /dev/null
+++ b/app/src/main/res/drawable/edittext_border.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/five.jpg b/app/src/main/res/drawable/five.jpg
new file mode 100644
index 0000000..978c756
Binary files /dev/null and b/app/src/main/res/drawable/five.jpg differ
diff --git a/app/src/main/res/drawable/food.png b/app/src/main/res/drawable/food.png
new file mode 100644
index 0000000..07026cd
Binary files /dev/null and b/app/src/main/res/drawable/food.png differ
diff --git a/app/src/main/res/drawable/four.jpg b/app/src/main/res/drawable/four.jpg
new file mode 100644
index 0000000..92dbda9
Binary files /dev/null and b/app/src/main/res/drawable/four.jpg differ
diff --git a/app/src/main/res/drawable/gd1.png b/app/src/main/res/drawable/gd1.png
new file mode 100644
index 0000000..8086548
Binary files /dev/null and b/app/src/main/res/drawable/gd1.png differ
diff --git a/app/src/main/res/drawable/gd2.png b/app/src/main/res/drawable/gd2.png
new file mode 100644
index 0000000..3db29d7
Binary files /dev/null and b/app/src/main/res/drawable/gd2.png differ
diff --git a/app/src/main/res/drawable/home.png b/app/src/main/res/drawable/home.png
new file mode 100644
index 0000000..afd6af2
Binary files /dev/null and b/app/src/main/res/drawable/home.png differ
diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000..07d5da9
--- /dev/null
+++ b/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/ic_launcher_foreground.xml b/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000..2b068d1
--- /dev/null
+++ b/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/icecream.jpg b/app/src/main/res/drawable/icecream.jpg
new file mode 100644
index 0000000..480213f
Binary files /dev/null and b/app/src/main/res/drawable/icecream.jpg differ
diff --git a/app/src/main/res/drawable/information.jpg b/app/src/main/res/drawable/information.jpg
new file mode 100644
index 0000000..a4c2d58
Binary files /dev/null and b/app/src/main/res/drawable/information.jpg differ
diff --git a/app/src/main/res/drawable/jiancan.png b/app/src/main/res/drawable/jiancan.png
new file mode 100644
index 0000000..509bd68
Binary files /dev/null and b/app/src/main/res/drawable/jiancan.png differ
diff --git a/app/src/main/res/drawable/mango.jpg b/app/src/main/res/drawable/mango.jpg
new file mode 100644
index 0000000..23fe438
Binary files /dev/null and b/app/src/main/res/drawable/mango.jpg differ
diff --git a/app/src/main/res/drawable/mb.png b/app/src/main/res/drawable/mb.png
new file mode 100644
index 0000000..aa8a425
Binary files /dev/null and b/app/src/main/res/drawable/mb.png differ
diff --git a/app/src/main/res/drawable/meishi.jpg b/app/src/main/res/drawable/meishi.jpg
new file mode 100644
index 0000000..72ce8c5
Binary files /dev/null and b/app/src/main/res/drawable/meishi.jpg differ
diff --git a/app/src/main/res/drawable/mlt.png b/app/src/main/res/drawable/mlt.png
new file mode 100644
index 0000000..150b57b
Binary files /dev/null and b/app/src/main/res/drawable/mlt.png differ
diff --git a/app/src/main/res/drawable/more.png b/app/src/main/res/drawable/more.png
new file mode 100644
index 0000000..c68b765
Binary files /dev/null and b/app/src/main/res/drawable/more.png differ
diff --git a/app/src/main/res/drawable/ms.png b/app/src/main/res/drawable/ms.png
new file mode 100644
index 0000000..7125d11
Binary files /dev/null and b/app/src/main/res/drawable/ms.png differ
diff --git a/app/src/main/res/drawable/noodles.jpg b/app/src/main/res/drawable/noodles.jpg
new file mode 100644
index 0000000..bc28d95
Binary files /dev/null and b/app/src/main/res/drawable/noodles.jpg differ
diff --git a/app/src/main/res/drawable/one.jpg b/app/src/main/res/drawable/one.jpg
new file mode 100644
index 0000000..4e2ab58
Binary files /dev/null and b/app/src/main/res/drawable/one.jpg differ
diff --git a/app/src/main/res/drawable/password.png b/app/src/main/res/drawable/password.png
new file mode 100644
index 0000000..ab143ef
Binary files /dev/null and b/app/src/main/res/drawable/password.png differ
diff --git a/app/src/main/res/drawable/person.png b/app/src/main/res/drawable/person.png
new file mode 100644
index 0000000..782c6b9
Binary files /dev/null and b/app/src/main/res/drawable/person.png differ
diff --git a/app/src/main/res/drawable/pj.png b/app/src/main/res/drawable/pj.png
new file mode 100644
index 0000000..0457862
Binary files /dev/null and b/app/src/main/res/drawable/pj.png differ
diff --git a/app/src/main/res/drawable/qq.jpg b/app/src/main/res/drawable/qq.jpg
new file mode 100644
index 0000000..7d43729
Binary files /dev/null and b/app/src/main/res/drawable/qq.jpg differ
diff --git a/app/src/main/res/drawable/register.jpg b/app/src/main/res/drawable/register.jpg
new file mode 100644
index 0000000..9c1808e
Binary files /dev/null and b/app/src/main/res/drawable/register.jpg differ
diff --git a/app/src/main/res/drawable/rl.png b/app/src/main/res/drawable/rl.png
new file mode 100644
index 0000000..5c6da04
Binary files /dev/null and b/app/src/main/res/drawable/rl.png differ
diff --git a/app/src/main/res/drawable/seven.jpg b/app/src/main/res/drawable/seven.jpg
new file mode 100644
index 0000000..5e61bf4
Binary files /dev/null and b/app/src/main/res/drawable/seven.jpg differ
diff --git a/app/src/main/res/drawable/shopping.png b/app/src/main/res/drawable/shopping.png
new file mode 100644
index 0000000..ad037aa
Binary files /dev/null and b/app/src/main/res/drawable/shopping.png differ
diff --git a/app/src/main/res/drawable/six.jpg b/app/src/main/res/drawable/six.jpg
new file mode 100644
index 0000000..18a47cd
Binary files /dev/null and b/app/src/main/res/drawable/six.jpg differ
diff --git a/app/src/main/res/drawable/sk.png b/app/src/main/res/drawable/sk.png
new file mode 100644
index 0000000..8dc68dd
Binary files /dev/null and b/app/src/main/res/drawable/sk.png differ
diff --git a/app/src/main/res/drawable/td.png b/app/src/main/res/drawable/td.png
new file mode 100644
index 0000000..b66f984
Binary files /dev/null and b/app/src/main/res/drawable/td.png differ
diff --git a/app/src/main/res/drawable/three.jpg b/app/src/main/res/drawable/three.jpg
new file mode 100644
index 0000000..2420649
Binary files /dev/null and b/app/src/main/res/drawable/three.jpg differ
diff --git a/app/src/main/res/drawable/title.jpg b/app/src/main/res/drawable/title.jpg
new file mode 100644
index 0000000..d2a9fb5
Binary files /dev/null and b/app/src/main/res/drawable/title.jpg differ
diff --git a/app/src/main/res/drawable/two.jpg b/app/src/main/res/drawable/two.jpg
new file mode 100644
index 0000000..fc01ad5
Binary files /dev/null and b/app/src/main/res/drawable/two.jpg differ
diff --git a/app/src/main/res/drawable/type_selector_bg.xml b/app/src/main/res/drawable/type_selector_bg.xml
new file mode 100644
index 0000000..9e06606
--- /dev/null
+++ b/app/src/main/res/drawable/type_selector_bg.xml
@@ -0,0 +1,15 @@
+
+
+
+ -
+
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/type_selector_normal_bg.xml b/app/src/main/res/drawable/type_selector_normal_bg.xml
new file mode 100644
index 0000000..77dee58
--- /dev/null
+++ b/app/src/main/res/drawable/type_selector_normal_bg.xml
@@ -0,0 +1,10 @@
+
+
+
+
+ -
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/user.png b/app/src/main/res/drawable/user.png
new file mode 100644
index 0000000..b1b6038
Binary files /dev/null and b/app/src/main/res/drawable/user.png differ
diff --git a/app/src/main/res/drawable/weibo.jpg b/app/src/main/res/drawable/weibo.jpg
new file mode 100644
index 0000000..48ed66b
Binary files /dev/null and b/app/src/main/res/drawable/weibo.jpg differ
diff --git a/app/src/main/res/drawable/weichat.jpg b/app/src/main/res/drawable/weichat.jpg
new file mode 100644
index 0000000..9e7948d
Binary files /dev/null and b/app/src/main/res/drawable/weichat.jpg differ
diff --git a/app/src/main/res/drawable/xx.png b/app/src/main/res/drawable/xx.png
new file mode 100644
index 0000000..5f4d7d0
Binary files /dev/null and b/app/src/main/res/drawable/xx.png differ
diff --git a/app/src/main/res/layout/activity_index.xml b/app/src/main/res/layout/activity_index.xml
new file mode 100644
index 0000000..5509091
--- /dev/null
+++ b/app/src/main/res/layout/activity_index.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_login.xml b/app/src/main/res/layout/activity_login.xml
new file mode 100644
index 0000000..bbe5300
--- /dev/null
+++ b/app/src/main/res/layout/activity_login.xml
@@ -0,0 +1,184 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000..916ee23
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_register.xml b/app/src/main/res/layout/activity_register.xml
new file mode 100644
index 0000000..7dd1212
--- /dev/null
+++ b/app/src/main/res/layout/activity_register.xml
@@ -0,0 +1,234 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_registerinformation.xml b/app/src/main/res/layout/activity_registerinformation.xml
new file mode 100644
index 0000000..0b0b93e
--- /dev/null
+++ b/app/src/main/res/layout/activity_registerinformation.xml
@@ -0,0 +1,49 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/content_nav.xml b/app/src/main/res/layout/content_nav.xml
new file mode 100644
index 0000000..89264d4
--- /dev/null
+++ b/app/src/main/res/layout/content_nav.xml
@@ -0,0 +1,106 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_food.xml b/app/src/main/res/layout/fragment_food.xml
new file mode 100644
index 0000000..d3f17ff
--- /dev/null
+++ b/app/src/main/res/layout/fragment_food.xml
@@ -0,0 +1,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_home.xml b/app/src/main/res/layout/fragment_home.xml
new file mode 100644
index 0000000..92dcaa9
--- /dev/null
+++ b/app/src/main/res/layout/fragment_home.xml
@@ -0,0 +1,271 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_person.xml b/app/src/main/res/layout/fragment_person.xml
new file mode 100644
index 0000000..f3c25a6
--- /dev/null
+++ b/app/src/main/res/layout/fragment_person.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fragment_shop.xml b/app/src/main/res/layout/fragment_shop.xml
new file mode 100644
index 0000000..1dde4b9
--- /dev/null
+++ b/app/src/main/res/layout/fragment_shop.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/left_list_item.xml b/app/src/main/res/layout/left_list_item.xml
new file mode 100644
index 0000000..a69bbda
--- /dev/null
+++ b/app/src/main/res/layout/left_list_item.xml
@@ -0,0 +1,14 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/list_item_layout.xml b/app/src/main/res/layout/list_item_layout.xml
new file mode 100644
index 0000000..0d224e0
--- /dev/null
+++ b/app/src/main/res/layout/list_item_layout.xml
@@ -0,0 +1,11 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/right_list_item.xml b/app/src/main/res/layout/right_list_item.xml
new file mode 100644
index 0000000..c207a92
--- /dev/null
+++ b/app/src/main/res/layout/right_list_item.xml
@@ -0,0 +1,64 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/menu/main.xml b/app/src/main/res/menu/main.xml
new file mode 100644
index 0000000..8859937
--- /dev/null
+++ b/app/src/main/res/menu/main.xml
@@ -0,0 +1,22 @@
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000..6f3b755
--- /dev/null
+++ b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/app/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 0000000..c209e78
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..b2dfe3d
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/app/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 0000000..4f0f1d6
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..62b611d
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 0000000..948a307
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..1b9a695
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..28d4b77
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9287f50
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 0000000..aa7d642
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000..9126ae3
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/app/src/main/res/values-night/themes.xml b/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000..4d1f43f
--- /dev/null
+++ b/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000..49f1745
--- /dev/null
+++ b/app/src/main/res/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #FF000000
+ #FFFFFFFF
+ #FFC0CB
+
\ No newline at end of file
diff --git a/app/src/main/res/values/dimens.xml b/app/src/main/res/values/dimens.xml
new file mode 100644
index 0000000..ca514d8
--- /dev/null
+++ b/app/src/main/res/values/dimens.xml
@@ -0,0 +1,4 @@
+
+
+ 16dp
+
\ No newline at end of file
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000..1cff7b2
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,5 @@
+
+ DeliciousFoodApp
+
+ Hello blank fragment
+
\ No newline at end of file
diff --git a/app/src/main/res/values/themes.xml b/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000..732f8b3
--- /dev/null
+++ b/app/src/main/res/values/themes.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/backup_rules.xml b/app/src/main/res/xml/backup_rules.xml
new file mode 100644
index 0000000..fa0f996
--- /dev/null
+++ b/app/src/main/res/xml/backup_rules.xml
@@ -0,0 +1,13 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/xml/data_extraction_rules.xml b/app/src/main/res/xml/data_extraction_rules.xml
new file mode 100644
index 0000000..9ee9997
--- /dev/null
+++ b/app/src/main/res/xml/data_extraction_rules.xml
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/test/java/com/example/deliciousfoodapp/ExampleUnitTest.java b/app/src/test/java/com/example/deliciousfoodapp/ExampleUnitTest.java
new file mode 100644
index 0000000..e3d43ef
--- /dev/null
+++ b/app/src/test/java/com/example/deliciousfoodapp/ExampleUnitTest.java
@@ -0,0 +1,17 @@
+package com.example.deliciousfoodapp;
+
+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