From 2125fe8032f8072f6a551a3160abaa1d27daeb53 Mon Sep 17 00:00:00 2001 From: feiyanan <1661428666@qq.com> Date: Thu, 14 Mar 2024 16:06:21 +0800 Subject: [PATCH] =?UTF-8?q?=E5=88=9D=E5=A7=8B=E6=8F=90=E4=BA=A4=E9=A1=B9?= =?UTF-8?q?=E7=9B=AE?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- AndroidManifest.xml | 26 +++ .../example/myapplication/MainActivity.java | 14 ++ res/drawable/ic_launcher_background.xml | 170 ++++++++++++++++++ res/drawable/ic_launcher_foreground.xml | 30 ++++ res/layout/activity_main.xml | 47 +++++ res/mipmap-anydpi-v26/ic_launcher.xml | 6 + res/mipmap-anydpi-v26/ic_launcher_round.xml | 6 + res/mipmap-hdpi/ic_launcher.webp | Bin 0 -> 1404 bytes res/mipmap-hdpi/ic_launcher_round.webp | Bin 0 -> 2898 bytes res/mipmap-mdpi/ic_launcher.webp | Bin 0 -> 982 bytes res/mipmap-mdpi/ic_launcher_round.webp | Bin 0 -> 1772 bytes res/mipmap-xhdpi/ic_launcher.webp | Bin 0 -> 1900 bytes res/mipmap-xhdpi/ic_launcher_round.webp | Bin 0 -> 3918 bytes res/mipmap-xxhdpi/ic_launcher.webp | Bin 0 -> 2884 bytes res/mipmap-xxhdpi/ic_launcher_round.webp | Bin 0 -> 5914 bytes res/mipmap-xxxhdpi/ic_launcher.webp | Bin 0 -> 3844 bytes res/mipmap-xxxhdpi/ic_launcher_round.webp | Bin 0 -> 7778 bytes res/values-night/themes.xml | 7 + res/values/colors.xml | 5 + res/values/strings.xml | 3 + res/values/themes.xml | 9 + res/xml/backup_rules.xml | 13 ++ res/xml/data_extraction_rules.xml | 19 ++ 23 files changed, 355 insertions(+) create mode 100644 AndroidManifest.xml create mode 100644 java/com/example/myapplication/MainActivity.java create mode 100644 res/drawable/ic_launcher_background.xml create mode 100644 res/drawable/ic_launcher_foreground.xml create mode 100644 res/layout/activity_main.xml create mode 100644 res/mipmap-anydpi-v26/ic_launcher.xml create mode 100644 res/mipmap-anydpi-v26/ic_launcher_round.xml create mode 100644 res/mipmap-hdpi/ic_launcher.webp create mode 100644 res/mipmap-hdpi/ic_launcher_round.webp create mode 100644 res/mipmap-mdpi/ic_launcher.webp create mode 100644 res/mipmap-mdpi/ic_launcher_round.webp create mode 100644 res/mipmap-xhdpi/ic_launcher.webp create mode 100644 res/mipmap-xhdpi/ic_launcher_round.webp create mode 100644 res/mipmap-xxhdpi/ic_launcher.webp create mode 100644 res/mipmap-xxhdpi/ic_launcher_round.webp create mode 100644 res/mipmap-xxxhdpi/ic_launcher.webp create mode 100644 res/mipmap-xxxhdpi/ic_launcher_round.webp create mode 100644 res/values-night/themes.xml create mode 100644 res/values/colors.xml create mode 100644 res/values/strings.xml create mode 100644 res/values/themes.xml create mode 100644 res/xml/backup_rules.xml create mode 100644 res/xml/data_extraction_rules.xml diff --git a/AndroidManifest.xml b/AndroidManifest.xml new file mode 100644 index 0000000..9d5ed99 --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + diff --git a/java/com/example/myapplication/MainActivity.java b/java/com/example/myapplication/MainActivity.java new file mode 100644 index 0000000..e640aaf --- /dev/null +++ b/java/com/example/myapplication/MainActivity.java @@ -0,0 +1,14 @@ +package com.example.myapplication; + +import androidx.appcompat.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); + } +} \ No newline at end of file diff --git a/res/drawable/ic_launcher_background.xml b/res/drawable/ic_launcher_background.xml new file mode 100644 index 0000000..07d5da9 --- /dev/null +++ b/res/drawable/ic_launcher_background.xml @@ -0,0 +1,170 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/res/drawable/ic_launcher_foreground.xml b/res/drawable/ic_launcher_foreground.xml new file mode 100644 index 0000000..2b068d1 --- /dev/null +++ b/res/drawable/ic_launcher_foreground.xml @@ -0,0 +1,30 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/res/layout/activity_main.xml b/res/layout/activity_main.xml new file mode 100644 index 0000000..7175ad3 --- /dev/null +++ b/res/layout/activity_main.xml @@ -0,0 +1,47 @@ + + + + + + + + +