diff --git a/FunctionRealize/Record/.idea/codeStyles/Project.xml b/FunctionRealize/Record/.idea/codeStyles/Project.xml
deleted file mode 100644
index 30aa626..0000000
--- a/FunctionRealize/Record/.idea/codeStyles/Project.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/Record/.idea/misc.xml b/FunctionRealize/Record/.idea/misc.xml
deleted file mode 100644
index b0c7b20..0000000
--- a/FunctionRealize/Record/.idea/misc.xml
+++ /dev/null
@@ -1,38 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/Record/app/build.gradle b/FunctionRealize/Record/app/build.gradle
deleted file mode 100644
index f736938..0000000
--- a/FunctionRealize/Record/app/build.gradle
+++ /dev/null
@@ -1,29 +0,0 @@
-apply plugin: 'com.android.application'
-
-android {
- compileSdkVersion 28
- defaultConfig {
- applicationId "com.record"
- minSdkVersion 20
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
-}
-
-dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.android.support:appcompat-v7:28.0.0'
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- implementation 'com.android.support:design:28.0.0'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
-}
diff --git a/FunctionRealize/Record/app/src/androidTest/java/com/record/ExampleInstrumentedTest.java b/FunctionRealize/Record/app/src/androidTest/java/com/record/ExampleInstrumentedTest.java
deleted file mode 100644
index 7f787aa..0000000
--- a/FunctionRealize/Record/app/src/androidTest/java/com/record/ExampleInstrumentedTest.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.record;
-
-import android.content.Context;
-import android.support.test.InstrumentationRegistry;
-import android.support.test.runner.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.getTargetContext();
-
- assertEquals("com.record", appContext.getPackageName());
- }
-}
diff --git a/FunctionRealize/Record/app/src/main/AndroidManifest.xml b/FunctionRealize/Record/app/src/main/AndroidManifest.xml
deleted file mode 100644
index 13f15fe..0000000
--- a/FunctionRealize/Record/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,25 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/Record/app/src/main/java/com/record/MainActivity.java b/FunctionRealize/Record/app/src/main/java/com/record/MainActivity.java
deleted file mode 100644
index 83803d5..0000000
--- a/FunctionRealize/Record/app/src/main/java/com/record/MainActivity.java
+++ /dev/null
@@ -1,27 +0,0 @@
-package com.record;
-
-import android.annotation.TargetApi;
-import android.os.Build;
-import android.os.Bundle;
-import android.os.Handler;
-import android.os.Message;
-import android.support.annotation.RequiresApi;
-import android.support.design.widget.FloatingActionButton;
-import android.support.design.widget.Snackbar;
-import android.support.v7.app.AppCompatActivity;
-import android.support.v7.widget.Toolbar;
-import android.view.View;
-import android.media.MediaPlayer;
-import android.media.MediaRecorder;
-import android.os.Environment;
-import android.util.Log;
-import android.view.MotionEvent;
-import android.view.Window;
-import android.widget.Button;
-import android.widget.Toast;
-import android.widget.ListView;
-import java.io.File;
-import java.util.concurrent.ExecutorService;
-
-public class MainActivity extends AppCompatActivity {
-}
\ No newline at end of file
diff --git a/FunctionRealize/Record/app/src/main/java/com/record/MyButtonListener.java b/FunctionRealize/Record/app/src/main/java/com/record/MyButtonListener.java
deleted file mode 100644
index ee1bc6a..0000000
--- a/FunctionRealize/Record/app/src/main/java/com/record/MyButtonListener.java
+++ /dev/null
@@ -1,16 +0,0 @@
-package com.record;
-
-import android.view.MotionEvent;
-import android.view.View;
- class MyButtonListener implements View.OnLongClickListener,View.OnTouchListener{
- @Override
- public boolean onTouch(View v, MotionEvent event) {
- return false;
- }
-
- @Override
- public boolean onLongClick(View v) {
- return true;
- }
- }
-
diff --git a/FunctionRealize/Record/app/src/main/res/drawable/ic_launcher_background.xml b/FunctionRealize/Record/app/src/main/res/drawable/ic_launcher_background.xml
deleted file mode 100644
index 2408e30..0000000
--- a/FunctionRealize/Record/app/src/main/res/drawable/ic_launcher_background.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/FunctionRealize/Record/app/src/main/res/layout/activity_main.xml b/FunctionRealize/Record/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 12f116e..0000000
--- a/FunctionRealize/Record/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,72 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/Record/app/src/main/res/layout/content_main.xml b/FunctionRealize/Record/app/src/main/res/layout/content_main.xml
deleted file mode 100644
index 2b29f4a..0000000
--- a/FunctionRealize/Record/app/src/main/res/layout/content_main.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/Record/app/src/main/res/menu/menu_main.xml b/FunctionRealize/Record/app/src/main/res/menu/menu_main.xml
deleted file mode 100644
index 3c36f3e..0000000
--- a/FunctionRealize/Record/app/src/main/res/menu/menu_main.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/FunctionRealize/Record/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
deleted file mode 100644
index bbd3e02..0000000
--- a/FunctionRealize/Record/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/FunctionRealize/Record/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
deleted file mode 100644
index bbd3e02..0000000
--- a/FunctionRealize/Record/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-hdpi/ic_launcher.png b/FunctionRealize/Record/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 898f3ed..0000000
Binary files a/FunctionRealize/Record/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/FunctionRealize/Record/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
deleted file mode 100644
index dffca36..0000000
Binary files a/FunctionRealize/Record/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/FunctionRealize/Record/app/src/main/res/values/colors.xml b/FunctionRealize/Record/app/src/main/res/values/colors.xml
deleted file mode 100644
index 69b2233..0000000
--- a/FunctionRealize/Record/app/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #008577
- #00574B
- #D81B60
-
diff --git a/FunctionRealize/Record/app/src/main/res/values/strings.xml b/FunctionRealize/Record/app/src/main/res/values/strings.xml
deleted file mode 100644
index 71e2c0e..0000000
--- a/FunctionRealize/Record/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,4 +0,0 @@
-
- Record
- Settings
-
diff --git a/FunctionRealize/Record/app/src/main/res/values/styles.xml b/FunctionRealize/Record/app/src/main/res/values/styles.xml
deleted file mode 100644
index 44f664f..0000000
--- a/FunctionRealize/Record/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-
-
-
-
-
-
-
diff --git a/FunctionRealize/Record/app/src/test/java/com/record/ExampleUnitTest.java b/FunctionRealize/Record/app/src/test/java/com/record/ExampleUnitTest.java
deleted file mode 100644
index b4577c6..0000000
--- a/FunctionRealize/Record/app/src/test/java/com/record/ExampleUnitTest.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.record;
-
-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/FunctionRealize/Record/build.gradle b/FunctionRealize/Record/build.gradle
deleted file mode 100644
index 8d3ef8e..0000000
--- a/FunctionRealize/Record/build.gradle
+++ /dev/null
@@ -1,27 +0,0 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
-buildscript {
-
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.2.1'
-
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
-}
-
-allprojects {
- repositories {
- google()
- jcenter()
- }
-}
-
-task clean(type: Delete) {
- delete rootProject.buildDir
-}
diff --git a/FunctionRealize/Record/gradle.properties b/FunctionRealize/Record/gradle.properties
deleted file mode 100644
index 1d4b005..0000000
--- a/FunctionRealize/Record/gradle.properties
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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=-Xmx1536m
-
-# 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
-
-
diff --git a/FunctionRealize/XunfeiDemo/.gitignore b/FunctionRealize/XunfeiDemo/.gitignore
deleted file mode 100644
index fd45b12..0000000
--- a/FunctionRealize/XunfeiDemo/.gitignore
+++ /dev/null
@@ -1,11 +0,0 @@
-*.iml
-.gradle
-/local.properties
-/.idea/caches/build_file_checksums.ser
-/.idea/libraries
-/.idea/modules.xml
-/.idea/workspace.xml
-.DS_Store
-/build
-/captures
-.externalNativeBuild
diff --git a/FunctionRealize/XunfeiDemo/.idea/codeStyles/Project.xml b/FunctionRealize/XunfeiDemo/.idea/codeStyles/Project.xml
deleted file mode 100644
index 30aa626..0000000
--- a/FunctionRealize/XunfeiDemo/.idea/codeStyles/Project.xml
+++ /dev/null
@@ -1,29 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/XunfeiDemo/.idea/gradle.xml b/FunctionRealize/XunfeiDemo/.idea/gradle.xml
deleted file mode 100644
index 7ac24c7..0000000
--- a/FunctionRealize/XunfeiDemo/.idea/gradle.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/XunfeiDemo/.idea/runConfigurations.xml b/FunctionRealize/XunfeiDemo/.idea/runConfigurations.xml
deleted file mode 100644
index 7f68460..0000000
--- a/FunctionRealize/XunfeiDemo/.idea/runConfigurations.xml
+++ /dev/null
@@ -1,12 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/XunfeiDemo/app/.gitignore b/FunctionRealize/XunfeiDemo/app/.gitignore
deleted file mode 100644
index 796b96d..0000000
--- a/FunctionRealize/XunfeiDemo/app/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/build
diff --git a/FunctionRealize/XunfeiDemo/app/build.gradle b/FunctionRealize/XunfeiDemo/app/build.gradle
deleted file mode 100644
index 44871fb..0000000
--- a/FunctionRealize/XunfeiDemo/app/build.gradle
+++ /dev/null
@@ -1,33 +0,0 @@
-apply plugin: 'com.android.application'
-
-android {
- compileSdkVersion 28
- defaultConfig {
- applicationId "com.example.administrator.xunfeidemo"
- minSdkVersion 20
- targetSdkVersion 28
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
-}
-
-dependencies {
- implementation fileTree(include: ['*.jar'], dir: 'libs')
- implementation 'com.android.support:appcompat-v7:28.0.0'
- implementation 'com.android.support:design:28.0.0'
- implementation 'com.android.support.constraint:constraint-layout:1.1.3'
- implementation 'com.android.support:support-vector-drawable:28.0.0'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- implementation files('libs/Msc.jar')
- implementation files('libs/Sunflower.jar')
- implementation files('libs/json-lib-2.4-jdk15.jar')
-}
diff --git a/FunctionRealize/XunfeiDemo/app/libs/Msc.jar b/FunctionRealize/XunfeiDemo/app/libs/Msc.jar
deleted file mode 100644
index 2dce377..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/libs/Msc.jar and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/libs/Sunflower.jar b/FunctionRealize/XunfeiDemo/app/libs/Sunflower.jar
deleted file mode 100644
index 435ef8c..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/libs/Sunflower.jar and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/libs/json-lib-2.4-jdk15.jar b/FunctionRealize/XunfeiDemo/app/libs/json-lib-2.4-jdk15.jar
deleted file mode 100644
index 68d4f3b..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/libs/json-lib-2.4-jdk15.jar and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/proguard-rules.pro b/FunctionRealize/XunfeiDemo/app/proguard-rules.pro
deleted file mode 100644
index f1b4245..0000000
--- a/FunctionRealize/XunfeiDemo/app/proguard-rules.pro
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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
diff --git a/FunctionRealize/XunfeiDemo/app/src/androidTest/java/com/example/administrator/xunfeidemo/ExampleInstrumentedTest.java b/FunctionRealize/XunfeiDemo/app/src/androidTest/java/com/example/administrator/xunfeidemo/ExampleInstrumentedTest.java
deleted file mode 100644
index 7fa2a16..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/androidTest/java/com/example/administrator/xunfeidemo/ExampleInstrumentedTest.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.example.administrator.xunfeidemo;
-
-import android.content.Context;
-import android.support.test.InstrumentationRegistry;
-import android.support.test.runner.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.getTargetContext();
-
- assertEquals("com.example.administrator.xunfeidemo", appContext.getPackageName());
- }
-}
diff --git a/FunctionRealize/XunfeiDemo/app/src/androidTest/java/com/example/administrator/xunfeidemo/JsonParser.java b/FunctionRealize/XunfeiDemo/app/src/androidTest/java/com/example/administrator/xunfeidemo/JsonParser.java
deleted file mode 100644
index f65bb6b..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/androidTest/java/com/example/administrator/xunfeidemo/JsonParser.java
+++ /dev/null
@@ -1,119 +0,0 @@
-package com.example.administrator.xunfeidemo;
-
-import org.json.JSONArray;
-import org.json.JSONObject;
-import org.json.JSONTokener;
-
-import android.util.Log;
-
-/**
- * Json结果解析类
- */
-public class JsonParser {
-
- public static String parseIatResult(String json) {
- StringBuffer ret = new StringBuffer();
- try {
- JSONTokener tokener = new JSONTokener(json);
- JSONObject joResult = new JSONObject(tokener);
-
- JSONArray words = joResult.getJSONArray("ws");
- for (int i = 0; i < words.length(); i++) {
- // 转写结果词,默认使用第一个结果
- JSONArray items = words.getJSONObject(i).getJSONArray("cw");
- JSONObject obj = items.getJSONObject(0);
- ret.append(obj.getString("w"));
-// 如果需要多候选结果,解析数组其他字段
-// for(int j = 0; j < items.length(); j++)
-// {
-// JSONObject obj = items.getJSONObject(j);
-// ret.append(obj.getString("w"));
-// }
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- return ret.toString();
- }
-
- public static String parseGrammarResult(String json) {
- StringBuffer ret = new StringBuffer();
- try {
- JSONTokener tokener = new JSONTokener(json);
- JSONObject joResult = new JSONObject(tokener);
-
- JSONArray words = joResult.getJSONArray("ws");
- for (int i = 0; i < words.length(); i++) {
- JSONArray items = words.getJSONObject(i).getJSONArray("cw");
- for(int j = 0; j < items.length(); j++)
- {
- JSONObject obj = items.getJSONObject(j);
- if(obj.getString("w").contains("nomatch"))
- {
- ret.append("没有匹配结果.");
- return ret.toString();
- }
- ret.append("【结果】" + obj.getString("w"));
- ret.append("【置信度】" + obj.getInt("sc"));
- ret.append("\n");
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- ret.append("没有匹配结果.");
- }
- return ret.toString();
- }
-
- public static String parseLocalGrammarResult(String json) {
- StringBuffer ret = new StringBuffer();
- try {
- JSONTokener tokener = new JSONTokener(json);
- JSONObject joResult = new JSONObject(tokener);
-
- JSONArray words = joResult.getJSONArray("ws");
- for (int i = 0; i < words.length(); i++) {
- JSONArray items = words.getJSONObject(i).getJSONArray("cw");
- for(int j = 0; j < items.length(); j++)
- {
- JSONObject obj = items.getJSONObject(j);
- if(obj.getString("w").contains("nomatch"))
- {
- ret.append("没有匹配结果.");
- return ret.toString();
- }
- ret.append("【结果】" + obj.getString("w"));
- ret.append("\n");
- }
- }
- ret.append("【置信度】" + joResult.optInt("sc"));
-
- } catch (Exception e) {
- e.printStackTrace();
- ret.append("没有匹配结果.");
- }
- return ret.toString();
- }
-
- public static String parseTransResult(String json,String key) {
- StringBuffer ret = new StringBuffer();
- try {
- JSONTokener tokener = new JSONTokener(json);
- JSONObject joResult = new JSONObject(tokener);
- String errorCode = joResult.optString("ret");
- if(!errorCode.equals("0")) {
- return joResult.optString("errmsg");
- }
- JSONObject transResult = joResult.optJSONObject("trans_result");
- ret.append(transResult.optString(key));
- /*JSONArray words = joResult.getJSONArray("results");
- for (int i = 0; i < words.length(); i++) {
- JSONObject obj = words.getJSONObject(i);
- ret.append(obj.getString(key));
- }*/
- } catch (Exception e) {
- e.printStackTrace();
- }
- return ret.toString();
- }
-}
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/AndroidManifest.xml b/FunctionRealize/XunfeiDemo/app/src/main/AndroidManifest.xml
deleted file mode 100644
index b4ec60f..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,39 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/recognize.xml b/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/recognize.xml
deleted file mode 100644
index 78300c1..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/recognize.xml and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_bg.9.png b/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_bg.9.png
deleted file mode 100644
index 217f9dc..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_bg.9.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_empty.png b/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_empty.png
deleted file mode 100644
index 08ffc43..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_empty.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_full.png b/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_full.png
deleted file mode 100644
index 4bf5bbc..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/voice_full.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/waiting.png b/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/waiting.png
deleted file mode 100644
index d13bb33..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/waiting.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/warning.png b/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/warning.png
deleted file mode 100644
index 48150ff..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/assets/iflytek/warning.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/java/com/example/administrator/xunfeidemo/MainActivity.java b/FunctionRealize/XunfeiDemo/app/src/main/java/com/example/administrator/xunfeidemo/MainActivity.java
deleted file mode 100644
index 6c34e1d..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/java/com/example/administrator/xunfeidemo/MainActivity.java
+++ /dev/null
@@ -1,83 +0,0 @@
-package com.example.administrator.xunfeidemo;
-
-import android.support.v7.app.AppCompatActivity;
-import android.os.Bundle;
-import android.view.Menu;
-import android.view.MenuItem;
-import android.view.View;
-import android.widget.Button;
-import android.widget.EditText;
-import android.widget.Toast;
-import com.iflytek.cloud.RecognizerResult;
-import com.iflytek.cloud.SpeechConstant;
-import com.iflytek.cloud.SpeechError;
-import com.iflytek.cloud.SpeechUtility;
-import com.iflytek.cloud.ui.RecognizerDialog;
-import com.iflytek.cloud.ui.RecognizerDialogListener;
-import org.json.JSONArray;
-import org.json.JSONObject;
-import org.json.JSONTokener;
-
-public class MainActivity extends AppCompatActivity implements View.OnClickListener{
-
- private Button btn_click;
- private EditText mResultText;
-
- protected void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.activity_main);
- btn_click = findViewById(R.id.btn_click);
- mResultText = findViewById(R.id.result);
- SpeechUtility.createUtility(this, SpeechConstant.APPID + "=5c2d9c12");
- btn_click.setOnClickListener(this);
- }
- @Override
- public void onClick(View v) {
- if(v==btn_click) {
- btnVoice();
- }
- else Toast.makeText(this, "请重试!", Toast.LENGTH_SHORT).show();
- }
- //TODO 开始说话:
- private void btnVoice() {
- RecognizerDialog dialog = new RecognizerDialog(this,null);
- dialog.setParameter(SpeechConstant.LANGUAGE, "zh_cn");
- dialog.setParameter(SpeechConstant.ACCENT, "mandarin");
- dialog.setListener(new RecognizerDialogListener() {
- @Override
- public void onResult(RecognizerResult recognizerResult, boolean b) {
- printResult(recognizerResult);
- }
- @Override
- //
- public void onError(SpeechError speechError) {
- }
- });
- dialog.show();
- Toast.makeText(this, "请开始说话", Toast.LENGTH_SHORT).show();
- }
- //回调结果:
- private void printResult(RecognizerResult results) {
- String text = parseIatResult(results.getResultString());
- // 自动填写地址
- mResultText.append(text);
- }
- public static String parseIatResult(String json) {
- StringBuilder ret = new StringBuilder();
- try {
- JSONTokener tokenizer = new JSONTokener(json);
- JSONObject joResult = new JSONObject(tokenizer);
- JSONArray words = joResult.getJSONArray("ws");
- for (int i = 0; i < words.length(); i++) {
- // 转写结果词,默认使用第一个结果
- JSONArray items = words.getJSONObject(i).getJSONArray("cw");
- JSONObject obj = items.getJSONObject(0);
- ret.append(obj.getString("w"));
- }
- } catch (Exception e) {
- e.printStackTrace();
- ret.append("failed!") ;
- }
- return ret.toString();
- }
-}
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/arm64-v8a/libmsc.so b/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/arm64-v8a/libmsc.so
deleted file mode 100644
index a872cd3..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/arm64-v8a/libmsc.so and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/armeabi-v7a/libmsc.so b/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/armeabi-v7a/libmsc.so
deleted file mode 100644
index 0f46850..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/armeabi-v7a/libmsc.so and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/armeabi/libmsc.so b/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/armeabi/libmsc.so
deleted file mode 100644
index 1c3ddf1..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/armeabi/libmsc.so and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/mips/libmsc.so b/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/mips/libmsc.so
deleted file mode 100644
index 92512fe..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/mips/libmsc.so and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/mips64/libmsc.so b/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/mips64/libmsc.so
deleted file mode 100644
index 32fed9e..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/mips64/libmsc.so and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/x86/libmsc.so b/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/x86/libmsc.so
deleted file mode 100644
index 62c3f28..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/x86/libmsc.so and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/x86_64/libmsc.so b/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/x86_64/libmsc.so
deleted file mode 100644
index 0b9ac79..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/jniLibs/x86_64/libmsc.so and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
deleted file mode 100644
index c7bd21d..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_dashboard_black_24dp.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_dashboard_black_24dp.xml
deleted file mode 100644
index 663d572..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_dashboard_black_24dp.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_home_black_24dp.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_home_black_24dp.xml
deleted file mode 100644
index 70fb291..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_home_black_24dp.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_launcher_background.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_launcher_background.xml
deleted file mode 100644
index 2408e30..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_launcher_background.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_notifications_black_24dp.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_notifications_black_24dp.xml
deleted file mode 100644
index 7009a67..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/drawable/ic_notifications_black_24dp.xml
+++ /dev/null
@@ -1,9 +0,0 @@
-
-
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/layout/activity_main.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 252f1ff..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/menu/navigation.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/menu/navigation.xml
deleted file mode 100644
index eb77319..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/menu/navigation.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
deleted file mode 100644
index bbd3e02..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
deleted file mode 100644
index bbd3e02..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png
deleted file mode 100644
index 898f3ed..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
deleted file mode 100644
index dffca36..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 64ba76f..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
deleted file mode 100644
index dae5e08..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index e5ed465..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 14ed0af..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index b0907ca..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index d8ae031..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 2c18de9..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
deleted file mode 100644
index beed3cd..0000000
Binary files a/FunctionRealize/XunfeiDemo/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/values/colors.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/values/colors.xml
deleted file mode 100644
index 69b2233..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #008577
- #00574B
- #D81B60
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/values/dimens.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/values/dimens.xml
deleted file mode 100644
index 47c8224..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/values/dimens.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
- 16dp
- 16dp
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/values/strings.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/values/strings.xml
deleted file mode 100644
index f13f3f8..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
- XunfeiDemo
- Home
- Dashboard
- Notifications
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/main/res/values/styles.xml b/FunctionRealize/XunfeiDemo/app/src/main/res/values/styles.xml
deleted file mode 100644
index 5885930..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-
-
-
-
-
diff --git a/FunctionRealize/XunfeiDemo/app/src/test/java/com/example/administrator/xunfeidemo/ExampleUnitTest.java b/FunctionRealize/XunfeiDemo/app/src/test/java/com/example/administrator/xunfeidemo/ExampleUnitTest.java
deleted file mode 100644
index dbac0cf..0000000
--- a/FunctionRealize/XunfeiDemo/app/src/test/java/com/example/administrator/xunfeidemo/ExampleUnitTest.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.example.administrator.xunfeidemo;
-
-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/FunctionRealize/XunfeiDemo/build.gradle b/FunctionRealize/XunfeiDemo/build.gradle
deleted file mode 100644
index 8d3ef8e..0000000
--- a/FunctionRealize/XunfeiDemo/build.gradle
+++ /dev/null
@@ -1,27 +0,0 @@
-// Top-level build file where you can add configuration options common to all sub-projects/modules.
-
-buildscript {
-
- repositories {
- google()
- jcenter()
- }
- dependencies {
- classpath 'com.android.tools.build:gradle:3.2.1'
-
-
- // NOTE: Do not place your application dependencies here; they belong
- // in the individual module build.gradle files
- }
-}
-
-allprojects {
- repositories {
- google()
- jcenter()
- }
-}
-
-task clean(type: Delete) {
- delete rootProject.buildDir
-}
diff --git a/FunctionRealize/XunfeiDemo/gradle.properties b/FunctionRealize/XunfeiDemo/gradle.properties
deleted file mode 100644
index 1d4b005..0000000
--- a/FunctionRealize/XunfeiDemo/gradle.properties
+++ /dev/null
@@ -1,19 +0,0 @@
-# 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=-Xmx1536m
-
-# 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
-
-
diff --git a/FunctionRealize/XunfeiDemo/gradle/wrapper/gradle-wrapper.jar b/FunctionRealize/XunfeiDemo/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index f6b961f..0000000
Binary files a/FunctionRealize/XunfeiDemo/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/FunctionRealize/XunfeiDemo/gradle/wrapper/gradle-wrapper.properties b/FunctionRealize/XunfeiDemo/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index 9a4163a..0000000
--- a/FunctionRealize/XunfeiDemo/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,5 +0,0 @@
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.6-all.zip
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
diff --git a/FunctionRealize/XunfeiDemo/gradlew b/FunctionRealize/XunfeiDemo/gradlew
deleted file mode 100644
index cccdd3d..0000000
--- a/FunctionRealize/XunfeiDemo/gradlew
+++ /dev/null
@@ -1,172 +0,0 @@
-#!/usr/bin/env sh
-
-##############################################################################
-##
-## 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=""
-
-# 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, switch paths to Windows format before running java
-if $cygwin ; 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=$((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"
-
-# by default we should be in the correct project dir, but when run from Finder on Mac, the cwd is wrong
-if [ "$(uname)" = "Darwin" ] && [ "$HOME" = "$PWD" ]; then
- cd "$(dirname "$0")"
-fi
-
-exec "$JAVACMD" "$@"
diff --git a/FunctionRealize/XunfeiDemo/gradlew.bat b/FunctionRealize/XunfeiDemo/gradlew.bat
deleted file mode 100644
index f955316..0000000
--- a/FunctionRealize/XunfeiDemo/gradlew.bat
+++ /dev/null
@@ -1,84 +0,0 @@
-@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 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=
-
-@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 init
-
-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 init
-
-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
-
-:init
-@rem Get command-line arguments, handling Windows variants
-
-if not "%OS%" == "Windows_NT" goto win9xME_args
-
-:win9xME_args
-@rem Slurp the command line arguments.
-set CMD_LINE_ARGS=
-set _SKIP=2
-
-:win9xME_args_slurp
-if "x%~1" == "x" goto execute
-
-set CMD_LINE_ARGS=%*
-
-: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 %CMD_LINE_ARGS%
-
-: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/FunctionRealize/XunfeiDemo/settings.gradle b/FunctionRealize/XunfeiDemo/settings.gradle
deleted file mode 100644
index e7b4def..0000000
--- a/FunctionRealize/XunfeiDemo/settings.gradle
+++ /dev/null
@@ -1 +0,0 @@
-include ':app'
diff --git a/app/.gitignore b/app/.gitignore
deleted file mode 100644
index 796b96d..0000000
--- a/app/.gitignore
+++ /dev/null
@@ -1 +0,0 @@
-/build
diff --git a/app/app.iml b/app/app.iml
deleted file mode 100644
index 2a933ef..0000000
--- a/app/app.iml
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- generateDebugSources
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/build.gradle b/app/build.gradle
deleted file mode 100644
index fce28db..0000000
--- a/app/build.gradle
+++ /dev/null
@@ -1,30 +0,0 @@
-apply plugin: 'com.android.application'
-
-android {
- compileSdkVersion 27
- defaultConfig {
- applicationId "com.example.cici.voice"
- minSdkVersion 18
- targetSdkVersion 27
- versionCode 1
- versionName "1.0"
- testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
- }
- }
-}
-
-dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'com.android.support:appcompat-v7:27.1.1'
- implementation 'com.android.support.constraint:constraint-layout:1.1.2'
- testImplementation 'junit:junit:4.12'
- androidTestImplementation 'com.android.support.test:runner:1.0.2'
- androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
- implementation 'com.jakewharton:butterknife:8.8.1'
- annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'
-}
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
deleted file mode 100644
index f1b4245..0000000
--- a/app/proguard-rules.pro
+++ /dev/null
@@ -1,21 +0,0 @@
-# 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
diff --git a/app/src/androidTest/java/com/example/cici/voice/LoginActivityTest.java b/app/src/androidTest/java/com/example/cici/voice/LoginActivityTest.java
deleted file mode 100644
index c612023..0000000
--- a/app/src/androidTest/java/com/example/cici/voice/LoginActivityTest.java
+++ /dev/null
@@ -1,7 +0,0 @@
-package com.example.cici.voice;
-
-import static org.junit.Assert.*;
-
-public class LoginActivityTest {
-
-}
\ No newline at end of file
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
deleted file mode 100644
index b71db8c..0000000
--- a/app/src/main/AndroidManifest.xml
+++ /dev/null
@@ -1,23 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/java/com/example/cici/dao/DBOpenHelper b/app/src/main/java/com/example/cici/dao/DBOpenHelper
deleted file mode 100644
index d1fef9d..0000000
--- a/app/src/main/java/com/example/cici/dao/DBOpenHelper
+++ /dev/null
@@ -1,40 +0,0 @@
-package com.example.cici.dao;
-
-import android.content.Context;
-import android.database.sqlite.SQLiteDatabase;
-import android.database.sqlite.SQLiteOpenHelper;
-import android.database.sqlite.SQLiteDatabase.CursorFactory;
-
-public class DBOpenHelper extends SQLiteOpenHelper {
- public DBOpenHelper(Context context,String name, CursorFactory factory,
- int version) {
- super(context, name, factory, version);
- }
- @Override
- public void onCreate(SQLiteDatabase db) {
- db.execSQL("create table if not exists user_tb(_id integer primary key autoincrement," +
- "userID text not null," +
- "pwd text not null," +
- "name text not null," +
- "birthday text not null," +
- "sex text not null," +
- "phonenum text not null," +
- "headpic text not null)");
- db.execSQL("create table if not exists voice_tb(_id integer primary key autoincrement," +
- "voiceID text not null," +
- "voicecontent text not null,"
- "sharemoment integer," +
- "diary integer," +
- "memorandum integer," +
- "report integer)");
- db.execSQL("create table if not exists publish_tb(_id integer primary key autoincrement," +
- "voiceID text not null," +
- "userID text not null)");
- }
- @Override
- public void onUpgrade(SQLiteDatabase db,int oldVersion,int newVersion){
-
- }
-
-}
-
diff --git a/app/src/main/java/com/example/cici/dao/DBOpenHelper.java b/app/src/main/java/com/example/cici/dao/DBOpenHelper.java
deleted file mode 100644
index 6e2f89a..0000000
--- a/app/src/main/java/com/example/cici/dao/DBOpenHelper.java
+++ /dev/null
@@ -1,41 +0,0 @@
-
-package com.example.cici.dao;
-
-import android.content.Context;
-import android.database.sqlite.SQLiteDatabase;
-import android.database.sqlite.SQLiteOpenHelper;
-import android.database.sqlite.SQLiteDatabase.CursorFactory;
-
-public class DBOpenHelper extends SQLiteOpenHelper {
- public DBOpenHelper(Context context,String name, CursorFactory factory,
- int version) {
- super(context, name, factory, version);
- }
- @Override
- public void onCreate(SQLiteDatabase db) {
- db.execSQL("create table if not exists user_tb(_id integer primary key autoincrement," +
- "userID text not null," +
- "pwd text not null," +
- "name text not null," +
- "birthday text not null," +
- "sex text not null," +
- "phonenum text not null," +
- "headpic text not null)");
- db.execSQL("create table if not exists voice_tb(_id integer primary key autoincrement," +
- "voiceID text not null," +
- "voicecontent text not null,"+
- "sharemoment integer," +
- "diary integer," +
- "memorandum integer," +
- "report integer)");
- db.execSQL("create table if not exists publish_tb(_id integer primary key autoincrement," +
- "voiceID text not null," +
- "userID text not null)");
- }
- @Override
- public void onUpgrade(SQLiteDatabase db,int oldVersion,int newVersion){
-
- }
-
-}
-
diff --git a/app/src/main/java/com/example/cici/util/pubFun.java b/app/src/main/java/com/example/cici/util/pubFun.java
deleted file mode 100644
index f989549..0000000
--- a/app/src/main/java/com/example/cici/util/pubFun.java
+++ /dev/null
@@ -1,37 +0,0 @@
-package com.example.cici.util;
-
-import java.util.regex.Matcher;
-import java.util.regex.Pattern;
-
-public class pubFun{
- public static boolean isEmpty(String input)
- {
- if(input==null ||"".equals(input))
- return true;
- for(int i=0;i= 1){
- String[] cols = c.getColumnNames();
- while(c.moveToNext()){
- for(String ColumnName:cols){
- Log.i("info",ColumnName+":"+c.getString(c.getColumnIndex(ColumnName)));
- }
- }
- c.close();
- db.close();
-
- //将登陆用户信息存储到SharedPreferences中
- SharedPreferences mySharedPreferences= getSharedPreferences("setting",Activity.MODE_PRIVATE); //实例化SharedPreferences对象
- SharedPreferences.Editor editor = mySharedPreferences.edit();//实例化SharedPreferences.Editor对象
- editor.putString("userID", editPhone.getText().toString()); //用putString的方法保存数据
- editor.commit(); //提交当前数据
-
- this.finish();
- }
- else{
- Toast.makeText(this, "手机号或密码输入错误!", Toast.LENGTH_SHORT).show();
- }
- }
-
- /**
- * Jump to the registration interface
- * @param v
- */
- public void OnMyRegistClick(View v) {
- Intent intent=new Intent(LoginActivity.this,RegistActivity.class);
- //intent.putExtra("info", "No66778899");
- LoginActivity.this.startActivity(intent);
- }
-
- /**
- * Jump to reset password interface
- * @param v
- */
- public void OnMyResPwdClick(View v){
- Intent intent=new Intent(LoginActivity.this,ResPwdActivity.class);
- LoginActivity.this.startActivity(intent);
- }
- }
-
diff --git a/app/src/main/java/com/example/cici/voice/MainActivity.java b/app/src/main/java/com/example/cici/voice/MainActivity.java
deleted file mode 100644
index ed82e27..0000000
--- a/app/src/main/java/com/example/cici/voice/MainActivity.java
+++ /dev/null
@@ -1,13 +0,0 @@
-package com.example.cici.voice;
-
-import android.support.v7.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);
- }
-}
diff --git a/app/src/main/java/com/example/cici/voice/RegistActivity.java b/app/src/main/java/com/example/cici/voice/RegistActivity.java
deleted file mode 100644
index d1f4b6e..0000000
--- a/app/src/main/java/com/example/cici/voice/RegistActivity.java
+++ /dev/null
@@ -1,72 +0,0 @@
-package com.example.cici.voice;
-
-
-import android.content.ContentValues;
-import android.database.Cursor;
-import android.database.sqlite.SQLiteDatabase;
-import android.os.Bundle;
-import android.support.v7.app.AppCompatActivity;
-import android.view.View;
-import android.widget.Button;
-import android.widget.EditText;
-import android.widget.Toast;
-
-import com.example.cici.dao.DBOpenHelper;
-import com.example.cici.util.pubFun;
-
-
-public class RegistActivity extends AppCompatActivity {
- private EditText editPhone;
- private EditText editPwd;
- private Button btnRegist;
- protected void onCreate(Bundle savedInstanceState){
- super.onCreate(savedInstanceState);
- setContentView(R.layout.regist);
- editPhone = (EditText) findViewById(R.id.editPhone);
- editPwd = (EditText) findViewById(R.id.editPwd);
- btnRegist = (Button) findViewById(R.id.btnRegist);
- }
-
- /**
- * register event
- * @param v
- */
- public void OnMyRegistClick(View v)
- {
- boolean isTrue = true;
- if(pubFun.isPhoneNumberValid(editPhone.getText().toString()) == false){
- isTrue = false;
- Toast.makeText(this, "手机号格式不正确!", Toast.LENGTH_SHORT).show();
- return;
- }
- if(pubFun.isEmpty(editPwd.getText().toString())){
- isTrue = false;
- Toast.makeText(this, "密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
-
- if(isTrue = true){
- //call DBOpenHelper
- DBOpenHelper helper = new DBOpenHelper(this,".db",null,1);
- SQLiteDatabase db = helper.getWritableDatabase();
- Cursor c = db.query("user_tb",null,"userID=?",new String[]{editPhone.getText().toString()},null,null,null);
- if(c!=null && c.getCount() >= 1){
- Toast.makeText(this, "该用户已存在", Toast.LENGTH_SHORT).show();
- c.close();
- }
- else{
- //insert data
- ContentValues values= new ContentValues();
- values.put("userID",editPhone.getText().toString());
- values.put("pwd",editPwd.getText().toString());
- long rowid = db.insert("user_tb",null,values);
-
- Toast.makeText(this, "注册成功", Toast.LENGTH_SHORT).show();
- this.finish();
- }
- db.close();
- }else{
- return;
- }
- }
-}
diff --git a/app/src/main/java/com/example/cici/voice/ResPwdActivity.java b/app/src/main/java/com/example/cici/voice/ResPwdActivity.java
deleted file mode 100644
index e67a0f4..0000000
--- a/app/src/main/java/com/example/cici/voice/ResPwdActivity.java
+++ /dev/null
@@ -1,88 +0,0 @@
-package com.example.cici.voice;
-
-import android.app.AlertDialog;
-import android.content.ContentValues;
-import android.content.DialogInterface;
-import android.content.Intent;
-import android.database.Cursor;
-import android.database.sqlite.SQLiteDatabase;
-import android.os.Bundle;
-import android.support.v7.app.AppCompatActivity;
-import android.view.View;
-import android.widget.Button;
-import android.widget.EditText;
-import android.widget.Toast;
-
-import com.example.cici.dao.DBOpenHelper;
-import com.example.cici.util.pubFun;
-
-
-public class ResPwdActivity extends AppCompatActivity {
- private EditText editPhone;
- private EditText editPwd;
- private EditText editResPwd;
- private Button btnConfirm;
- public void onCreate(Bundle savedInstanceState) {
- super.onCreate(savedInstanceState);
- setContentView(R.layout.res_password);
- editPhone = (EditText) findViewById(R.id.editPhone);
- editPwd = (EditText) findViewById(R.id.editPwd);
- editResPwd = (EditText) findViewById(R.id.editResPwd);
- btnConfirm = (Button) findViewById(R.id.btnConfirm);
- }
-
- /**
- * confirm event
- * @param v
- */
- public void OnMyConfirmClick(View v) {
- confirmInfo();
- }
-
- /**
- * confirm event
- */
- private void confirmInfo() {
- if(pubFun.isEmpty(editPhone.getText().toString()) || pubFun.isEmpty(editPwd.getText().toString()) || pubFun.isEmpty(editResPwd.getText().toString())){
- Toast.makeText(this, "手机号或密码不能为空!", Toast.LENGTH_SHORT).show();
- return;
- }
- if(!editPwd.getText().toString().equals(editResPwd.getText().toString())){
- Toast.makeText(this, "输入密码不正确!", Toast.LENGTH_SHORT).show();
- return;
- }
-
- //调用DBOpenHelper
- DBOpenHelper helper = new DBOpenHelper(this,"voice.db",null,1);
- SQLiteDatabase db = helper.getWritableDatabase();
- Cursor c = db.query("user_tb",null,"userID=?",new String[]{editPhone.getText().toString()},null,null,null);
- if(c!=null && c.getCount() >= 1){
- ContentValues cv = new ContentValues();
- cv.put("pwd", editPwd.getText().toString());
- String[] args = {String.valueOf(editPhone.getText().toString())};
- long rowid = db.update("user_tb", cv, "userID=?",args);
- c.close();
- db.close();
- Toast.makeText(this, "密码重置成功!", Toast.LENGTH_SHORT).show();
- this.finish();
- }
- else{
- new AlertDialog.Builder(this)
- .setTitle("提示")
- .setMessage("该用户不存在,请到注册界面进行注册!")
- .setPositiveButton("确定", new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int whichButton) {
- setResult(RESULT_OK);
- Intent intent=new Intent(ResPwdActivity.this,RegistActivity.class);
- ResPwdActivity.this.startActivity(intent);
- }
- })
- .setNegativeButton("取消", new DialogInterface.OnClickListener() {
- public void onClick(DialogInterface dialog, int whichButton) {
- return;
- }
- })
- .show();
- }
- }
-}
diff --git a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
deleted file mode 100644
index c7bd21d..0000000
--- a/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
+++ /dev/null
@@ -1,34 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/drawable/ic_launcher_background.xml b/app/src/main/res/drawable/ic_launcher_background.xml
deleted file mode 100644
index 2408e30..0000000
--- a/app/src/main/res/drawable/ic_launcher_background.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/app/src/main/res/layout/activity_main.xml b/app/src/main/res/layout/activity_main.xml
deleted file mode 100644
index 84f1951..0000000
--- a/app/src/main/res/layout/activity_main.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/regist.xml b/app/src/main/res/layout/regist.xml
deleted file mode 100644
index 24db992..0000000
--- a/app/src/main/res/layout/regist.xml
+++ /dev/null
@@ -1,69 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/layout/res_password.xml b/app/src/main/res/layout/res_password.xml
deleted file mode 100644
index 8e6110c..0000000
--- a/app/src/main/res/layout/res_password.xml
+++ /dev/null
@@ -1,75 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
deleted file mode 100644
index bbd3e02..0000000
--- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ No newline at end of file
diff --git a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
deleted file mode 100644
index bbd3e02..0000000
--- a/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
+++ /dev/null
@@ -1,5 +0,0 @@
-
-
-
-
-
\ 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
deleted file mode 100644
index 898f3ed..0000000
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher.png and /dev/null 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
deleted file mode 100644
index dffca36..0000000
Binary files a/app/src/main/res/mipmap-hdpi/ic_launcher_round.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-mdpi/ic_launcher.png b/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index 64ba76f..0000000
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null 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
deleted file mode 100644
index dae5e08..0000000
Binary files a/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index e5ed465..0000000
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null 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
deleted file mode 100644
index 14ed0af..0000000
Binary files a/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index b0907ca..0000000
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null 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
deleted file mode 100644
index d8ae031..0000000
Binary files a/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index 2c18de9..0000000
Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null 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
deleted file mode 100644
index beed3cd..0000000
Binary files a/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/app/src/main/res/values/colors.xml b/app/src/main/res/values/colors.xml
deleted file mode 100644
index 69b2233..0000000
--- a/app/src/main/res/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #008577
- #00574B
- #D81B60
-
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
deleted file mode 100644
index 3b031cd..0000000
--- a/app/src/main/res/values/strings.xml
+++ /dev/null
@@ -1,10 +0,0 @@
-
- voice
- 登录
- 忘记密码
- 开始注册
- 注册
- 重置密码
- 确认
-
-
diff --git a/app/src/main/res/values/styles.xml b/app/src/main/res/values/styles.xml
deleted file mode 100644
index 46a6f24..0000000
--- a/app/src/main/res/values/styles.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
diff --git a/FunctionRealize/Record/.gitignore b/database/v/.gitignore
similarity index 100%
rename from FunctionRealize/Record/.gitignore
rename to database/v/.gitignore
diff --git a/数据库/voice/.idea/codeStyles/Project.xml b/database/v/.idea/codeStyles/Project.xml
similarity index 100%
rename from 数据库/voice/.idea/codeStyles/Project.xml
rename to database/v/.idea/codeStyles/Project.xml
diff --git a/数据库/voice/.idea/dbnavigator.xml b/database/v/.idea/dbnavigator.xml
similarity index 100%
rename from 数据库/voice/.idea/dbnavigator.xml
rename to database/v/.idea/dbnavigator.xml
diff --git a/FunctionRealize/Record/.idea/gradle.xml b/database/v/.idea/gradle.xml
similarity index 100%
rename from FunctionRealize/Record/.idea/gradle.xml
rename to database/v/.idea/gradle.xml
diff --git a/FunctionRealize/XunfeiDemo/.idea/misc.xml b/database/v/.idea/misc.xml
similarity index 96%
rename from FunctionRealize/XunfeiDemo/.idea/misc.xml
rename to database/v/.idea/misc.xml
index b0c7b20..e0d5b93 100644
--- a/FunctionRealize/XunfeiDemo/.idea/misc.xml
+++ b/database/v/.idea/misc.xml
@@ -29,7 +29,7 @@
-
+
diff --git a/FunctionRealize/Record/.idea/runConfigurations.xml b/database/v/.idea/runConfigurations.xml
similarity index 100%
rename from FunctionRealize/Record/.idea/runConfigurations.xml
rename to database/v/.idea/runConfigurations.xml
diff --git a/FunctionRealize/Record/app/.gitignore b/database/v/app/.gitignore
similarity index 100%
rename from FunctionRealize/Record/app/.gitignore
rename to database/v/app/.gitignore
diff --git a/数据库/voice/app/build.gradle b/database/v/app/build.gradle
similarity index 96%
rename from 数据库/voice/app/build.gradle
rename to database/v/app/build.gradle
index c2ff7e0..c70e692 100644
--- a/数据库/voice/app/build.gradle
+++ b/database/v/app/build.gradle
@@ -3,7 +3,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 27
defaultConfig {
- applicationId "com.friends.lmm.friends"
+ applicationId "com.example.cici.voice"
minSdkVersion 18
targetSdkVersion 27
versionCode 1
diff --git a/数据库/voice/app/libs/MobCommons-2018.1128.1916.jar b/database/v/app/libs/MobCommons-2018.1128.1916.jar
similarity index 100%
rename from 数据库/voice/app/libs/MobCommons-2018.1128.1916.jar
rename to database/v/app/libs/MobCommons-2018.1128.1916.jar
diff --git a/数据库/voice/app/libs/MobTools-2018.1128.1916.jar b/database/v/app/libs/MobTools-2018.1128.1916.jar
similarity index 100%
rename from 数据库/voice/app/libs/MobTools-2018.1128.1916.jar
rename to database/v/app/libs/MobTools-2018.1128.1916.jar
diff --git a/数据库/voice/app/libs/SDKWrapper-2018.0801.1824.jar b/database/v/app/libs/SDKWrapper-2018.0801.1824.jar
similarity index 100%
rename from 数据库/voice/app/libs/SDKWrapper-2018.0801.1824.jar
rename to database/v/app/libs/SDKWrapper-2018.0801.1824.jar
diff --git a/数据库/voice/app/libs/SMSSDK-3.3.0.jar b/database/v/app/libs/SMSSDK-3.3.0.jar
similarity index 100%
rename from 数据库/voice/app/libs/SMSSDK-3.3.0.jar
rename to database/v/app/libs/SMSSDK-3.3.0.jar
diff --git a/数据库/voice/app/libs/picasso-2.5.2.jar b/database/v/app/libs/picasso-2.5.2.jar
similarity index 100%
rename from 数据库/voice/app/libs/picasso-2.5.2.jar
rename to database/v/app/libs/picasso-2.5.2.jar
diff --git a/FunctionRealize/Record/app/proguard-rules.pro b/database/v/app/proguard-rules.pro
similarity index 100%
rename from FunctionRealize/Record/app/proguard-rules.pro
rename to database/v/app/proguard-rules.pro
diff --git a/app/src/androidTest/java/com/example/cici/voice/ExampleInstrumentedTest.java b/database/v/app/src/androidTest/java/com/example/cici/voice/ExampleInstrumentedTest.java
similarity index 100%
rename from app/src/androidTest/java/com/example/cici/voice/ExampleInstrumentedTest.java
rename to database/v/app/src/androidTest/java/com/example/cici/voice/ExampleInstrumentedTest.java
diff --git a/数据库/voice/app/src/main/AndroidManifest.xml b/database/v/app/src/main/AndroidManifest.xml
similarity index 78%
rename from 数据库/voice/app/src/main/AndroidManifest.xml
rename to database/v/app/src/main/AndroidManifest.xml
index a2026de..cc9602b 100644
--- a/数据库/voice/app/src/main/AndroidManifest.xml
+++ b/database/v/app/src/main/AndroidManifest.xml
@@ -1,6 +1,7 @@
+ xmlns:tools="http://schemas.android.com/tools"
+ package="com.example.cici.voice">
@@ -25,14 +26,15 @@
-
+ android:theme="@style/AppTheme"
+ tools:ignore="GoogleAppIndexingWarning">
+
@@ -45,14 +47,13 @@
android:configChanges="keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="stateHidden|adjustResize"/>
-
-
-
-
-
+
+
+
+
+
-
\ No newline at end of file
diff --git a/数据库/voice/app/src/main/java/MyApplication.java b/database/v/app/src/main/java/com/example/cici/MyApplication.java
similarity index 56%
rename from 数据库/voice/app/src/main/java/MyApplication.java
rename to database/v/app/src/main/java/com/example/cici/MyApplication.java
index f09b2ca..bcc24c3 100644
--- a/数据库/voice/app/src/main/java/MyApplication.java
+++ b/database/v/app/src/main/java/com/example/cici/MyApplication.java
@@ -1,3 +1,5 @@
+package com.example.cici;
+
import android.app.Application;
import android.content.Context;
import android.graphics.Bitmap;
@@ -5,7 +7,7 @@ import android.widget.ImageView;
import com.bumptech.glide.Glide;
import com.example.cici.utils.ImageLoader;
-import com.friends.lmm.friends.R;
+import com.example.cici.voice.R;
import com.lzy.imagepicker.ImagePicker;
import com.lzy.imagepicker.view.CropImageView;
import com.lzy.ninegrid.NineGridView;
@@ -16,7 +18,6 @@ public class MyApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
- //在这里填写你在Bmob申请的ID
Bmob.initialize(this, "eb215dfb2a8a94afc9c871f4394c3b23");
NineGridView.setImageLoader(new GlideImageLoader());
ImagePicker imagePicker = ImagePicker.getInstance();
@@ -46,34 +47,5 @@ public class MyApplication extends Application {
}
}
- /*
- final String[] filePaths = new String[imageItems.size()];
- for (int i = 0; i < imageItems.size(); i++) {
- filePaths[i] = imageItems.get(i).path;
- head_url_res = filePaths[0];
- final User user = new User();
- final BmobFile bmobFile = new BmobFile(new File(head_url_res));
- bmobFile.uploadblock(new UploadFileListener() {
- @Override
- public void done(BmobException e) {
- if (e == null) {
- user.setHead(bmobFile.getFileUrl());
- User user = new User();
- user.setUsername(name);
- user.setPassword(password);
- user.signUp(new SaveListener() {
- @Override
- public void done(BmobUser bmobUser, BmobException e) {
- if (e == null) {
- toast("注册成功!");
- Intent intent = new Intent();
- intent.setClass(RegisterActivity.this, MainActivity.class);
- startActivity(intent);
- finish();
- } else {
- toast("注册失败! " + e.toString());
- }
- }
- */
}
diff --git a/数据库/voice/app/src/main/java/com/example/cici/adapter/CommentAdapter.java b/database/v/app/src/main/java/com/example/cici/adapter/CommentAdapter.java
similarity index 98%
rename from 数据库/voice/app/src/main/java/com/example/cici/adapter/CommentAdapter.java
rename to database/v/app/src/main/java/com/example/cici/adapter/CommentAdapter.java
index b60483b..4707e97 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/adapter/CommentAdapter.java
+++ b/database/v/app/src/main/java/com/example/cici/adapter/CommentAdapter.java
@@ -7,8 +7,8 @@ import android.view.ViewGroup;
import android.widget.BaseAdapter;
import android.widget.TextView;
-import com.friends.lmm.friends.R;
import com.example.cici.bean.Comment;
+import com.example.cici.voice.R;
import com.makeramen.roundedimageview.RoundedImageView;
import com.squareup.picasso.Picasso;
diff --git a/数据库/voice/app/src/main/java/com/example/cici/adapter/MyAdapter.java b/database/v/app/src/main/java/com/example/cici/adapter/MyAdapter.java
similarity index 98%
rename from 数据库/voice/app/src/main/java/com/example/cici/adapter/MyAdapter.java
rename to database/v/app/src/main/java/com/example/cici/adapter/MyAdapter.java
index 03e22e0..78aeb01 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/adapter/MyAdapter.java
+++ b/database/v/app/src/main/java/com/example/cici/adapter/MyAdapter.java
@@ -8,8 +8,9 @@ import android.widget.BaseAdapter;
import android.widget.ImageView;
import android.widget.TextView;
-import com.friends.lmm.friends.R;
+
import com.example.cici.bean.Post;
+import com.example.cici.voice.R;
import com.lzy.ninegrid.ImageInfo;
import com.lzy.ninegrid.NineGridView;
import com.lzy.ninegrid.preview.NineGridViewClickAdapter;
diff --git a/数据库/voice/app/src/main/java/com/example/cici/bean/Comment.java b/database/v/app/src/main/java/com/example/cici/bean/Comment.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/bean/Comment.java
rename to database/v/app/src/main/java/com/example/cici/bean/Comment.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/bean/Post.java b/database/v/app/src/main/java/com/example/cici/bean/Post.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/bean/Post.java
rename to database/v/app/src/main/java/com/example/cici/bean/Post.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/bean/User.java b/database/v/app/src/main/java/com/example/cici/bean/User.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/bean/User.java
rename to database/v/app/src/main/java/com/example/cici/bean/User.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/utils/CircleTransform.java b/database/v/app/src/main/java/com/example/cici/utils/CircleTransform.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/utils/CircleTransform.java
rename to database/v/app/src/main/java/com/example/cici/utils/CircleTransform.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/utils/GradScrollView.java b/database/v/app/src/main/java/com/example/cici/utils/GradScrollView.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/utils/GradScrollView.java
rename to database/v/app/src/main/java/com/example/cici/utils/GradScrollView.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/utils/ImageLoader.java b/database/v/app/src/main/java/com/example/cici/utils/ImageLoader.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/utils/ImageLoader.java
rename to database/v/app/src/main/java/com/example/cici/utils/ImageLoader.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/utils/MyListview.java b/database/v/app/src/main/java/com/example/cici/utils/MyListview.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/utils/MyListview.java
rename to database/v/app/src/main/java/com/example/cici/utils/MyListview.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/utils/TimeCountUtil.java b/database/v/app/src/main/java/com/example/cici/utils/TimeCountUtil.java
similarity index 100%
rename from 数据库/voice/app/src/main/java/com/example/cici/utils/TimeCountUtil.java
rename to database/v/app/src/main/java/com/example/cici/utils/TimeCountUtil.java
diff --git a/数据库/voice/app/src/main/java/com/example/cici/ui/CommentActivity.java b/database/v/app/src/main/java/com/example/cici/voice/CommentActivity.java
similarity index 99%
rename from 数据库/voice/app/src/main/java/com/example/cici/ui/CommentActivity.java
rename to database/v/app/src/main/java/com/example/cici/voice/CommentActivity.java
index 769e83c..03f071a 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/ui/CommentActivity.java
+++ b/database/v/app/src/main/java/com/example/cici/voice/CommentActivity.java
@@ -1,4 +1,4 @@
-package com.example.cici.ui;
+package com.example.cici.voice;
import android.content.Context;
import android.content.Intent;
@@ -17,12 +17,12 @@ import android.widget.TextView;
import android.widget.Toast;
import com.bumptech.glide.Glide;
-import com.friends.lmm.friends.R;
import com.example.cici.adapter.CommentAdapter;
import com.example.cici.bean.Comment;
import com.example.cici.bean.Post;
import com.example.cici.bean.User;
import com.example.cici.utils.MyListview;
+import com.example.cici.voice.R;
import com.lzy.ninegrid.ImageInfo;
import com.lzy.ninegrid.NineGridView;
import com.lzy.ninegrid.preview.NineGridViewClickAdapter;
@@ -104,7 +104,6 @@ public class CommentActivity extends AppCompatActivity implements View.OnClickLi
post.setObjectId(obj);
Glide.with(CommentActivity.this).load(headurl).into(head);
user = BmobUser.getCurrentUser(User.class);
- //user=BmobUser.getCurrentUser(User.class);
if (getIntent().getStringArrayListExtra("infoList") == null) {
nineGridView.setVisibility(View.GONE);
diff --git a/数据库/voice/app/src/main/java/com/example/cici/ui/EditActivity.java b/database/v/app/src/main/java/com/example/cici/voice/EditActivity.java
similarity index 99%
rename from 数据库/voice/app/src/main/java/com/example/cici/ui/EditActivity.java
rename to database/v/app/src/main/java/com/example/cici/voice/EditActivity.java
index 3d7795c..e74a298 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/ui/EditActivity.java
+++ b/database/v/app/src/main/java/com/example/cici/voice/EditActivity.java
@@ -1,4 +1,4 @@
-package com.example.cici.ui;
+package com.example.cici.voice;
import android.app.ProgressDialog;
import android.content.Context;
@@ -18,7 +18,7 @@ import android.widget.ImageView;
import android.widget.TextView;
import android.widget.Toast;
-import com.friends.lmm.friends.R;
+import com.example.cici.voice.R;
import com.example.cici.bean.Post;
import com.example.cici.utils.CircleTransform;
import com.example.cici.utils.ImageLoader;
diff --git a/数据库/voice/app/src/main/java/com/example/cici/ui/LoginActivity.java b/database/v/app/src/main/java/com/example/cici/voice/LoginActivity.java
similarity index 97%
rename from 数据库/voice/app/src/main/java/com/example/cici/ui/LoginActivity.java
rename to database/v/app/src/main/java/com/example/cici/voice/LoginActivity.java
index 1d1969a..7d5b011 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/ui/LoginActivity.java
+++ b/database/v/app/src/main/java/com/example/cici/voice/LoginActivity.java
@@ -1,4 +1,4 @@
-package com.example.cici.ui;
+package com.example.cici.voice;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
@@ -8,7 +8,7 @@ import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
-import com.friends.lmm.friends.R;
+import com.example.cici.voice.R;
import com.example.cici.bean.User;
import java.util.List;
@@ -96,7 +96,7 @@ public class LoginActivity extends AppCompatActivity {
/**
* Jump to reset password interface
- * @param v
+ * @param
*/
/* public void OnMyResPwdClick(View v){
Intent intent=new Intent(LoginActivity.this,ResPwdActivity.class);
diff --git a/数据库/voice/app/src/main/java/com/example/cici/ui/MainActivity.java b/database/v/app/src/main/java/com/example/cici/voice/MainActivity.java
similarity index 99%
rename from 数据库/voice/app/src/main/java/com/example/cici/ui/MainActivity.java
rename to database/v/app/src/main/java/com/example/cici/voice/MainActivity.java
index 3f79f35..6343bf9 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/ui/MainActivity.java
+++ b/database/v/app/src/main/java/com/example/cici/voice/MainActivity.java
@@ -1,4 +1,4 @@
-package com.example.cici.ui;
+package com.example.cici.voice;
import android.content.DialogInterface;
import android.content.Intent;
@@ -16,7 +16,6 @@ import android.widget.RelativeLayout;
import android.widget.Toast;
import com.bumptech.glide.Glide;
-import com.friends.lmm.friends.R;
import com.example.cici.adapter.MyAdapter;
import com.example.cici.bean.Post;
import com.example.cici.bean.User;
diff --git a/数据库/voice/app/src/main/java/com/example/cici/ui/RegisterActivity.java b/database/v/app/src/main/java/com/example/cici/voice/RegisterActivity.java
similarity index 99%
rename from 数据库/voice/app/src/main/java/com/example/cici/ui/RegisterActivity.java
rename to database/v/app/src/main/java/com/example/cici/voice/RegisterActivity.java
index 68bed51..c10d041 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/ui/RegisterActivity.java
+++ b/database/v/app/src/main/java/com/example/cici/voice/RegisterActivity.java
@@ -1,4 +1,4 @@
-package com.example.cici.ui;
+package com.example.cici.voice;
import java.util.Calendar;
@@ -21,7 +21,7 @@ import android.app.DatePickerDialog;
import android.app.DatePickerDialog.OnDateSetListener;
import com.bumptech.glide.Glide;
-import com.friends.lmm.friends.R;
+import com.example.cici.voice.R;
import com.example.cici.bean.User;
import com.example.cici.utils.ImageLoader;
import com.example.cici.utils.TimeCountUtil;
diff --git a/数据库/voice/app/src/main/java/com/example/cici/ui/ResPwdActivity.java b/database/v/app/src/main/java/com/example/cici/voice/ResPwdActivity.java
similarity index 98%
rename from 数据库/voice/app/src/main/java/com/example/cici/ui/ResPwdActivity.java
rename to database/v/app/src/main/java/com/example/cici/voice/ResPwdActivity.java
index 9fa7bd7..739a7ef 100644
--- a/数据库/voice/app/src/main/java/com/example/cici/ui/ResPwdActivity.java
+++ b/database/v/app/src/main/java/com/example/cici/voice/ResPwdActivity.java
@@ -1,4 +1,4 @@
-package com.example.cici.ui;
+package com.example.cici.voice;
import android.app.AlertDialog;
import android.content.DialogInterface;
@@ -11,8 +11,6 @@ import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;
-import com.friends.lmm.friends.R;
-
import java.util.List;
import cn.bmob.v3.BmobQuery;
diff --git a/FunctionRealize/Record/app/src/main/res/drawable-v24/ic_launcher_foreground.xml b/database/v/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
similarity index 88%
rename from FunctionRealize/Record/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
rename to database/v/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
index c7bd21d..1f6bb29 100644
--- a/FunctionRealize/Record/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
+++ b/database/v/app/src/main/res/drawable-v24/ic_launcher_foreground.xml
@@ -2,13 +2,13 @@
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
- android:viewportHeight="108"
- android:viewportWidth="108">
+ android:viewportWidth="108"
+ android:viewportHeight="108">
+ android:strokeWidth="1"
+ android:strokeColor="#00000000">
+ android:strokeWidth="1"
+ android:strokeColor="#00000000" />
diff --git a/数据库/voice/app/src/main/res/drawable/ic_launcher_background.xml b/database/v/app/src/main/res/drawable/ic_launcher_background.xml
similarity index 54%
rename from 数据库/voice/app/src/main/res/drawable/ic_launcher_background.xml
rename to database/v/app/src/main/res/drawable/ic_launcher_background.xml
index d5fccc5..0d025f9 100644
--- a/数据库/voice/app/src/main/res/drawable/ic_launcher_background.xml
+++ b/database/v/app/src/main/res/drawable/ic_launcher_background.xml
@@ -2,169 +2,169 @@
+ android:viewportWidth="108"
+ android:viewportHeight="108">
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
+ android:strokeWidth="0.8"
+ android:strokeColor="#33FFFFFF" />
diff --git a/数据库/voice/app/src/main/res/layout/activity_comment.xml b/database/v/app/src/main/res/layout/activity_comment.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/activity_comment.xml
rename to database/v/app/src/main/res/layout/activity_comment.xml
diff --git a/数据库/voice/app/src/main/res/layout/activity_login.xml b/database/v/app/src/main/res/layout/activity_login.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/activity_login.xml
rename to database/v/app/src/main/res/layout/activity_login.xml
diff --git a/数据库/voice/app/src/main/res/layout/activity_main.xml b/database/v/app/src/main/res/layout/activity_main.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/activity_main.xml
rename to database/v/app/src/main/res/layout/activity_main.xml
diff --git a/数据库/voice/app/src/main/res/layout/comm_item.xml b/database/v/app/src/main/res/layout/comm_item.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/comm_item.xml
rename to database/v/app/src/main/res/layout/comm_item.xml
diff --git a/数据库/voice/app/src/main/res/layout/content_main.xml b/database/v/app/src/main/res/layout/content_main.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/content_main.xml
rename to database/v/app/src/main/res/layout/content_main.xml
diff --git a/数据库/voice/app/src/main/res/layout/dialog.xml b/database/v/app/src/main/res/layout/dialog.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/dialog.xml
rename to database/v/app/src/main/res/layout/dialog.xml
diff --git a/数据库/voice/app/src/main/res/layout/dialog_com.xml b/database/v/app/src/main/res/layout/dialog_com.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/dialog_com.xml
rename to database/v/app/src/main/res/layout/dialog_com.xml
diff --git a/数据库/voice/app/src/main/res/layout/grid_layout.xml b/database/v/app/src/main/res/layout/grid_layout.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/grid_layout.xml
rename to database/v/app/src/main/res/layout/grid_layout.xml
diff --git a/数据库/voice/app/src/main/res/layout/head.xml b/database/v/app/src/main/res/layout/head.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/head.xml
rename to database/v/app/src/main/res/layout/head.xml
diff --git a/数据库/voice/app/src/main/res/layout/item_post.xml b/database/v/app/src/main/res/layout/item_post.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/item_post.xml
rename to database/v/app/src/main/res/layout/item_post.xml
diff --git a/数据库/voice/app/src/main/res/layout/layout_edit.xml b/database/v/app/src/main/res/layout/layout_edit.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/layout_edit.xml
rename to database/v/app/src/main/res/layout/layout_edit.xml
diff --git a/app/src/main/res/layout/login.xml b/database/v/app/src/main/res/layout/login.xml
similarity index 100%
rename from app/src/main/res/layout/login.xml
rename to database/v/app/src/main/res/layout/login.xml
diff --git a/数据库/voice/app/src/main/res/layout/main_item.xml b/database/v/app/src/main/res/layout/main_item.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/main_item.xml
rename to database/v/app/src/main/res/layout/main_item.xml
diff --git a/数据库/voice/app/src/main/res/layout/regist.xml b/database/v/app/src/main/res/layout/regist.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/regist.xml
rename to database/v/app/src/main/res/layout/regist.xml
diff --git a/数据库/voice/app/src/main/res/layout/res_password.xml b/database/v/app/src/main/res/layout/res_password.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/layout/res_password.xml
rename to database/v/app/src/main/res/layout/res_password.xml
diff --git a/数据库/voice/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/database/v/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
rename to database/v/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
diff --git a/数据库/voice/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/database/v/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
rename to database/v/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/add.png b/database/v/app/src/main/res/mipmap-hdpi/add.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/add.png
rename to database/v/app/src/main/res/mipmap-hdpi/add.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/add_icon.png b/database/v/app/src/main/res/mipmap-hdpi/add_icon.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/add_icon.png
rename to database/v/app/src/main/res/mipmap-hdpi/add_icon.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/add_space.png b/database/v/app/src/main/res/mipmap-hdpi/add_space.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/add_space.png
rename to database/v/app/src/main/res/mipmap-hdpi/add_space.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/addpost.png b/database/v/app/src/main/res/mipmap-hdpi/addpost.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/addpost.png
rename to database/v/app/src/main/res/mipmap-hdpi/addpost.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/bg.png b/database/v/app/src/main/res/mipmap-hdpi/bg.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/bg.png
rename to database/v/app/src/main/res/mipmap-hdpi/bg.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/blur.png b/database/v/app/src/main/res/mipmap-hdpi/blur.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/blur.png
rename to database/v/app/src/main/res/mipmap-hdpi/blur.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/camera.png b/database/v/app/src/main/res/mipmap-hdpi/camera.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/camera.png
rename to database/v/app/src/main/res/mipmap-hdpi/camera.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/choosehead.png b/database/v/app/src/main/res/mipmap-hdpi/choosehead.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/choosehead.png
rename to database/v/app/src/main/res/mipmap-hdpi/choosehead.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/defhead.png b/database/v/app/src/main/res/mipmap-hdpi/defhead.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/defhead.png
rename to database/v/app/src/main/res/mipmap-hdpi/defhead.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/del.png b/database/v/app/src/main/res/mipmap-hdpi/del.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/del.png
rename to database/v/app/src/main/res/mipmap-hdpi/del.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/down_arrow.png b/database/v/app/src/main/res/mipmap-hdpi/down_arrow.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/down_arrow.png
rename to database/v/app/src/main/res/mipmap-hdpi/down_arrow.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/good_black.png b/database/v/app/src/main/res/mipmap-hdpi/good_black.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/good_black.png
rename to database/v/app/src/main/res/mipmap-hdpi/good_black.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/ic_launcher.png b/database/v/app/src/main/res/mipmap-hdpi/ic_launcher.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/ic_launcher.png
rename to database/v/app/src/main/res/mipmap-hdpi/ic_launcher.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/ic_launcher_round.png b/database/v/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
rename to database/v/app/src/main/res/mipmap-hdpi/ic_launcher_round.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/icon.png b/database/v/app/src/main/res/mipmap-hdpi/icon.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/icon.png
rename to database/v/app/src/main/res/mipmap-hdpi/icon.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/left_arrow.png b/database/v/app/src/main/res/mipmap-hdpi/left_arrow.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/left_arrow.png
rename to database/v/app/src/main/res/mipmap-hdpi/left_arrow.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/phone.png b/database/v/app/src/main/res/mipmap-hdpi/phone.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/phone.png
rename to database/v/app/src/main/res/mipmap-hdpi/phone.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/say.png b/database/v/app/src/main/res/mipmap-hdpi/say.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/say.png
rename to database/v/app/src/main/res/mipmap-hdpi/say.png
diff --git a/数据库/voice/app/src/main/res/mipmap-hdpi/shape.png b/database/v/app/src/main/res/mipmap-hdpi/shape.png
similarity index 100%
rename from 数据库/voice/app/src/main/res/mipmap-hdpi/shape.png
rename to database/v/app/src/main/res/mipmap-hdpi/shape.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-mdpi/ic_launcher.png b/database/v/app/src/main/res/mipmap-mdpi/ic_launcher.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-mdpi/ic_launcher.png
rename to database/v/app/src/main/res/mipmap-mdpi/ic_launcher.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/database/v/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
rename to database/v/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/database/v/app/src/main/res/mipmap-xhdpi/ic_launcher.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-xhdpi/ic_launcher.png
rename to database/v/app/src/main/res/mipmap-xhdpi/ic_launcher.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/database/v/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
rename to database/v/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/database/v/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
rename to database/v/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/database/v/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
rename to database/v/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/database/v/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
rename to database/v/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
diff --git a/FunctionRealize/Record/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/database/v/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
rename to database/v/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
diff --git a/数据库/voice/app/src/main/res/values/colors.xml b/database/v/app/src/main/res/values/colors.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/values/colors.xml
rename to database/v/app/src/main/res/values/colors.xml
diff --git a/FunctionRealize/Record/app/src/main/res/values/dimens.xml b/database/v/app/src/main/res/values/dimens.xml
similarity index 100%
rename from FunctionRealize/Record/app/src/main/res/values/dimens.xml
rename to database/v/app/src/main/res/values/dimens.xml
diff --git a/数据库/voice/app/src/main/res/values/strings.xml b/database/v/app/src/main/res/values/strings.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/values/strings.xml
rename to database/v/app/src/main/res/values/strings.xml
diff --git a/数据库/voice/app/src/main/res/values/styles.xml b/database/v/app/src/main/res/values/styles.xml
similarity index 100%
rename from 数据库/voice/app/src/main/res/values/styles.xml
rename to database/v/app/src/main/res/values/styles.xml
diff --git a/app/src/test/java/com/example/cici/voice/ExampleUnitTest.java b/database/v/app/src/test/java/com/example/cici/voice/ExampleUnitTest.java
similarity index 100%
rename from app/src/test/java/com/example/cici/voice/ExampleUnitTest.java
rename to database/v/app/src/test/java/com/example/cici/voice/ExampleUnitTest.java
diff --git a/数据库/voice/build.gradle b/database/v/build.gradle
similarity index 91%
rename from 数据库/voice/build.gradle
rename to database/v/build.gradle
index ce8bfd3..1cdc6f2 100644
--- a/数据库/voice/build.gradle
+++ b/database/v/build.gradle
@@ -7,7 +7,7 @@ buildscript {
jcenter()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.0.1'
+ classpath 'com.android.tools.build:gradle:3.2.1'
// NOTE: Do not place your application dependencies here; they belong
diff --git a/数据库/voice/gradle.properties b/database/v/gradle.properties
similarity index 99%
rename from 数据库/voice/gradle.properties
rename to database/v/gradle.properties
index 743d692..82618ce 100644
--- a/数据库/voice/gradle.properties
+++ b/database/v/gradle.properties
@@ -11,3 +11,5 @@ org.gradle.jvmargs=-Xmx1536m
# 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
+
+
diff --git a/FunctionRealize/Record/gradle/wrapper/gradle-wrapper.jar b/database/v/gradle/wrapper/gradle-wrapper.jar
similarity index 100%
rename from FunctionRealize/Record/gradle/wrapper/gradle-wrapper.jar
rename to database/v/gradle/wrapper/gradle-wrapper.jar
diff --git a/FunctionRealize/Record/gradle/wrapper/gradle-wrapper.properties b/database/v/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from FunctionRealize/Record/gradle/wrapper/gradle-wrapper.properties
rename to database/v/gradle/wrapper/gradle-wrapper.properties
diff --git a/FunctionRealize/Record/gradlew b/database/v/gradlew
similarity index 100%
rename from FunctionRealize/Record/gradlew
rename to database/v/gradlew
diff --git a/FunctionRealize/Record/gradlew.bat b/database/v/gradlew.bat
similarity index 100%
rename from FunctionRealize/Record/gradlew.bat
rename to database/v/gradlew.bat
diff --git a/FunctionRealize/Record/settings.gradle b/database/v/settings.gradle
similarity index 100%
rename from FunctionRealize/Record/settings.gradle
rename to database/v/settings.gradle
diff --git a/database/voice/.gradle/4.6/fileChanges/last-build.bin b/database/voice/.gradle/4.6/fileChanges/last-build.bin
deleted file mode 100644
index f76dd23..0000000
Binary files a/database/voice/.gradle/4.6/fileChanges/last-build.bin and /dev/null differ
diff --git a/database/voice/.gradle/4.6/fileHashes/fileHashes.bin b/database/voice/.gradle/4.6/fileHashes/fileHashes.bin
deleted file mode 100644
index 2892116..0000000
Binary files a/database/voice/.gradle/4.6/fileHashes/fileHashes.bin and /dev/null differ
diff --git a/database/voice/.gradle/4.6/fileHashes/fileHashes.lock b/database/voice/.gradle/4.6/fileHashes/fileHashes.lock
deleted file mode 100644
index a2a2460..0000000
Binary files a/database/voice/.gradle/4.6/fileHashes/fileHashes.lock and /dev/null differ
diff --git a/database/voice/.gradle/vcsWorkingDirs/gc.properties b/database/voice/.gradle/vcsWorkingDirs/gc.properties
deleted file mode 100644
index e69de29..0000000
diff --git a/database/voice/.idea/modules.xml b/database/voice/.idea/modules.xml
deleted file mode 100644
index 4da8f74..0000000
--- a/database/voice/.idea/modules.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/database/voice/.idea/workspace.xml b/database/voice/.idea/workspace.xml
deleted file mode 100644
index 204de77..0000000
--- a/database/voice/.idea/workspace.xml
+++ /dev/null
@@ -1,404 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 1546569246515
-
-
- 1546569246515
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/database/voice/local.properties b/database/voice/local.properties
deleted file mode 100644
index 4b47795..0000000
--- a/database/voice/local.properties
+++ /dev/null
@@ -1,8 +0,0 @@
-## This file must *NOT* be checked into Version Control Systems,
-# as it contains information specific to your local configuration.
-#
-# Location of the SDK. This is only used by Gradle.
-# For customization when using a Version Control System, please read the
-# header note.
-#Fri Jan 04 10:33:54 CST 2019
-sdk.dir=C\:\\Users\\Administrator\\AppData\\Local\\Android\\Sdk
diff --git a/database/voice/voice.iml b/database/voice/voice.iml
deleted file mode 100644
index 0fe7ea9..0000000
--- a/database/voice/voice.iml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/前端/drawable/add.png b/前端/drawable/add.png
deleted file mode 100644
index 67406dd..0000000
Binary files a/前端/drawable/add.png and /dev/null differ
diff --git a/前端/drawable/adddiary.png b/前端/drawable/adddiary.png
deleted file mode 100644
index 67406dd..0000000
Binary files a/前端/drawable/adddiary.png and /dev/null differ
diff --git a/前端/drawable/addmemo.gif b/前端/drawable/addmemo.gif
deleted file mode 100644
index 86840a3..0000000
Binary files a/前端/drawable/addmemo.gif and /dev/null differ
diff --git a/前端/drawable/allbackground.png b/前端/drawable/allbackground.png
deleted file mode 100644
index 23b82b3..0000000
Binary files a/前端/drawable/allbackground.png and /dev/null differ
diff --git a/前端/drawable/find0.png b/前端/drawable/find0.png
deleted file mode 100644
index a2842de..0000000
Binary files a/前端/drawable/find0.png and /dev/null differ
diff --git a/前端/drawable/find1.png b/前端/drawable/find1.png
deleted file mode 100644
index ad2cca4..0000000
Binary files a/前端/drawable/find1.png and /dev/null differ
diff --git a/前端/drawable/ic_launcher_background.xml b/前端/drawable/ic_launcher_background.xml
deleted file mode 100644
index 2408e30..0000000
--- a/前端/drawable/ic_launcher_background.xml
+++ /dev/null
@@ -1,74 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/前端/drawable/icon.png b/前端/drawable/icon.png
deleted file mode 100644
index bc7ebcf..0000000
Binary files a/前端/drawable/icon.png and /dev/null differ
diff --git a/前端/drawable/index0.png b/前端/drawable/index0.png
deleted file mode 100644
index 861d857..0000000
Binary files a/前端/drawable/index0.png and /dev/null differ
diff --git a/前端/drawable/index1.png b/前端/drawable/index1.png
deleted file mode 100644
index 69a5c4c..0000000
Binary files a/前端/drawable/index1.png and /dev/null differ
diff --git a/前端/drawable/like.png b/前端/drawable/like.png
deleted file mode 100644
index a59f555..0000000
Binary files a/前端/drawable/like.png and /dev/null differ
diff --git a/前端/drawable/like1.png b/前端/drawable/like1.png
deleted file mode 100644
index adcb1d9..0000000
Binary files a/前端/drawable/like1.png and /dev/null differ
diff --git a/前端/drawable/memorecord.png b/前端/drawable/memorecord.png
deleted file mode 100644
index 2e964c5..0000000
Binary files a/前端/drawable/memorecord.png and /dev/null differ
diff --git a/前端/drawable/message0.png b/前端/drawable/message0.png
deleted file mode 100644
index 37643b8..0000000
Binary files a/前端/drawable/message0.png and /dev/null differ
diff --git a/前端/drawable/message1.png b/前端/drawable/message1.png
deleted file mode 100644
index 4b35348..0000000
Binary files a/前端/drawable/message1.png and /dev/null differ
diff --git a/前端/drawable/messagecomment.png b/前端/drawable/messagecomment.png
deleted file mode 100644
index 5af4746..0000000
Binary files a/前端/drawable/messagecomment.png and /dev/null differ
diff --git a/前端/drawable/messagelike.png b/前端/drawable/messagelike.png
deleted file mode 100644
index 80cf876..0000000
Binary files a/前端/drawable/messagelike.png and /dev/null differ
diff --git a/前端/drawable/messagenotify.png b/前端/drawable/messagenotify.png
deleted file mode 100644
index d69c399..0000000
Binary files a/前端/drawable/messagenotify.png and /dev/null differ
diff --git a/前端/drawable/my0.png b/前端/drawable/my0.png
deleted file mode 100644
index 434734b..0000000
Binary files a/前端/drawable/my0.png and /dev/null differ
diff --git a/前端/drawable/my1.png b/前端/drawable/my1.png
deleted file mode 100644
index 9c3d971..0000000
Binary files a/前端/drawable/my1.png and /dev/null differ
diff --git a/前端/drawable/newfans.png b/前端/drawable/newfans.png
deleted file mode 100644
index db13b6b..0000000
Binary files a/前端/drawable/newfans.png and /dev/null differ
diff --git a/前端/drawable/pinglun.png b/前端/drawable/pinglun.png
deleted file mode 100644
index 1b892c7..0000000
Binary files a/前端/drawable/pinglun.png and /dev/null differ
diff --git a/前端/drawable/record0.png b/前端/drawable/record0.png
deleted file mode 100644
index 37c9dee..0000000
Binary files a/前端/drawable/record0.png and /dev/null differ
diff --git a/前端/drawable/record1.png b/前端/drawable/record1.png
deleted file mode 100644
index 7041302..0000000
Binary files a/前端/drawable/record1.png and /dev/null differ
diff --git a/前端/drawable/tongzhi.png b/前端/drawable/tongzhi.png
deleted file mode 100644
index 4130bff..0000000
Binary files a/前端/drawable/tongzhi.png and /dev/null differ
diff --git a/前端/drawable/xiaoxi.png b/前端/drawable/xiaoxi.png
deleted file mode 100644
index 485d68d..0000000
Binary files a/前端/drawable/xiaoxi.png and /dev/null differ
diff --git a/前端/res/add_memo.xml b/前端/res/add_memo.xml
deleted file mode 100644
index fa3c88d..0000000
--- a/前端/res/add_memo.xml
+++ /dev/null
@@ -1,127 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/前端/res/diary.xml b/前端/res/diary.xml
deleted file mode 100644
index 9f307f6..0000000
--- a/前端/res/diary.xml
+++ /dev/null
@@ -1,167 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/前端/res/login.xml b/前端/res/login.xml
deleted file mode 100644
index a7181db..0000000
--- a/前端/res/login.xml
+++ /dev/null
@@ -1,92 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/前端/res/memo.xml b/前端/res/memo.xml
deleted file mode 100644
index f7f2170..0000000
--- a/前端/res/memo.xml
+++ /dev/null
@@ -1,149 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/前端/res/res_password.xml b/前端/res/res_password.xml
deleted file mode 100644
index edf598c..0000000
--- a/前端/res/res_password.xml
+++ /dev/null
@@ -1,101 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/前端/values/colors.xml b/前端/values/colors.xml
deleted file mode 100644
index 69b2233..0000000
--- a/前端/values/colors.xml
+++ /dev/null
@@ -1,6 +0,0 @@
-
-
- #008577
- #00574B
- #D81B60
-
diff --git a/前端/values/strings.xml b/前端/values/strings.xml
deleted file mode 100644
index 9486951..0000000
--- a/前端/values/strings.xml
+++ /dev/null
@@ -1,35 +0,0 @@
-
- 音之轨迹
- 登录
- 忘记密码
- 开始注册
- 注册
- 重置密码
- 确认
- 备忘录
-
- 2018年【测试用】
- 1标题标题标题标题标题标题【测试用】
- 2标题标题标题标题标题标题【测试用】
- 3标题标题标题标题标题标题【测试用】
- 4标题标题标题标题标题标题【测试用】
- 5标题标题标题标题标题标题【测试用】
- 2018年1月1日
- 新建便签
- 完成
- 00:00:00【测试用】
- 00:00:00【测试用】
- 消息
- 评论
- 通知
- 赞
- 新的粉丝
- 首页
- 录音
- 消息
- 消息
- 我的
- 日记列表
- 草稿
- 聊天
-
diff --git a/前端/values/styles.xml b/前端/values/styles.xml
deleted file mode 100644
index 46a6f24..0000000
--- a/前端/values/styles.xml
+++ /dev/null
@@ -1,18 +0,0 @@
-
-
-
-
-
-
diff --git a/前端/voice文档/voice ER图.jpg b/前端/voice文档/voice ER图.jpg
deleted file mode 100644
index 232446a..0000000
Binary files a/前端/voice文档/voice ER图.jpg and /dev/null differ
diff --git a/前端/voice文档/数据字典.docx b/前端/voice文档/数据字典.docx
deleted file mode 100644
index 5abbe46..0000000
Binary files a/前端/voice文档/数据字典.docx and /dev/null differ
diff --git a/前端/voice文档/流程图.png b/前端/voice文档/流程图.png
deleted file mode 100644
index c5ca022..0000000
Binary files a/前端/voice文档/流程图.png and /dev/null differ
diff --git a/前端/voice文档/结构图.png b/前端/voice文档/结构图.png
deleted file mode 100644
index 29bf2a1..0000000
Binary files a/前端/voice文档/结构图.png and /dev/null differ
diff --git a/前端/voice文档/音之轨迹展示.pptx b/前端/voice文档/音之轨迹展示.pptx
deleted file mode 100644
index 96b80e5..0000000
Binary files a/前端/voice文档/音之轨迹展示.pptx and /dev/null differ
diff --git a/前端/voice文档/音之轨迹概要设计说明书.docx b/前端/voice文档/音之轨迹概要设计说明书.docx
deleted file mode 100644
index 9edb6ec..0000000
Binary files a/前端/voice文档/音之轨迹概要设计说明书.docx and /dev/null differ
diff --git a/前端/voice文档/音之轨迹需求规格说明书.docx b/前端/voice文档/音之轨迹需求规格说明书.docx
deleted file mode 100644
index 07d439e..0000000
Binary files a/前端/voice文档/音之轨迹需求规格说明书.docx and /dev/null differ
diff --git a/前端/说明.txt b/前端/说明.txt
deleted file mode 100644
index 34c548d..0000000
--- a/前端/说明.txt
+++ /dev/null
@@ -1,3 +0,0 @@
-ע滹δƣ¼ĽѾʽˡ
-ֻвִ
-valueļܸǣҪֶݹȥ
\ No newline at end of file
diff --git a/数据库/voice/.gitignore b/数据库/voice/.gitignore
deleted file mode 100644
index 5edb4ee..0000000
--- a/数据库/voice/.gitignore
+++ /dev/null
@@ -1,10 +0,0 @@
-*.iml
-.gradle
-/local.properties
-/.idea/libraries
-/.idea/modules.xml
-/.idea/workspace.xml
-.DS_Store
-/build
-/captures
-.externalNativeBuild
diff --git a/数据库/voice/.idea/caches/build_file_checksums.ser b/数据库/voice/.idea/caches/build_file_checksums.ser
deleted file mode 100644
index f972399..0000000
Binary files a/数据库/voice/.idea/caches/build_file_checksums.ser and /dev/null differ
diff --git a/数据库/voice/app/src/androidTest/java/com/example/cici/ExampleInstrumentedTest.java b/数据库/voice/app/src/androidTest/java/com/example/cici/ExampleInstrumentedTest.java
deleted file mode 100644
index 9663a30..0000000
--- a/数据库/voice/app/src/androidTest/java/com/example/cici/ExampleInstrumentedTest.java
+++ /dev/null
@@ -1,26 +0,0 @@
-package com.example.cici;
-
-import android.content.Context;
-import android.support.test.InstrumentationRegistry;
-import android.support.test.runner.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.getTargetContext();
-
- assertEquals("com.example.cici", appContext.getPackageName());
- }
-}
diff --git a/数据库/voice/app/src/main/res/drawable/btn_ra.xml b/数据库/voice/app/src/main/res/drawable/btn_ra.xml
deleted file mode 100644
index bb05465..0000000
--- a/数据库/voice/app/src/main/res/drawable/btn_ra.xml
+++ /dev/null
@@ -1,24 +0,0 @@
-
-
-
-
-
-
-
-
-
-
-
-
-
-
\ No newline at end of file
diff --git a/数据库/voice/app/src/main/res/mipmap-mdpi/ic_launcher.png b/数据库/voice/app/src/main/res/mipmap-mdpi/ic_launcher.png
deleted file mode 100644
index ff10afd..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-mdpi/ic_launcher.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/mipmap-mdpi/ic_launcher_round.png b/数据库/voice/app/src/main/res/mipmap-mdpi/ic_launcher_round.png
deleted file mode 100644
index 115a4c7..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-mdpi/ic_launcher_round.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/数据库/voice/app/src/main/res/mipmap-xhdpi/ic_launcher.png
deleted file mode 100644
index dcd3cd8..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-xhdpi/ic_launcher.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png b/数据库/voice/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png
deleted file mode 100644
index 459ca60..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/数据库/voice/app/src/main/res/mipmap-xxhdpi/ic_launcher.png
deleted file mode 100644
index 8ca12fe..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-xxhdpi/ic_launcher.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png b/数据库/voice/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png
deleted file mode 100644
index 8e19b41..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/数据库/voice/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png
deleted file mode 100644
index b824ebd..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png b/数据库/voice/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png
deleted file mode 100644
index 4c19a13..0000000
Binary files a/数据库/voice/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png and /dev/null differ
diff --git a/数据库/voice/app/src/main/res/values/dimens.xml b/数据库/voice/app/src/main/res/values/dimens.xml
deleted file mode 100644
index 59a0b0c..0000000
--- a/数据库/voice/app/src/main/res/values/dimens.xml
+++ /dev/null
@@ -1,3 +0,0 @@
-
- 16dp
-
diff --git a/数据库/voice/app/src/test/java/com/example/cici/ExampleUnitTest.java b/数据库/voice/app/src/test/java/com/example/cici/ExampleUnitTest.java
deleted file mode 100644
index e998a46..0000000
--- a/数据库/voice/app/src/test/java/com/example/cici/ExampleUnitTest.java
+++ /dev/null
@@ -1,17 +0,0 @@
-package com.example.cici;
-
-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/数据库/voice/gradle/wrapper/gradle-wrapper.jar b/数据库/voice/gradle/wrapper/gradle-wrapper.jar
deleted file mode 100644
index 7a3265e..0000000
Binary files a/数据库/voice/gradle/wrapper/gradle-wrapper.jar and /dev/null differ
diff --git a/数据库/voice/gradle/wrapper/gradle-wrapper.properties b/数据库/voice/gradle/wrapper/gradle-wrapper.properties
deleted file mode 100644
index f8fef3d..0000000
--- a/数据库/voice/gradle/wrapper/gradle-wrapper.properties
+++ /dev/null
@@ -1,6 +0,0 @@
-#Wed Aug 01 09:41:32 CST 2018
-distributionBase=GRADLE_USER_HOME
-distributionPath=wrapper/dists
-zipStoreBase=GRADLE_USER_HOME
-zipStorePath=wrapper/dists
-distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip