diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..aa724b7
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,15 @@
+*.iml
+.gradle
+/local.properties
+/.idea/caches
+/.idea/libraries
+/.idea/modules.xml
+/.idea/workspace.xml
+/.idea/navEditor.xml
+/.idea/assetWizardSettings.xml
+.DS_Store
+/build
+/captures
+.externalNativeBuild
+.cxx
+local.properties
diff --git a/.idea/.gitignore b/.idea/.gitignore
new file mode 100644
index 0000000..35410ca
--- /dev/null
+++ b/.idea/.gitignore
@@ -0,0 +1,8 @@
+# 默认忽略的文件
+/shelf/
+/workspace.xml
+# 基于编辑器的 HTTP 客户端请求
+/httpRequests/
+# Datasource local storage ignored files
+/dataSources/
+/dataSources.local.xml
diff --git a/.idea/.name b/.idea/.name
new file mode 100644
index 0000000..b3405b3
--- /dev/null
+++ b/.idea/.name
@@ -0,0 +1 @@
+My Application
\ No newline at end of file
diff --git a/.idea/gradle.xml b/.idea/gradle.xml
new file mode 100644
index 0000000..900e5e4
--- /dev/null
+++ b/.idea/gradle.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/misc.xml b/.idea/misc.xml
new file mode 100644
index 0000000..a3ccf56
--- /dev/null
+++ b/.idea/misc.xml
@@ -0,0 +1,9 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/.gitignore b/app/.gitignore
new file mode 100644
index 0000000..42afabf
--- /dev/null
+++ b/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
new file mode 100644
index 0000000..f4ce9bb
--- /dev/null
+++ b/app/build.gradle
@@ -0,0 +1,38 @@
+plugins {
+ id 'com.android.application'
+}
+
+android {
+ compileSdk 32
+
+ defaultConfig {
+ applicationId "com.example.myapplication"
+ minSdk 21
+ targetSdk 32
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+}
+
+dependencies {
+
+ implementation 'androidx.appcompat:appcompat:1.2.0'
+ implementation 'com.google.android.material:material:1.3.0'
+ implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
+ testImplementation 'junit:junit:4.+'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.2'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
+}
\ No newline at end of file
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100644
index 0000000..481bb43
--- /dev/null
+++ b/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
\ No newline at end of file
diff --git a/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java b/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java
new file mode 100644
index 0000000..34e2ef1
--- /dev/null
+++ b/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java
@@ -0,0 +1,25 @@
+package com.example.myapplication;
+
+import android.content.Context;
+import androidx.test.platform.app.InstrumentationRegistry;
+import androidx.test.ext.junit.runners.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.getInstrumentation().getTargetContext();
+ assertEquals("com.example.myapplication", appContext.getPackageName());
+ }
+}
\ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000..8ab9183
--- /dev/null
+++ b/app/src/main/AndroidManifest.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/java/com/example/myapplication/MainActivity.java b/app/src/main/java/com/example/myapplication/MainActivity.java
new file mode 100644
index 0000000..da25bf6
--- /dev/null
+++ b/app/src/main/java/com/example/myapplication/MainActivity.java
@@ -0,0 +1,13 @@
+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/app/src/main/res/anim/anim_bottom_in.xml b/app/src/main/res/anim/anim_bottom_in.xml
new file mode 100644
index 0000000..400200d
--- /dev/null
+++ b/app/src/main/res/anim/anim_bottom_in.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/app/src/main/res/anim/anim_bottom_out.xml b/app/src/main/res/anim/anim_bottom_out.xml
new file mode 100644
index 0000000..7330ff3
--- /dev/null
+++ b/app/src/main/res/anim/anim_bottom_out.xml
@@ -0,0 +1,9 @@
+
+
+
+
diff --git a/app/src/main/res/anim/pop_in.xml b/app/src/main/res/anim/pop_in.xml
new file mode 100644
index 0000000..fd9c6fa
--- /dev/null
+++ b/app/src/main/res/anim/pop_in.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/pop_out.xml b/app/src/main/res/anim/pop_out.xml
new file mode 100644
index 0000000..659cb79
--- /dev/null
+++ b/app/src/main/res/anim/pop_out.xml
@@ -0,0 +1,10 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/pull_arrow_down.xml b/app/src/main/res/anim/pull_arrow_down.xml
new file mode 100644
index 0000000..33da0d1
--- /dev/null
+++ b/app/src/main/res/anim/pull_arrow_down.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/pull_arrow_up.xml b/app/src/main/res/anim/pull_arrow_up.xml
new file mode 100644
index 0000000..c6d1ca1
--- /dev/null
+++ b/app/src/main/res/anim/pull_arrow_up.xml
@@ -0,0 +1,13 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/rotate_animation.xml b/app/src/main/res/anim/rotate_animation.xml
new file mode 100644
index 0000000..7bd1881
--- /dev/null
+++ b/app/src/main/res/anim/rotate_animation.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/slide_in_bottom.xml b/app/src/main/res/anim/slide_in_bottom.xml
new file mode 100644
index 0000000..4859c69
--- /dev/null
+++ b/app/src/main/res/anim/slide_in_bottom.xml
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/slide_in_top.xml b/app/src/main/res/anim/slide_in_top.xml
new file mode 100644
index 0000000..1802858
--- /dev/null
+++ b/app/src/main/res/anim/slide_in_top.xml
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/slide_out_bottom.xml b/app/src/main/res/anim/slide_out_bottom.xml
new file mode 100644
index 0000000..38e6b98
--- /dev/null
+++ b/app/src/main/res/anim/slide_out_bottom.xml
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/slide_out_top.xml b/app/src/main/res/anim/slide_out_top.xml
new file mode 100644
index 0000000..adbb9aa
--- /dev/null
+++ b/app/src/main/res/anim/slide_out_top.xml
@@ -0,0 +1,6 @@
+
+
\ No newline at end of file
diff --git a/app/src/main/res/anim/splash_start.xml b/app/src/main/res/anim/splash_start.xml
new file mode 100644
index 0000000..c18fb65
--- /dev/null
+++ b/app/src/main/res/anim/splash_start.xml
@@ -0,0 +1,18 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable-hdpi/about.jpg b/app/src/main/res/drawable-hdpi/about.jpg
new file mode 100644
index 0000000..1789c0f
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/about.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/about_logo.png b/app/src/main/res/drawable-hdpi/about_logo.png
new file mode 100644
index 0000000..171322b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/about_logo.png differ
diff --git a/app/src/main/res/drawable-hdpi/chide_collect_checked.png b/app/src/main/res/drawable-hdpi/chide_collect_checked.png
new file mode 100644
index 0000000..f83b35a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/chide_collect_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/chide_collect_normal.png b/app/src/main/res/drawable-hdpi/chide_collect_normal.png
new file mode 100644
index 0000000..84de807
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/chide_collect_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/chide_detail_head.png b/app/src/main/res/drawable-hdpi/chide_detail_head.png
new file mode 100644
index 0000000..bfd6989
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/chide_detail_head.png differ
diff --git a/app/src/main/res/drawable-hdpi/chide_detail_layer.png b/app/src/main/res/drawable-hdpi/chide_detail_layer.png
new file mode 100644
index 0000000..b3c5473
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/chide_detail_layer.png differ
diff --git a/app/src/main/res/drawable-hdpi/chide_like_checked.png b/app/src/main/res/drawable-hdpi/chide_like_checked.png
new file mode 100644
index 0000000..06780c9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/chide_like_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/chide_like_normal.png b/app/src/main/res/drawable-hdpi/chide_like_normal.png
new file mode 100644
index 0000000..6d2b0a5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/chide_like_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/circle.png b/app/src/main/res/drawable-hdpi/circle.png
new file mode 100644
index 0000000..9da1cd2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/circle.png differ
diff --git a/app/src/main/res/drawable-hdpi/close.png b/app/src/main/res/drawable-hdpi/close.png
new file mode 100644
index 0000000..ae50fc5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/close.png differ
diff --git a/app/src/main/res/drawable-hdpi/comment_checked.png b/app/src/main/res/drawable-hdpi/comment_checked.png
new file mode 100644
index 0000000..3295c14
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/comment_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/comment_normal.png b/app/src/main/res/drawable-hdpi/comment_normal.png
new file mode 100644
index 0000000..1b46a5a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/comment_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_back_checked.png b/app/src/main/res/drawable-hdpi/common_back_checked.png
new file mode 100644
index 0000000..1633858
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_back_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_back_normal.png b/app/src/main/res/drawable-hdpi/common_back_normal.png
new file mode 100644
index 0000000..b0d8698
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_back_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_collect_checked.png b/app/src/main/res/drawable-hdpi/common_collect_checked.png
new file mode 100644
index 0000000..884e5a1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_collect_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_collect_normal.png b/app/src/main/res/drawable-hdpi/common_collect_normal.png
new file mode 100644
index 0000000..ecb574b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_collect_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_drip_purple.png b/app/src/main/res/drawable-hdpi/common_drip_purple.png
new file mode 100644
index 0000000..16f31d9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_drip_purple.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_drip_red.png b/app/src/main/res/drawable-hdpi/common_drip_red.png
new file mode 100644
index 0000000..62f85a4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_drip_red.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_drip_yellow.png b/app/src/main/res/drawable-hdpi/common_drip_yellow.png
new file mode 100644
index 0000000..9309e47
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_drip_yellow.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_goto.png b/app/src/main/res/drawable-hdpi/common_goto.png
new file mode 100644
index 0000000..c033091
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_goto.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_hot.png b/app/src/main/res/drawable-hdpi/common_hot.png
new file mode 100644
index 0000000..453e50b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_hot.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_like_checked.png b/app/src/main/res/drawable-hdpi/common_like_checked.png
new file mode 100644
index 0000000..bf611f0
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_like_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_like_normal.png b/app/src/main/res/drawable-hdpi/common_like_normal.png
new file mode 100644
index 0000000..5b35564
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_like_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_nd.png b/app/src/main/res/drawable-hdpi/common_nd.png
new file mode 100644
index 0000000..519dd7b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_nd.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_reply_checked.png b/app/src/main/res/drawable-hdpi/common_reply_checked.png
new file mode 100644
index 0000000..9476aa1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_reply_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_reply_normal.png b/app/src/main/res/drawable-hdpi/common_reply_normal.png
new file mode 100644
index 0000000..7b8bf0b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_reply_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_slash_purple.png b/app/src/main/res/drawable-hdpi/common_slash_purple.png
new file mode 100644
index 0000000..8f0beb9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_slash_purple.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_slash_red.png b/app/src/main/res/drawable-hdpi/common_slash_red.png
new file mode 100644
index 0000000..3bdf848
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_slash_red.png differ
diff --git a/app/src/main/res/drawable-hdpi/common_slash_yellow.png b/app/src/main/res/drawable-hdpi/common_slash_yellow.png
new file mode 100644
index 0000000..979e8ae
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/common_slash_yellow.png differ
diff --git a/app/src/main/res/drawable-hdpi/default_avatar.png b/app/src/main/res/drawable-hdpi/default_avatar.png
new file mode 100644
index 0000000..72b53e4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/default_avatar.png differ
diff --git a/app/src/main/res/drawable-hdpi/default_bg.jpg b/app/src/main/res/drawable-hdpi/default_bg.jpg
new file mode 100644
index 0000000..4e2f6f2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/default_bg.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/difficult.png b/app/src/main/res/drawable-hdpi/difficult.png
new file mode 100644
index 0000000..6d94c03
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/difficult.png differ
diff --git a/app/src/main/res/drawable-hdpi/difficult_nobg.png b/app/src/main/res/drawable-hdpi/difficult_nobg.png
new file mode 100644
index 0000000..4775705
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/difficult_nobg.png differ
diff --git a/app/src/main/res/drawable-hdpi/edit_bgimg.jpg b/app/src/main/res/drawable-hdpi/edit_bgimg.jpg
new file mode 100644
index 0000000..6944e44
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/edit_bgimg.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/guangde_img.png b/app/src/main/res/drawable-hdpi/guangde_img.png
new file mode 100644
index 0000000..16890cb
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/guangde_img.png differ
diff --git a/app/src/main/res/drawable-hdpi/guangde_img1.jpg b/app/src/main/res/drawable-hdpi/guangde_img1.jpg
new file mode 100644
index 0000000..ca8eaf0
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/guangde_img1.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/hint_mycookbook.png b/app/src/main/res/drawable-hdpi/hint_mycookbook.png
new file mode 100644
index 0000000..ea0e47c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/hint_mycookbook.png differ
diff --git a/app/src/main/res/drawable-hdpi/hint_publish.png b/app/src/main/res/drawable-hdpi/hint_publish.png
new file mode 100644
index 0000000..08563f1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/hint_publish.png differ
diff --git a/app/src/main/res/drawable-hdpi/hint_publish_baseinfo.png b/app/src/main/res/drawable-hdpi/hint_publish_baseinfo.png
new file mode 100644
index 0000000..11d371e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/hint_publish_baseinfo.png differ
diff --git a/app/src/main/res/drawable-hdpi/icn_1.png b/app/src/main/res/drawable-hdpi/icn_1.png
new file mode 100644
index 0000000..4305173
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icn_1.png differ
diff --git a/app/src/main/res/drawable-hdpi/icn_2.png b/app/src/main/res/drawable-hdpi/icn_2.png
new file mode 100644
index 0000000..e1abae7
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icn_2.png differ
diff --git a/app/src/main/res/drawable-hdpi/icn_3.png b/app/src/main/res/drawable-hdpi/icn_3.png
new file mode 100644
index 0000000..e620c84
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icn_3.png differ
diff --git a/app/src/main/res/drawable-hdpi/icn_4.png b/app/src/main/res/drawable-hdpi/icn_4.png
new file mode 100644
index 0000000..6792c3a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icn_4.png differ
diff --git a/app/src/main/res/drawable-hdpi/icn_5.png b/app/src/main/res/drawable-hdpi/icn_5.png
new file mode 100644
index 0000000..1024cfc
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icn_5.png differ
diff --git a/app/src/main/res/drawable-hdpi/icn_close.png b/app/src/main/res/drawable-hdpi/icn_close.png
new file mode 100644
index 0000000..60489a9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icn_close.png differ
diff --git a/app/src/main/res/drawable-hdpi/icon.png b/app/src/main/res/drawable-hdpi/icon.png
new file mode 100644
index 0000000..162c623
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/icon.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_1_2_checked.png b/app/src/main/res/drawable-hdpi/issue_1_2_checked.png
new file mode 100644
index 0000000..c0d88ee
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_1_2_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_1_2_normal.png b/app/src/main/res/drawable-hdpi/issue_1_2_normal.png
new file mode 100644
index 0000000..d72ebb4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_1_2_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_3_6_checked.png b/app/src/main/res/drawable-hdpi/issue_3_6_checked.png
new file mode 100644
index 0000000..d3716a9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_3_6_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_3_6_normal.png b/app/src/main/res/drawable-hdpi/issue_3_6_normal.png
new file mode 100644
index 0000000..ec5b38c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_3_6_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_4_6_checked.png b/app/src/main/res/drawable-hdpi/issue_4_6_checked.png
new file mode 100644
index 0000000..3eae541
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_4_6_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_4_6_normal.png b/app/src/main/res/drawable-hdpi/issue_4_6_normal.png
new file mode 100644
index 0000000..ce44308
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_4_6_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_7_8_checked.png b/app/src/main/res/drawable-hdpi/issue_7_8_checked.png
new file mode 100644
index 0000000..7e2a865
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_7_8_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_7_8_normal.png b/app/src/main/res/drawable-hdpi/issue_7_8_normal.png
new file mode 100644
index 0000000..6a7157b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_7_8_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_9_12_checked.png b/app/src/main/res/drawable-hdpi/issue_9_12_checked.png
new file mode 100644
index 0000000..fa7dacf
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_9_12_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_9_12_normal.png b/app/src/main/res/drawable-hdpi/issue_9_12_normal.png
new file mode 100644
index 0000000..ea74c41
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_9_12_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_add_checked.png b/app/src/main/res/drawable-hdpi/issue_add_checked.png
new file mode 100644
index 0000000..302a38b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_add_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_add_normal.png b/app/src/main/res/drawable-hdpi/issue_add_normal.png
new file mode 100644
index 0000000..00d769e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_add_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_beiyun_checked.png b/app/src/main/res/drawable-hdpi/issue_beiyun_checked.png
new file mode 100644
index 0000000..8b01127
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_beiyun_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_beiyun_normal.png b/app/src/main/res/drawable-hdpi/issue_beiyun_normal.png
new file mode 100644
index 0000000..6ee4feb
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_beiyun_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_children_checked.png b/app/src/main/res/drawable-hdpi/issue_children_checked.png
new file mode 100644
index 0000000..dbb74a8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_children_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_children_normal.png b/app/src/main/res/drawable-hdpi/issue_children_normal.png
new file mode 100644
index 0000000..11a7b5d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_children_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_confirm_checked.png b/app/src/main/res/drawable-hdpi/issue_confirm_checked.png
new file mode 100644
index 0000000..9149c18
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_confirm_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_confirm_normal.png b/app/src/main/res/drawable-hdpi/issue_confirm_normal.png
new file mode 100644
index 0000000..1b1dfac
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_confirm_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_delete_checked.png b/app/src/main/res/drawable-hdpi/issue_delete_checked.png
new file mode 100644
index 0000000..57fa517
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_delete_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_delete_normal.png b/app/src/main/res/drawable-hdpi/issue_delete_normal.png
new file mode 100644
index 0000000..2aa6fbb
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_delete_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_parent_checked.png b/app/src/main/res/drawable-hdpi/issue_parent_checked.png
new file mode 100644
index 0000000..4c191ce
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_parent_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_parent_normal.png b/app/src/main/res/drawable-hdpi/issue_parent_normal.png
new file mode 100644
index 0000000..e44ccf2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_parent_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_send_checked.png b/app/src/main/res/drawable-hdpi/issue_send_checked.png
new file mode 100644
index 0000000..b4b46e9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_send_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_send_normal.png b/app/src/main/res/drawable-hdpi/issue_send_normal.png
new file mode 100644
index 0000000..5ba0371
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_send_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yuezi_checked.png b/app/src/main/res/drawable-hdpi/issue_yuezi_checked.png
new file mode 100644
index 0000000..5c07388
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yuezi_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yuezi_normal.png b/app/src/main/res/drawable-hdpi/issue_yuezi_normal.png
new file mode 100644
index 0000000..a04f7ba
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yuezi_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yunchu_checked.png b/app/src/main/res/drawable-hdpi/issue_yunchu_checked.png
new file mode 100644
index 0000000..d403cad
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yunchu_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yunchu_normal.png b/app/src/main/res/drawable-hdpi/issue_yunchu_normal.png
new file mode 100644
index 0000000..c57dfa8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yunchu_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yunwan_checked.png b/app/src/main/res/drawable-hdpi/issue_yunwan_checked.png
new file mode 100644
index 0000000..fb6af62
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yunwan_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yunwan_normal.png b/app/src/main/res/drawable-hdpi/issue_yunwan_normal.png
new file mode 100644
index 0000000..b83f545
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yunwan_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yunzhong_checked.png b/app/src/main/res/drawable-hdpi/issue_yunzhong_checked.png
new file mode 100644
index 0000000..6637538
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yunzhong_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/issue_yunzhong_normal.png b/app/src/main/res/drawable-hdpi/issue_yunzhong_normal.png
new file mode 100644
index 0000000..719744f
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/issue_yunzhong_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/load1.png b/app/src/main/res/drawable-hdpi/load1.png
new file mode 100644
index 0000000..430bfdd
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load1.png differ
diff --git a/app/src/main/res/drawable-hdpi/load10.png b/app/src/main/res/drawable-hdpi/load10.png
new file mode 100644
index 0000000..ac73c59
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load10.png differ
diff --git a/app/src/main/res/drawable-hdpi/load11.png b/app/src/main/res/drawable-hdpi/load11.png
new file mode 100644
index 0000000..aab062c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load11.png differ
diff --git a/app/src/main/res/drawable-hdpi/load12.png b/app/src/main/res/drawable-hdpi/load12.png
new file mode 100644
index 0000000..2cff7aa
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load12.png differ
diff --git a/app/src/main/res/drawable-hdpi/load2.png b/app/src/main/res/drawable-hdpi/load2.png
new file mode 100644
index 0000000..79cddfc
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load2.png differ
diff --git a/app/src/main/res/drawable-hdpi/load3.png b/app/src/main/res/drawable-hdpi/load3.png
new file mode 100644
index 0000000..0952ac5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load3.png differ
diff --git a/app/src/main/res/drawable-hdpi/load4.png b/app/src/main/res/drawable-hdpi/load4.png
new file mode 100644
index 0000000..29b54ca
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load4.png differ
diff --git a/app/src/main/res/drawable-hdpi/load5.png b/app/src/main/res/drawable-hdpi/load5.png
new file mode 100644
index 0000000..ea3305e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load5.png differ
diff --git a/app/src/main/res/drawable-hdpi/load6.png b/app/src/main/res/drawable-hdpi/load6.png
new file mode 100644
index 0000000..f8f75fe
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load6.png differ
diff --git a/app/src/main/res/drawable-hdpi/load7.png b/app/src/main/res/drawable-hdpi/load7.png
new file mode 100644
index 0000000..2a73ee1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load7.png differ
diff --git a/app/src/main/res/drawable-hdpi/load8.png b/app/src/main/res/drawable-hdpi/load8.png
new file mode 100644
index 0000000..da40da7
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load8.png differ
diff --git a/app/src/main/res/drawable-hdpi/load9.png b/app/src/main/res/drawable-hdpi/load9.png
new file mode 100644
index 0000000..b139e9b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/load9.png differ
diff --git a/app/src/main/res/drawable-hdpi/location.png b/app/src/main/res/drawable-hdpi/location.png
new file mode 100644
index 0000000..9ead64d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/location.png differ
diff --git a/app/src/main/res/drawable-hdpi/login_img_bg.jpg b/app/src/main/res/drawable-hdpi/login_img_bg.jpg
new file mode 100644
index 0000000..b0dae0c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/login_img_bg.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/login_in_checked.png b/app/src/main/res/drawable-hdpi/login_in_checked.png
new file mode 100644
index 0000000..b96d097
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/login_in_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/login_in_normal.png b/app/src/main/res/drawable-hdpi/login_in_normal.png
new file mode 100644
index 0000000..8e6ccf2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/login_in_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/login_password.png b/app/src/main/res/drawable-hdpi/login_password.png
new file mode 100644
index 0000000..53da7de
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/login_password.png differ
diff --git a/app/src/main/res/drawable-hdpi/login_sign_checked.png b/app/src/main/res/drawable-hdpi/login_sign_checked.png
new file mode 100644
index 0000000..8f28049
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/login_sign_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/login_sign_normal.png b/app/src/main/res/drawable-hdpi/login_sign_normal.png
new file mode 100644
index 0000000..6b09778
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/login_sign_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/login_username.png b/app/src/main/res/drawable-hdpi/login_username.png
new file mode 100644
index 0000000..fa022f5
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/login_username.png differ
diff --git a/app/src/main/res/drawable-hdpi/logo.png b/app/src/main/res/drawable-hdpi/logo.png
new file mode 100644
index 0000000..dcd2bf4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/logo.png differ
diff --git a/app/src/main/res/drawable-hdpi/logo_256.png b/app/src/main/res/drawable-hdpi/logo_256.png
new file mode 100644
index 0000000..2bb572d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/logo_256.png differ
diff --git a/app/src/main/res/drawable-hdpi/logo_512_corner.png b/app/src/main/res/drawable-hdpi/logo_512_corner.png
new file mode 100644
index 0000000..02a2ba3
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/logo_512_corner.png differ
diff --git a/app/src/main/res/drawable-hdpi/logo_96.png b/app/src/main/res/drawable-hdpi/logo_96.png
new file mode 100644
index 0000000..e344791
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/logo_96.png differ
diff --git a/app/src/main/res/drawable-hdpi/modifypassword_confirm_checked.png b/app/src/main/res/drawable-hdpi/modifypassword_confirm_checked.png
new file mode 100644
index 0000000..a9737f2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/modifypassword_confirm_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/modifypassword_confirm_normal.png b/app/src/main/res/drawable-hdpi/modifypassword_confirm_normal.png
new file mode 100644
index 0000000..7ae6185
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/modifypassword_confirm_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/more_checked.png b/app/src/main/res/drawable-hdpi/more_checked.png
new file mode 100644
index 0000000..f85dd56
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/more_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/more_normal.png b/app/src/main/res/drawable-hdpi/more_normal.png
new file mode 100644
index 0000000..29c6fc6
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/more_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/myfollow_cancel.png b/app/src/main/res/drawable-hdpi/myfollow_cancel.png
new file mode 100644
index 0000000..7e7ca3f
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/myfollow_cancel.png differ
diff --git a/app/src/main/res/drawable-hdpi/myfollow_follow.png b/app/src/main/res/drawable-hdpi/myfollow_follow.png
new file mode 100644
index 0000000..f7afb94
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/myfollow_follow.png differ
diff --git a/app/src/main/res/drawable-hdpi/object.png b/app/src/main/res/drawable-hdpi/object.png
new file mode 100644
index 0000000..fb9b6dc
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/object.png differ
diff --git a/app/src/main/res/drawable-hdpi/page.png b/app/src/main/res/drawable-hdpi/page.png
new file mode 100644
index 0000000..16bd4b9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/page.png differ
diff --git a/app/src/main/res/drawable-hdpi/page_icon_empty.png b/app/src/main/res/drawable-hdpi/page_icon_empty.png
new file mode 100644
index 0000000..7dda051
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/page_icon_empty.png differ
diff --git a/app/src/main/res/drawable-hdpi/page_icon_network.png b/app/src/main/res/drawable-hdpi/page_icon_network.png
new file mode 100644
index 0000000..740167b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/page_icon_network.png differ
diff --git a/app/src/main/res/drawable-hdpi/page_now.png b/app/src/main/res/drawable-hdpi/page_now.png
new file mode 100644
index 0000000..50703bc
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/page_now.png differ
diff --git a/app/src/main/res/drawable-hdpi/pagefailed_bg.png b/app/src/main/res/drawable-hdpi/pagefailed_bg.png
new file mode 100644
index 0000000..e09cc51
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/pagefailed_bg.png differ
diff --git a/app/src/main/res/drawable-hdpi/perfect.png b/app/src/main/res/drawable-hdpi/perfect.png
new file mode 100644
index 0000000..297fa30
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/perfect.png differ
diff --git a/app/src/main/res/drawable-hdpi/personal_home_follow.png b/app/src/main/res/drawable-hdpi/personal_home_follow.png
new file mode 100644
index 0000000..1bca635
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/personal_home_follow.png differ
diff --git a/app/src/main/res/drawable-hdpi/personal_home_followed.png b/app/src/main/res/drawable-hdpi/personal_home_followed.png
new file mode 100644
index 0000000..6856c95
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/personal_home_followed.png differ
diff --git a/app/src/main/res/drawable-hdpi/plus.png b/app/src/main/res/drawable-hdpi/plus.png
new file mode 100644
index 0000000..7814ba7
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/plus.png differ
diff --git a/app/src/main/res/drawable-hdpi/portrait.jpg b/app/src/main/res/drawable-hdpi/portrait.jpg
new file mode 100644
index 0000000..260cd09
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/portrait.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/portrait1.jpg b/app/src/main/res/drawable-hdpi/portrait1.jpg
new file mode 100644
index 0000000..85c51fd
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/portrait1.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/proce.png b/app/src/main/res/drawable-hdpi/proce.png
new file mode 100644
index 0000000..64c2c5b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/proce.png differ
diff --git a/app/src/main/res/drawable-hdpi/proce_nobg.png b/app/src/main/res/drawable-hdpi/proce_nobg.png
new file mode 100644
index 0000000..90a746d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/proce_nobg.png differ
diff --git a/app/src/main/res/drawable-hdpi/publish_cover.png b/app/src/main/res/drawable-hdpi/publish_cover.png
new file mode 100644
index 0000000..603aec8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/publish_cover.png differ
diff --git a/app/src/main/res/drawable-hdpi/publish_edit_left.png b/app/src/main/res/drawable-hdpi/publish_edit_left.png
new file mode 100644
index 0000000..a8cfe4f
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/publish_edit_left.png differ
diff --git a/app/src/main/res/drawable-hdpi/publish_edit_right.png b/app/src/main/res/drawable-hdpi/publish_edit_right.png
new file mode 100644
index 0000000..438c023
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/publish_edit_right.png differ
diff --git a/app/src/main/res/drawable-hdpi/publish_less.png b/app/src/main/res/drawable-hdpi/publish_less.png
new file mode 100644
index 0000000..df62a55
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/publish_less.png differ
diff --git a/app/src/main/res/drawable-hdpi/publish_more.png b/app/src/main/res/drawable-hdpi/publish_more.png
new file mode 100644
index 0000000..53cbdcf
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/publish_more.png differ
diff --git a/app/src/main/res/drawable-hdpi/recommend_eat_checked.png b/app/src/main/res/drawable-hdpi/recommend_eat_checked.png
new file mode 100644
index 0000000..f7b23b2
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/recommend_eat_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/recommend_eat_normal.png b/app/src/main/res/drawable-hdpi/recommend_eat_normal.png
new file mode 100644
index 0000000..2acb06e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/recommend_eat_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/recommend_talk_checked.png b/app/src/main/res/drawable-hdpi/recommend_talk_checked.png
new file mode 100644
index 0000000..836f365
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/recommend_talk_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/recommend_talk_normal.png b/app/src/main/res/drawable-hdpi/recommend_talk_normal.png
new file mode 100644
index 0000000..ec25a79
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/recommend_talk_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/reply_checked.png b/app/src/main/res/drawable-hdpi/reply_checked.png
new file mode 100644
index 0000000..be14e3c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/reply_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/reply_normal.png b/app/src/main/res/drawable-hdpi/reply_normal.png
new file mode 100644
index 0000000..a45a494
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/reply_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/reply_send_checked.png b/app/src/main/res/drawable-hdpi/reply_send_checked.png
new file mode 100644
index 0000000..a026a9d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/reply_send_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/reply_send_normal.png b/app/src/main/res/drawable-hdpi/reply_send_normal.png
new file mode 100644
index 0000000..716f79b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/reply_send_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/search_clear_normal.png b/app/src/main/res/drawable-hdpi/search_clear_normal.png
new file mode 100644
index 0000000..8466f02
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/search_clear_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/search_clear_pressed.png b/app/src/main/res/drawable-hdpi/search_clear_pressed.png
new file mode 100644
index 0000000..e45ded9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/search_clear_pressed.png differ
diff --git a/app/src/main/res/drawable-hdpi/search_icon.png b/app/src/main/res/drawable-hdpi/search_icon.png
new file mode 100644
index 0000000..398bcd4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/search_icon.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_about.png b/app/src/main/res/drawable-hdpi/setting_about.png
new file mode 100644
index 0000000..fed2479
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_about.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_clear.png b/app/src/main/res/drawable-hdpi/setting_clear.png
new file mode 100644
index 0000000..aa8fa55
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_clear.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_edit.png b/app/src/main/res/drawable-hdpi/setting_edit.png
new file mode 100644
index 0000000..4573aa6
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_edit.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_exit_checked.png b/app/src/main/res/drawable-hdpi/setting_exit_checked.png
new file mode 100644
index 0000000..d1e726f
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_exit_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_exit_normal.png b/app/src/main/res/drawable-hdpi/setting_exit_normal.png
new file mode 100644
index 0000000..859f9d9
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_exit_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_password.png b/app/src/main/res/drawable-hdpi/setting_password.png
new file mode 100644
index 0000000..e7a1578
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_password.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_reply.png b/app/src/main/res/drawable-hdpi/setting_reply.png
new file mode 100644
index 0000000..51a5d37
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_reply.png differ
diff --git a/app/src/main/res/drawable-hdpi/setting_update.png b/app/src/main/res/drawable-hdpi/setting_update.png
new file mode 100644
index 0000000..2148dc4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/setting_update.png differ
diff --git a/app/src/main/res/drawable-hdpi/sex_boy.png b/app/src/main/res/drawable-hdpi/sex_boy.png
new file mode 100644
index 0000000..e7b1718
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sex_boy.png differ
diff --git a/app/src/main/res/drawable-hdpi/sex_girl.png b/app/src/main/res/drawable-hdpi/sex_girl.png
new file mode 100644
index 0000000..ef0323f
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sex_girl.png differ
diff --git a/app/src/main/res/drawable-hdpi/share_checked.png b/app/src/main/res/drawable-hdpi/share_checked.png
new file mode 100644
index 0000000..b4c7dbf
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/share_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/share_normal.png b/app/src/main/res/drawable-hdpi/share_normal.png
new file mode 100644
index 0000000..61683d1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/share_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/sign_img_bg.jpg b/app/src/main/res/drawable-hdpi/sign_img_bg.jpg
new file mode 100644
index 0000000..0294092
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sign_img_bg.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/sign_up_checked.png b/app/src/main/res/drawable-hdpi/sign_up_checked.png
new file mode 100644
index 0000000..3bb0f43
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sign_up_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/sign_up_normal.png b/app/src/main/res/drawable-hdpi/sign_up_normal.png
new file mode 100644
index 0000000..2ffea7e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sign_up_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/sign_verify_checked.png b/app/src/main/res/drawable-hdpi/sign_verify_checked.png
new file mode 100644
index 0000000..9bfdd13
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sign_verify_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/sign_verify_normal.png b/app/src/main/res/drawable-hdpi/sign_verify_normal.png
new file mode 100644
index 0000000..d3aac11
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/sign_verify_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/start.png b/app/src/main/res/drawable-hdpi/start.png
new file mode 100644
index 0000000..9005087
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/start.png differ
diff --git a/app/src/main/res/drawable-hdpi/step.png b/app/src/main/res/drawable-hdpi/step.png
new file mode 100644
index 0000000..42a76df
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/step.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_chide_checked.png b/app/src/main/res/drawable-hdpi/tab_chide_checked.png
new file mode 100644
index 0000000..963bb31
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_chide_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_chide_normal.png b/app/src/main/res/drawable-hdpi/tab_chide_normal.png
new file mode 100644
index 0000000..e141b8a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_chide_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_guangde_checked.png b/app/src/main/res/drawable-hdpi/tab_guangde_checked.png
new file mode 100644
index 0000000..84749a7
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_guangde_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_guangde_normal.png b/app/src/main/res/drawable-hdpi/tab_guangde_normal.png
new file mode 100644
index 0000000..9ddef07
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_guangde_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_liaode_checked.png b/app/src/main/res/drawable-hdpi/tab_liaode_checked.png
new file mode 100644
index 0000000..ea1c590
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_liaode_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_liaode_normal.png b/app/src/main/res/drawable-hdpi/tab_liaode_normal.png
new file mode 100644
index 0000000..05f555d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_liaode_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_recommend_checked.png b/app/src/main/res/drawable-hdpi/tab_recommend_checked.png
new file mode 100644
index 0000000..5ba1ea4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_recommend_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_recommend_normal.png b/app/src/main/res/drawable-hdpi/tab_recommend_normal.png
new file mode 100644
index 0000000..1635925
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_recommend_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_wode_checked.png b/app/src/main/res/drawable-hdpi/tab_wode_checked.png
new file mode 100644
index 0000000..c853540
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_wode_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/tab_wode_normal.png b/app/src/main/res/drawable-hdpi/tab_wode_normal.png
new file mode 100644
index 0000000..88643c8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/tab_wode_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/taste.png b/app/src/main/res/drawable-hdpi/taste.png
new file mode 100644
index 0000000..4c39a65
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/taste.png differ
diff --git a/app/src/main/res/drawable-hdpi/taste_nobg.png b/app/src/main/res/drawable-hdpi/taste_nobg.png
new file mode 100644
index 0000000..ea2d1fd
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/taste_nobg.png differ
diff --git a/app/src/main/res/drawable-hdpi/time.png b/app/src/main/res/drawable-hdpi/time.png
new file mode 100644
index 0000000..594df76
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/time.png differ
diff --git a/app/src/main/res/drawable-hdpi/time_nobg.png b/app/src/main/res/drawable-hdpi/time_nobg.png
new file mode 100644
index 0000000..cb6c7f7
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/time_nobg.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_add_checked.png b/app/src/main/res/drawable-hdpi/title_add_checked.png
new file mode 100644
index 0000000..86f445e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_add_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_add_normal.png b/app/src/main/res/drawable-hdpi/title_add_normal.png
new file mode 100644
index 0000000..239551d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_add_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_back_checked.png b/app/src/main/res/drawable-hdpi/title_back_checked.png
new file mode 100644
index 0000000..5cfb760
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_back_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_back_normal.png b/app/src/main/res/drawable-hdpi/title_back_normal.png
new file mode 100644
index 0000000..fb3dde4
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_back_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_cancel_checked.png b/app/src/main/res/drawable-hdpi/title_cancel_checked.png
new file mode 100644
index 0000000..71e0e16
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_cancel_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_cancel_normal.png b/app/src/main/res/drawable-hdpi/title_cancel_normal.png
new file mode 100644
index 0000000..5eb6669
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_cancel_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_confirm_checked.png b/app/src/main/res/drawable-hdpi/title_confirm_checked.png
new file mode 100644
index 0000000..8bbe4dd
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_confirm_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_confirm_normal.png b/app/src/main/res/drawable-hdpi/title_confirm_normal.png
new file mode 100644
index 0000000..d83ab3b
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_confirm_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_search_checked.png b/app/src/main/res/drawable-hdpi/title_search_checked.png
new file mode 100644
index 0000000..8ccc4ce
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_search_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_search_normal.png b/app/src/main/res/drawable-hdpi/title_search_normal.png
new file mode 100644
index 0000000..d94359a
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_search_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_setting_checked.png b/app/src/main/res/drawable-hdpi/title_setting_checked.png
new file mode 100644
index 0000000..c37579e
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_setting_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/title_setting_normal.png b/app/src/main/res/drawable-hdpi/title_setting_normal.png
new file mode 100644
index 0000000..2c84066
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/title_setting_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/titlebar_add.png b/app/src/main/res/drawable-hdpi/titlebar_add.png
new file mode 100644
index 0000000..ef6734c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/titlebar_add.png differ
diff --git a/app/src/main/res/drawable-hdpi/titlebar_back.png b/app/src/main/res/drawable-hdpi/titlebar_back.png
new file mode 100644
index 0000000..2ae17d8
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/titlebar_back.png differ
diff --git a/app/src/main/res/drawable-hdpi/welcome1.png b/app/src/main/res/drawable-hdpi/welcome1.png
new file mode 100644
index 0000000..f97824d
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/welcome1.png differ
diff --git a/app/src/main/res/drawable-hdpi/welcome2.jpg b/app/src/main/res/drawable-hdpi/welcome2.jpg
new file mode 100644
index 0000000..f9ab949
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/welcome2.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/welcome3.jpg b/app/src/main/res/drawable-hdpi/welcome3.jpg
new file mode 100644
index 0000000..5917ef7
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/welcome3.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/welcome4.png b/app/src/main/res/drawable-hdpi/welcome4.png
new file mode 100644
index 0000000..34d01ef
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/welcome4.png differ
diff --git a/app/src/main/res/drawable-hdpi/welcome5.png b/app/src/main/res/drawable-hdpi/welcome5.png
new file mode 100644
index 0000000..ecf520f
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/welcome5.png differ
diff --git a/app/src/main/res/drawable-hdpi/welcome_goto_checked.png b/app/src/main/res/drawable-hdpi/welcome_goto_checked.png
new file mode 100644
index 0000000..5111542
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/welcome_goto_checked.png differ
diff --git a/app/src/main/res/drawable-hdpi/welcome_goto_normal.png b/app/src/main/res/drawable-hdpi/welcome_goto_normal.png
new file mode 100644
index 0000000..f4a5d65
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/welcome_goto_normal.png differ
diff --git a/app/src/main/res/drawable-hdpi/wode_collect.png b/app/src/main/res/drawable-hdpi/wode_collect.png
new file mode 100644
index 0000000..97920b1
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/wode_collect.png differ
diff --git a/app/src/main/res/drawable-hdpi/wode_cookbook.png b/app/src/main/res/drawable-hdpi/wode_cookbook.png
new file mode 100644
index 0000000..191ec75
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/wode_cookbook.png differ
diff --git a/app/src/main/res/drawable-hdpi/wode_img_bg.png b/app/src/main/res/drawable-hdpi/wode_img_bg.png
new file mode 100644
index 0000000..fddfd56
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/wode_img_bg.png differ
diff --git a/app/src/main/res/drawable-hdpi/wode_img_point.png b/app/src/main/res/drawable-hdpi/wode_img_point.png
new file mode 100644
index 0000000..6dc8912
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/wode_img_point.png differ
diff --git a/app/src/main/res/drawable-hdpi/wode_massage.png b/app/src/main/res/drawable-hdpi/wode_massage.png
new file mode 100644
index 0000000..0364eea
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/wode_massage.png differ
diff --git a/app/src/main/res/drawable-hdpi/zone.jpg b/app/src/main/res/drawable-hdpi/zone.jpg
new file mode 100644
index 0000000..e647e85
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/zone.jpg differ
diff --git a/app/src/main/res/drawable-hdpi/zone_bg.jpg b/app/src/main/res/drawable-hdpi/zone_bg.jpg
new file mode 100644
index 0000000..65fc76c
Binary files /dev/null and b/app/src/main/res/drawable-hdpi/zone_bg.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/apple.jpg b/app/src/main/res/drawable-xxhdpi/apple.jpg
new file mode 100644
index 0000000..b99bfa4
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/apple.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/banana.jpg b/app/src/main/res/drawable-xxhdpi/banana.jpg
new file mode 100644
index 0000000..e838d68
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/banana.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/cherry.jpg b/app/src/main/res/drawable-xxhdpi/cherry.jpg
new file mode 100644
index 0000000..b31be9f
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/cherry.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/grape.jpg b/app/src/main/res/drawable-xxhdpi/grape.jpg
new file mode 100644
index 0000000..f06b548
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/grape.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/indicator_red_point.png b/app/src/main/res/drawable-xxhdpi/indicator_red_point.png
new file mode 100644
index 0000000..36d81fb
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/indicator_red_point.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/indicator_white_point.png b/app/src/main/res/drawable-xxhdpi/indicator_white_point.png
new file mode 100644
index 0000000..fa3587e
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/indicator_white_point.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/mango.jpg b/app/src/main/res/drawable-xxhdpi/mango.jpg
new file mode 100644
index 0000000..96b7ab7
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/mango.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/nav_call.png b/app/src/main/res/drawable-xxhdpi/nav_call.png
new file mode 100644
index 0000000..90ead2e
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/nav_call.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/orange.jpg b/app/src/main/res/drawable-xxhdpi/orange.jpg
new file mode 100644
index 0000000..25f27bb
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/orange.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/osl_logo.png b/app/src/main/res/drawable-xxhdpi/osl_logo.png
new file mode 100644
index 0000000..4683db5
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/osl_logo.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/pear.png b/app/src/main/res/drawable-xxhdpi/pear.png
new file mode 100644
index 0000000..ed541ba
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/pear.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/pig.png b/app/src/main/res/drawable-xxhdpi/pig.png
new file mode 100644
index 0000000..d400c13
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/pig.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/pineapple.jpg b/app/src/main/res/drawable-xxhdpi/pineapple.jpg
new file mode 100644
index 0000000..81814af
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/pineapple.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/strawberry.jpg b/app/src/main/res/drawable-xxhdpi/strawberry.jpg
new file mode 100644
index 0000000..2f8193e
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/strawberry.jpg differ
diff --git a/app/src/main/res/drawable-xxhdpi/tab_text_xiaoxi.png b/app/src/main/res/drawable-xxhdpi/tab_text_xiaoxi.png
new file mode 100644
index 0000000..5e6ea30
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/tab_text_xiaoxi.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/tab_text_xiaoxi_bg.png b/app/src/main/res/drawable-xxhdpi/tab_text_xiaoxi_bg.png
new file mode 100644
index 0000000..72bad45
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/tab_text_xiaoxi_bg.png differ
diff --git a/app/src/main/res/drawable-xxhdpi/watermelon.jpg b/app/src/main/res/drawable-xxhdpi/watermelon.jpg
new file mode 100644
index 0000000..f8e0e9a
Binary files /dev/null and b/app/src/main/res/drawable-xxhdpi/watermelon.jpg differ
diff --git a/app/src/main/res/drawable/anim_load.xml b/app/src/main/res/drawable/anim_load.xml
new file mode 100644
index 0000000..ecd79ac
--- /dev/null
+++ b/app/src/main/res/drawable/anim_load.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/btn_search_bg.xml b/app/src/main/res/drawable/btn_search_bg.xml
new file mode 100644
index 0000000..06e2e3a
--- /dev/null
+++ b/app/src/main/res/drawable/btn_search_bg.xml
@@ -0,0 +1,15 @@
+
+
+-
+
+
+
+
+
+-
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/iv_delete_bg.xml b/app/src/main/res/drawable/iv_delete_bg.xml
new file mode 100644
index 0000000..3f6e1d9
--- /dev/null
+++ b/app/src/main/res/drawable/iv_delete_bg.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/lv_search_tips_bg.xml b/app/src/main/res/drawable/lv_search_tips_bg.xml
new file mode 100644
index 0000000..7073928
--- /dev/null
+++ b/app/src/main/res/drawable/lv_search_tips_bg.xml
@@ -0,0 +1,18 @@
+
+
+
+-
+
+
+
+
+
+-
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/search_edittext_shape.xml b/app/src/main/res/drawable/search_edittext_shape.xml
new file mode 100644
index 0000000..7c265cb
--- /dev/null
+++ b/app/src/main/res/drawable/search_edittext_shape.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
diff --git a/app/src/main/res/drawable/selector_button.xml b/app/src/main/res/drawable/selector_button.xml
new file mode 100644
index 0000000..44a4bed
--- /dev/null
+++ b/app/src/main/res/drawable/selector_button.xml
@@ -0,0 +1,29 @@
+
+
+
+ -
+
+
+
+
+
+
+
+
+
+ -
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_chide_collect.xml b/app/src/main/res/drawable/selector_chide_collect.xml
new file mode 100644
index 0000000..d3a026b
--- /dev/null
+++ b/app/src/main/res/drawable/selector_chide_collect.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_chide_like.xml b/app/src/main/res/drawable/selector_chide_like.xml
new file mode 100644
index 0000000..c083f31
--- /dev/null
+++ b/app/src/main/res/drawable/selector_chide_like.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_comment.xml b/app/src/main/res/drawable/selector_comment.xml
new file mode 100644
index 0000000..f0a40f0
--- /dev/null
+++ b/app/src/main/res/drawable/selector_comment.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_common_back.xml b/app/src/main/res/drawable/selector_common_back.xml
new file mode 100644
index 0000000..10d7dc8
--- /dev/null
+++ b/app/src/main/res/drawable/selector_common_back.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_common_collect.xml b/app/src/main/res/drawable/selector_common_collect.xml
new file mode 100644
index 0000000..6026a01
--- /dev/null
+++ b/app/src/main/res/drawable/selector_common_collect.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_common_like.xml b/app/src/main/res/drawable/selector_common_like.xml
new file mode 100644
index 0000000..ecd751f
--- /dev/null
+++ b/app/src/main/res/drawable/selector_common_like.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_common_reply.xml b/app/src/main/res/drawable/selector_common_reply.xml
new file mode 100644
index 0000000..5262f26
--- /dev/null
+++ b/app/src/main/res/drawable/selector_common_reply.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_difficult_text_bg.xml b/app/src/main/res/drawable/selector_difficult_text_bg.xml
new file mode 100644
index 0000000..7acdb58
--- /dev/null
+++ b/app/src/main/res/drawable/selector_difficult_text_bg.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_feedback_send.xml b/app/src/main/res/drawable/selector_feedback_send.xml
new file mode 100644
index 0000000..9d4c7d0
--- /dev/null
+++ b/app/src/main/res/drawable/selector_feedback_send.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_guide_into.xml b/app/src/main/res/drawable/selector_guide_into.xml
new file mode 100644
index 0000000..598ea40
--- /dev/null
+++ b/app/src/main/res/drawable/selector_guide_into.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_indicator_appstart.xml b/app/src/main/res/drawable/selector_indicator_appstart.xml
new file mode 100644
index 0000000..a32cb70
--- /dev/null
+++ b/app/src/main/res/drawable/selector_indicator_appstart.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_indicator_color.xml b/app/src/main/res/drawable/selector_indicator_color.xml
new file mode 100644
index 0000000..a32cb70
--- /dev/null
+++ b/app/src/main/res/drawable/selector_indicator_color.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_login_in.xml b/app/src/main/res/drawable/selector_login_in.xml
new file mode 100644
index 0000000..04eeff8
--- /dev/null
+++ b/app/src/main/res/drawable/selector_login_in.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_login_sign.xml b/app/src/main/res/drawable/selector_login_sign.xml
new file mode 100644
index 0000000..c5f8239
--- /dev/null
+++ b/app/src/main/res/drawable/selector_login_sign.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_modify_confirm.xml b/app/src/main/res/drawable/selector_modify_confirm.xml
new file mode 100644
index 0000000..346a5d5
--- /dev/null
+++ b/app/src/main/res/drawable/selector_modify_confirm.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_nav_text_color.xml b/app/src/main/res/drawable/selector_nav_text_color.xml
new file mode 100644
index 0000000..7c6327d
--- /dev/null
+++ b/app/src/main/res/drawable/selector_nav_text_color.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_object_text_bg.xml b/app/src/main/res/drawable/selector_object_text_bg.xml
new file mode 100644
index 0000000..16e634f
--- /dev/null
+++ b/app/src/main/res/drawable/selector_object_text_bg.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_proce_lable1.xml b/app/src/main/res/drawable/selector_proce_lable1.xml
new file mode 100644
index 0000000..c308b21
--- /dev/null
+++ b/app/src/main/res/drawable/selector_proce_lable1.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_proce_lable2.xml b/app/src/main/res/drawable/selector_proce_lable2.xml
new file mode 100644
index 0000000..02fbda3
--- /dev/null
+++ b/app/src/main/res/drawable/selector_proce_lable2.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_proce_lable3.xml b/app/src/main/res/drawable/selector_proce_lable3.xml
new file mode 100644
index 0000000..02c2661
--- /dev/null
+++ b/app/src/main/res/drawable/selector_proce_lable3.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_proce_lable4.xml b/app/src/main/res/drawable/selector_proce_lable4.xml
new file mode 100644
index 0000000..8e81bcd
--- /dev/null
+++ b/app/src/main/res/drawable/selector_proce_lable4.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_1_2.xml b/app/src/main/res/drawable/selector_publish_1_2.xml
new file mode 100644
index 0000000..d64c869
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_1_2.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_3_4.xml b/app/src/main/res/drawable/selector_publish_3_4.xml
new file mode 100644
index 0000000..9c132c5
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_3_4.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_4_6.xml b/app/src/main/res/drawable/selector_publish_4_6.xml
new file mode 100644
index 0000000..b38656b
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_4_6.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_7_8.xml b/app/src/main/res/drawable/selector_publish_7_8.xml
new file mode 100644
index 0000000..55ae78b
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_7_8.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_9_12.xml b/app/src/main/res/drawable/selector_publish_9_12.xml
new file mode 100644
index 0000000..3377bda
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_9_12.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_addimg.xml b/app/src/main/res/drawable/selector_publish_addimg.xml
new file mode 100644
index 0000000..4a61f82
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_addimg.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_beiyun.xml b/app/src/main/res/drawable/selector_publish_beiyun.xml
new file mode 100644
index 0000000..c18bdad
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_beiyun.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_child.xml b/app/src/main/res/drawable/selector_publish_child.xml
new file mode 100644
index 0000000..79d7703
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_child.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_confirm.xml b/app/src/main/res/drawable/selector_publish_confirm.xml
new file mode 100644
index 0000000..da21bfe
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_confirm.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_delete.xml b/app/src/main/res/drawable/selector_publish_delete.xml
new file mode 100644
index 0000000..b9854c9
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_delete.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_issue.xml b/app/src/main/res/drawable/selector_publish_issue.xml
new file mode 100644
index 0000000..bca6725
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_issue.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_more_step.xml b/app/src/main/res/drawable/selector_publish_more_step.xml
new file mode 100644
index 0000000..63a80b4
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_more_step.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_parent.xml b/app/src/main/res/drawable/selector_publish_parent.xml
new file mode 100644
index 0000000..6ba69dc
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_parent.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_yuezi.xml b/app/src/main/res/drawable/selector_publish_yuezi.xml
new file mode 100644
index 0000000..c528813
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_yuezi.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_yunchu.xml b/app/src/main/res/drawable/selector_publish_yunchu.xml
new file mode 100644
index 0000000..2a5abaf
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_yunchu.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_yunwan.xml b/app/src/main/res/drawable/selector_publish_yunwan.xml
new file mode 100644
index 0000000..ac2c1fb
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_yunwan.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_publish_yunzhong.xml b/app/src/main/res/drawable/selector_publish_yunzhong.xml
new file mode 100644
index 0000000..4367822
--- /dev/null
+++ b/app/src/main/res/drawable/selector_publish_yunzhong.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_recommend_chide.xml b/app/src/main/res/drawable/selector_recommend_chide.xml
new file mode 100644
index 0000000..5dd9e2a
--- /dev/null
+++ b/app/src/main/res/drawable/selector_recommend_chide.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_recommend_liaode.xml b/app/src/main/res/drawable/selector_recommend_liaode.xml
new file mode 100644
index 0000000..27b4ac7
--- /dev/null
+++ b/app/src/main/res/drawable/selector_recommend_liaode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_reply.xml b/app/src/main/res/drawable/selector_reply.xml
new file mode 100644
index 0000000..22b4193
--- /dev/null
+++ b/app/src/main/res/drawable/selector_reply.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_setting_exit.xml b/app/src/main/res/drawable/selector_setting_exit.xml
new file mode 100644
index 0000000..9ab03a1
--- /dev/null
+++ b/app/src/main/res/drawable/selector_setting_exit.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_share.xml b/app/src/main/res/drawable/selector_share.xml
new file mode 100644
index 0000000..858c531
--- /dev/null
+++ b/app/src/main/res/drawable/selector_share.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_sign_up.xml b/app/src/main/res/drawable/selector_sign_up.xml
new file mode 100644
index 0000000..6be5823
--- /dev/null
+++ b/app/src/main/res/drawable/selector_sign_up.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_sign_verify.xml b/app/src/main/res/drawable/selector_sign_verify.xml
new file mode 100644
index 0000000..fb24bc7
--- /dev/null
+++ b/app/src/main/res/drawable/selector_sign_verify.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_tab_chide.xml b/app/src/main/res/drawable/selector_tab_chide.xml
new file mode 100644
index 0000000..da5ff5b
--- /dev/null
+++ b/app/src/main/res/drawable/selector_tab_chide.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_tab_guangde.xml b/app/src/main/res/drawable/selector_tab_guangde.xml
new file mode 100644
index 0000000..4f0d186
--- /dev/null
+++ b/app/src/main/res/drawable/selector_tab_guangde.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_tab_liaode.xml b/app/src/main/res/drawable/selector_tab_liaode.xml
new file mode 100644
index 0000000..cc4d207
--- /dev/null
+++ b/app/src/main/res/drawable/selector_tab_liaode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_tab_recommend.xml b/app/src/main/res/drawable/selector_tab_recommend.xml
new file mode 100644
index 0000000..11502bd
--- /dev/null
+++ b/app/src/main/res/drawable/selector_tab_recommend.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_tab_text.xml b/app/src/main/res/drawable/selector_tab_text.xml
new file mode 100644
index 0000000..a94edde
--- /dev/null
+++ b/app/src/main/res/drawable/selector_tab_text.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_tab_wode.xml b/app/src/main/res/drawable/selector_tab_wode.xml
new file mode 100644
index 0000000..d103dab
--- /dev/null
+++ b/app/src/main/res/drawable/selector_tab_wode.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_title_back.xml b/app/src/main/res/drawable/selector_title_back.xml
new file mode 100644
index 0000000..14fdab3
--- /dev/null
+++ b/app/src/main/res/drawable/selector_title_back.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_title_cancel.xml b/app/src/main/res/drawable/selector_title_cancel.xml
new file mode 100644
index 0000000..6976c31
--- /dev/null
+++ b/app/src/main/res/drawable/selector_title_cancel.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_title_confirm.xml b/app/src/main/res/drawable/selector_title_confirm.xml
new file mode 100644
index 0000000..d44f69c
--- /dev/null
+++ b/app/src/main/res/drawable/selector_title_confirm.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_title_setting.xml b/app/src/main/res/drawable/selector_title_setting.xml
new file mode 100644
index 0000000..a23eac6
--- /dev/null
+++ b/app/src/main/res/drawable/selector_title_setting.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_titlebar_add.xml b/app/src/main/res/drawable/selector_titlebar_add.xml
new file mode 100644
index 0000000..4c212a8
--- /dev/null
+++ b/app/src/main/res/drawable/selector_titlebar_add.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_titlebar_search.xml b/app/src/main/res/drawable/selector_titlebar_search.xml
new file mode 100644
index 0000000..52811b9
--- /dev/null
+++ b/app/src/main/res/drawable/selector_titlebar_search.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/selector_titlebar_setting.xml b/app/src/main/res/drawable/selector_titlebar_setting.xml
new file mode 100644
index 0000000..4c212a8
--- /dev/null
+++ b/app/src/main/res/drawable/selector_titlebar_setting.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_bk.xml b/app/src/main/res/drawable/shape_bk.xml
new file mode 100644
index 0000000..13b2157
--- /dev/null
+++ b/app/src/main/res/drawable/shape_bk.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_difficult_checked.xml b/app/src/main/res/drawable/shape_difficult_checked.xml
new file mode 100644
index 0000000..ecade62
--- /dev/null
+++ b/app/src/main/res/drawable/shape_difficult_checked.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_difficult_normal.xml b/app/src/main/res/drawable/shape_difficult_normal.xml
new file mode 100644
index 0000000..95c56a7
--- /dev/null
+++ b/app/src/main/res/drawable/shape_difficult_normal.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_feedback.xml b/app/src/main/res/drawable/shape_feedback.xml
new file mode 100644
index 0000000..03a3b0c
--- /dev/null
+++ b/app/src/main/res/drawable/shape_feedback.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_img.xml b/app/src/main/res/drawable/shape_img.xml
new file mode 100644
index 0000000..956a12f
--- /dev/null
+++ b/app/src/main/res/drawable/shape_img.xml
@@ -0,0 +1,7 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_item_mycollect.xml b/app/src/main/res/drawable/shape_item_mycollect.xml
new file mode 100644
index 0000000..4df8553
--- /dev/null
+++ b/app/src/main/res/drawable/shape_item_mycollect.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_object_checked.xml b/app/src/main/res/drawable/shape_object_checked.xml
new file mode 100644
index 0000000..322e919
--- /dev/null
+++ b/app/src/main/res/drawable/shape_object_checked.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_object_normal.xml b/app/src/main/res/drawable/shape_object_normal.xml
new file mode 100644
index 0000000..415be2c
--- /dev/null
+++ b/app/src/main/res/drawable/shape_object_normal.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_pick_lable.xml b/app/src/main/res/drawable/shape_pick_lable.xml
new file mode 100644
index 0000000..10b5c56
--- /dev/null
+++ b/app/src/main/res/drawable/shape_pick_lable.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce1.xml b/app/src/main/res/drawable/shape_proce1.xml
new file mode 100644
index 0000000..a02a254
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce1.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce11.xml b/app/src/main/res/drawable/shape_proce11.xml
new file mode 100644
index 0000000..a9c6f99
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce11.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce2.xml b/app/src/main/res/drawable/shape_proce2.xml
new file mode 100644
index 0000000..365eedf
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce2.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce22.xml b/app/src/main/res/drawable/shape_proce22.xml
new file mode 100644
index 0000000..5bdabfd
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce22.xml
@@ -0,0 +1,8 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce3.xml b/app/src/main/res/drawable/shape_proce3.xml
new file mode 100644
index 0000000..ee40012
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce3.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce33.xml b/app/src/main/res/drawable/shape_proce33.xml
new file mode 100644
index 0000000..877d898
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce33.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce4.xml b/app/src/main/res/drawable/shape_proce4.xml
new file mode 100644
index 0000000..390ffaa
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce4.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_proce44.xml b/app/src/main/res/drawable/shape_proce44.xml
new file mode 100644
index 0000000..a656c58
--- /dev/null
+++ b/app/src/main/res/drawable/shape_proce44.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_publish_bg.xml b/app/src/main/res/drawable/shape_publish_bg.xml
new file mode 100644
index 0000000..770192f
--- /dev/null
+++ b/app/src/main/res/drawable/shape_publish_bg.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_publish_bg2.xml b/app/src/main/res/drawable/shape_publish_bg2.xml
new file mode 100644
index 0000000..d1b9c19
--- /dev/null
+++ b/app/src/main/res/drawable/shape_publish_bg2.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_publish_step4_leftcorner.xml b/app/src/main/res/drawable/shape_publish_step4_leftcorner.xml
new file mode 100644
index 0000000..2fa10da
--- /dev/null
+++ b/app/src/main/res/drawable/shape_publish_step4_leftcorner.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_publish_step4_rightcorner.xml b/app/src/main/res/drawable/shape_publish_step4_rightcorner.xml
new file mode 100644
index 0000000..2cbbce3
--- /dev/null
+++ b/app/src/main/res/drawable/shape_publish_step4_rightcorner.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_recommend_topic.xml b/app/src/main/res/drawable/shape_recommend_topic.xml
new file mode 100644
index 0000000..96dde83
--- /dev/null
+++ b/app/src/main/res/drawable/shape_recommend_topic.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_step4.xml b/app/src/main/res/drawable/shape_step4.xml
new file mode 100644
index 0000000..235e97c
--- /dev/null
+++ b/app/src/main/res/drawable/shape_step4.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_tab.xml b/app/src/main/res/drawable/shape_tab.xml
new file mode 100644
index 0000000..48ec3aa
--- /dev/null
+++ b/app/src/main/res/drawable/shape_tab.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/drawable/shape_title.xml b/app/src/main/res/drawable/shape_title.xml
new file mode 100644
index 0000000..48ec3aa
--- /dev/null
+++ b/app/src/main/res/drawable/shape_title.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_collection.xml b/app/src/main/res/layout/activity_collection.xml
new file mode 100644
index 0000000..7fa0336
--- /dev/null
+++ b/app/src/main/res/layout/activity_collection.xml
@@ -0,0 +1,195 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_fruit_detail.xml b/app/src/main/res/layout/activity_fruit_detail.xml
new file mode 100644
index 0000000..bda2445
--- /dev/null
+++ b/app/src/main/res/layout/activity_fruit_detail.xml
@@ -0,0 +1,224 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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..bae884d
--- /dev/null
+++ b/app/src/main/res/layout/activity_login.xml
@@ -0,0 +1,122 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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..4418d6d
--- /dev/null
+++ b/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,27 @@
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/activity_modify_password.xml b/app/src/main/res/layout/activity_modify_password.xml
new file mode 100644
index 0000000..e84508b
--- /dev/null
+++ b/app/src/main/res/layout/activity_modify_password.xml
@@ -0,0 +1,144 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_modify_personal_info.xml b/app/src/main/res/layout/activity_modify_personal_info.xml
new file mode 100644
index 0000000..11d0048
--- /dev/null
+++ b/app/src/main/res/layout/activity_modify_personal_info.xml
@@ -0,0 +1,69 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_person_info.xml b/app/src/main/res/layout/activity_person_info.xml
new file mode 100644
index 0000000..ad8bace
--- /dev/null
+++ b/app/src/main/res/layout/activity_person_info.xml
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_publish_moment.xml b/app/src/main/res/layout/activity_publish_moment.xml
new file mode 100644
index 0000000..a683069
--- /dev/null
+++ b/app/src/main/res/layout/activity_publish_moment.xml
@@ -0,0 +1,90 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ 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..fcfbe25
--- /dev/null
+++ b/app/src/main/res/layout/activity_register.xml
@@ -0,0 +1,128 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/activity_search.xml b/app/src/main/res/layout/activity_search.xml
new file mode 100644
index 0000000..13c3755
--- /dev/null
+++ b/app/src/main/res/layout/activity_search.xml
@@ -0,0 +1,70 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/activity_setting.xml b/app/src/main/res/layout/activity_setting.xml
new file mode 100644
index 0000000..4e7bd2a
--- /dev/null
+++ b/app/src/main/res/layout/activity_setting.xml
@@ -0,0 +1,158 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/activity_start.xml b/app/src/main/res/layout/activity_start.xml
new file mode 100644
index 0000000..669984a
--- /dev/null
+++ b/app/src/main/res/layout/activity_start.xml
@@ -0,0 +1,10 @@
+
+
+
+
diff --git a/app/src/main/res/layout/dialog_photo.xml b/app/src/main/res/layout/dialog_photo.xml
new file mode 100644
index 0000000..61748c0
--- /dev/null
+++ b/app/src/main/res/layout/dialog_photo.xml
@@ -0,0 +1,52 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/frag_faxian.xml b/app/src/main/res/layout/frag_faxian.xml
new file mode 100644
index 0000000..2fac321
--- /dev/null
+++ b/app/src/main/res/layout/frag_faxian.xml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/frag_leyuan.xml b/app/src/main/res/layout/frag_leyuan.xml
new file mode 100644
index 0000000..0289946
--- /dev/null
+++ b/app/src/main/res/layout/frag_leyuan.xml
@@ -0,0 +1,55 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/frag_wode.xml b/app/src/main/res/layout/frag_wode.xml
new file mode 100644
index 0000000..6768f2f
--- /dev/null
+++ b/app/src/main/res/layout/frag_wode.xml
@@ -0,0 +1,140 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/fruit_item.xml b/app/src/main/res/layout/fruit_item.xml
new file mode 100644
index 0000000..228a84d
--- /dev/null
+++ b/app/src/main/res/layout/fruit_item.xml
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_bean_list.xml b/app/src/main/res/layout/item_bean_list.xml
new file mode 100644
index 0000000..ad758a3
--- /dev/null
+++ b/app/src/main/res/layout/item_bean_list.xml
@@ -0,0 +1,26 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/item_footer.xml b/app/src/main/res/layout/item_footer.xml
new file mode 100644
index 0000000..ec5bee6
--- /dev/null
+++ b/app/src/main/res/layout/item_footer.xml
@@ -0,0 +1,21 @@
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/layout_pic.xml b/app/src/main/res/layout/layout_pic.xml
new file mode 100644
index 0000000..11c5825
--- /dev/null
+++ b/app/src/main/res/layout/layout_pic.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/moments_item.xml b/app/src/main/res/layout/moments_item.xml
new file mode 100644
index 0000000..df84e58
--- /dev/null
+++ b/app/src/main/res/layout/moments_item.xml
@@ -0,0 +1,105 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/search_layout.xml b/app/src/main/res/layout/search_layout.xml
new file mode 100644
index 0000000..8c33735
--- /dev/null
+++ b/app/src/main/res/layout/search_layout.xml
@@ -0,0 +1,67 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/main/res/layout/tab_main.xml b/app/src/main/res/layout/tab_main.xml
new file mode 100644
index 0000000..68f2dbb
--- /dev/null
+++ b/app/src/main/res/layout/tab_main.xml
@@ -0,0 +1,77 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/tab_title.xml b/app/src/main/res/layout/tab_title.xml
new file mode 100644
index 0000000..4a7ea38
--- /dev/null
+++ b/app/src/main/res/layout/tab_title.xml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/tab_title_search.xml b/app/src/main/res/layout/tab_title_search.xml
new file mode 100644
index 0000000..393a47d
--- /dev/null
+++ b/app/src/main/res/layout/tab_title_search.xml
@@ -0,0 +1,28 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/layout/view_null.xml b/app/src/main/res/layout/view_null.xml
new file mode 100644
index 0000000..3509b84
--- /dev/null
+++ b/app/src/main/res/layout/view_null.xml
@@ -0,0 +1,6 @@
+
+
+
+
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher.png b/app/src/main/res/mipmap-hdpi/ic_launcher.png
new file mode 100644
index 0000000..161decf
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
new file mode 100644
index 0000000..9a078e3
Binary files /dev/null and b/app/src/main/res/mipmap-hdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
new file mode 100644
index 0000000..1c49710
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
new file mode 100644
index 0000000..efc028a
Binary files /dev/null and b/app/src/main/res/mipmap-mdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
new file mode 100644
index 0000000..5fa2d66
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..3af2608
Binary files /dev/null and b/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
new file mode 100644
index 0000000..ee5edfe
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..9bec2e6
Binary files /dev/null and b/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
new file mode 100644
index 0000000..463cb2d
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
new file mode 100644
index 0000000..34947cd
Binary files /dev/null and b/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png differ
diff --git a/app/src/main/res/raw/tag_inventoried.mp3 b/app/src/main/res/raw/tag_inventoried.mp3
new file mode 100644
index 0000000..d2e1a77
Binary files /dev/null and b/app/src/main/res/raw/tag_inventoried.mp3 differ
diff --git a/app/src/main/res/values-v21/styles.xml b/app/src/main/res/values-v21/styles.xml
new file mode 100644
index 0000000..e0dd1e4
--- /dev/null
+++ b/app/src/main/res/values-v21/styles.xml
@@ -0,0 +1,8 @@
+
+
+
+
\ 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..7d3b6ac
--- /dev/null
+++ b/app/src/main/res/values/colors.xml
@@ -0,0 +1,83 @@
+
+
+
+
+ #ff6666
+ #ff6666
+ #2AA9FE
+
+
+
+ #2AA9FE
+ #666666
+ #333333
+ #ff6666
+ #ffffff
+ #000000
+ #87333333
+
+
+ #ffffff
+ #3b3b3b
+ #ff6666
+
+
+ #111111
+
+
+ #3a3a3a
+
+ #ff6666
+ #ff6666
+ #333333
+
+ #703a3a3a
+
+
+ #E8E8E8
+
+ #703a3a3a
+ #3a3a3a
+
+
+
+
+ #f0d356
+ #c8c8c8
+ #f88585
+ #d66e93
+
+
+
+ #f5f5f5
+
+ #333333
+ #666666
+
+ #EBEBEB
+ #EBEBEB
+ #4c4d51
+ #58585c
+
+
+ #3E4757
+ #FF4081
+
+
+ #393A3F
+ #ffffff
+ #000000
+
+
+ #00000000
+ #66666666
+
+ #000000
+ #b4af96
+ #80808069
+
+ #eb4f38
+ #cccc
+ #5677fc
+ #3ca0ec
+
\ 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..2d5fc34
--- /dev/null
+++ b/app/src/main/res/values/dimens.xml
@@ -0,0 +1,20 @@
+
+
+ 16dp
+ 16dp
+ 40dp
+ 50dp
+
+
+
+ 48dp
+
+
+ 50dp
+
+
+ 14sp
+ 10sp
+
+ 100dp
+
diff --git a/app/src/main/res/values/pull_refresh_strings.xml b/app/src/main/res/values/pull_refresh_strings.xml
new file mode 100644
index 0000000..ee594fd
--- /dev/null
+++ b/app/src/main/res/values/pull_refresh_strings.xml
@@ -0,0 +1,34 @@
+
+
+
+ 已经到底啦
+ 松开加载更多
+ 下拉可以刷新
+ 松开获取更多
+ 最后更新时间 :
+ 正在加载中
+ 正在加载中…
+
+
+ 点击屏幕,重新加载
+
+ 正在加载…
+
+
+ @string/pushmsg_center_pull_down_text
+ 上拉可以刷新
+ 松开后刷新
+ @string/pushmsg_center_load_more_ongoing_text
+ @string/pushmsg_center_pull_down_update_time
+ 松开载入更多
+ @string/pull_to_refresh_header_hint_loading
+ @string/pushmsg_center_no_more_msg
+ 网络不给力,请检查网络
+
+
+ 图片已保存到相册
+ 保存图片失败
+ 下一组:
+ 上一组:
+
+
\ 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..2237746
--- /dev/null
+++ b/app/src/main/res/values/strings.xml
@@ -0,0 +1,8 @@
+
+ 水果乐园
+ 乐园
+ 我的
+
+
+ Hello blank fragment
+
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
new file mode 100644
index 0000000..97e56a6
--- /dev/null
+++ b/app/src/main/res/values/styles.xml
@@ -0,0 +1,324 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/app/src/test/java/com/example/myapplication/ExampleUnitTest.java b/app/src/test/java/com/example/myapplication/ExampleUnitTest.java
new file mode 100644
index 0000000..bf43ee5
--- /dev/null
+++ b/app/src/test/java/com/example/myapplication/ExampleUnitTest.java
@@ -0,0 +1,17 @@
+package com.example.myapplication;
+
+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
diff --git a/build.gradle b/build.gradle
new file mode 100644
index 0000000..216d57c
--- /dev/null
+++ b/build.gradle
@@ -0,0 +1,17 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ repositories {
+ google()
+ mavenCentral()
+ }
+ dependencies {
+ classpath "com.android.tools.build:gradle:7.0.0"
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
\ No newline at end of file
diff --git a/gradle.properties b/gradle.properties
new file mode 100644
index 0000000..52f5917
--- /dev/null
+++ b/gradle.properties
@@ -0,0 +1,19 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app"s APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Automatically convert third-party libraries to use AndroidX
+android.enableJetifier=true
\ No newline at end of file
diff --git a/gradle/wrapper/gradle-wrapper.jar b/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000..e708b1c
Binary files /dev/null and b/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000..b43270b
--- /dev/null
+++ b/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Tue Oct 04 13:32:12 CST 2022
+distributionBase=GRADLE_USER_HOME
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
+distributionPath=wrapper/dists
+zipStorePath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
diff --git a/gradlew b/gradlew
new file mode 100644
index 0000000..4f906e0
--- /dev/null
+++ b/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/gradlew.bat b/gradlew.bat
new file mode 100644
index 0000000..107acd3
--- /dev/null
+++ b/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/settings.gradle b/settings.gradle
new file mode 100644
index 0000000..9bd52b2
--- /dev/null
+++ b/settings.gradle
@@ -0,0 +1,10 @@
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ jcenter() // Warning: this repository is going to shut down soon
+ }
+}
+rootProject.name = "My Application"
+include ':app'