first commit

master
dushilian 6 years ago
parent a7bec0bb82
commit 044d06c1eb

Binary file not shown.

After

Width:  |  Height:  |  Size: 130 KiB

@ -0,0 +1,15 @@
版本号1.1.0
本app是一款集语音文字图片于一体的多形式记录载体旨在为用户使用语音记事提供便捷并易于分享。
服务权限:您在使用本软件和/或本服务的过程中,应遵守相关法律法规、用户协议、规则规范等,不得从事包括但不限于以下任何行为,也不得为以下任何行为提供便利:
您在使用本服务时须遵守法律法规,不得制作、复制、发布、传播含有下列内容的信息或从事相关行为,也不得为制作、复制、发布、传播含有下列内容的信息或从事相关行为提供便利:
1反对宪法所确定的基本原则的。
2危害国家安全泄露国家秘密颠覆国家政权破坏国家统一的。
3损害国家荣誉和利益的。
4煽动民族仇恨、民族歧视破坏民族团结的。
5破坏国家宗教政策宣扬邪教和封建迷信的。
6散布谣言扰乱社会秩序破坏社会稳定的。
7散布淫秽、色情、赌博、暴力、凶杀、恐怖或者教唆犯罪的。
8侮辱或者诽谤他人侵害他人合法权益的。
9违反法律法规底线、社会主义制度底线、国家利益底线、公民合法权益底线、社会公共秩序底线、道德风尚底线和信息真实性底线的“七条底线”要求的。
隐私权政策:我们竭尽全力通过合理有效的方法保证用户的所有消息的安全性,隐私性,防止用户的信息泄露,损毁,丢失;我们为您提供便利的信息管理选项,以便您做出合适的选择,管理您的个人信息;我们严格遵照法律法规,保护您的信息传输安全,仅审核公开发表的信息,收集必要的信息。
创作团队由湖南师范大学16级在校生团队制作

@ -0,0 +1,4 @@
首页:
1.备忘录:用于快速记录语音消息和文字备注。主界面可以浏览已有的备忘录消息列表,点击右上角的加号新建一条备忘录记录,点击下方按钮对录音进行操作。
2.日记:提供文字,图片和语音合并记录的形式。主界面可以浏览已有的日记消息列表,点击右下角的悬浮钮新建一条日记记录,选择模板进入编辑模式。
3.共享时刻:支持实时在线阅读共享语音消息的平台。用户可以将语音,文字和图片任意组合并发表,与他人共享精彩时光。主界面可以阅读关注人发表的消息,也可以切换消息界面或个人发表语音记录,点击右上角的加号新建一条语音圈消息。

Binary file not shown.

After

Width:  |  Height:  |  Size: 42 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

@ -0,0 +1,55 @@
<android.support.v7.widget.Toolbar
android:id="@+id/mytoolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light">
</android.support.v7.widget.Toolbar>
package com.example.administrator.test;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout;
import android.support.v7.app.ActionBar;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.MenuItem;
import android.widget.AbsListView;
import android.widget.TextView;
import android.support.v7.widget.Toolbar;
import java.io.IOException;
import java.io.InputStream;
import java.io.UnsupportedEncodingException;
import java.util.Observable;
public class IndexActivity extends AppCompatActivity{
private DrawerLayout mDrawerLayout;
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_index);
Toolbar toolbar=(Toolbar) findViewById(R.id.toolbar) ;
setSupportActionBar(toolbar);
mDrawerLayout=(DrawerLayout) findViewById(R.id.drawer_layout);
ActionBar actionBar=getSupportActionBar();
if (actionBar!=null){
actionBar.setDisplayHomeAsUpEnabled(true);
actionBar.setHomeAsUpIndicator(R.mipmap.mymy);
}
}
public boolean onOptionsItemSelected(MenuItem item){
switch (item.getItemId()){
case android.R.id.home:
mDrawerLayout.openDrawer(GravityCompat.START);
break;
}
return true;
}
}

@ -26,6 +26,16 @@ styles.xml:
2.修改AndroidManifest.xml @android:icon="@drawable/icon"
3. 编译运行即可。
floating
android:srcFAB中显示的图标.
app:backgroundTint正常的背景颜色
app:rippleColor按下时的背景颜色
app:elevation正常的阴影大小
app:pressedTranslationZ按下时的阴影大小
app:layout_anchor设置FAB的锚点即以哪个控件为参照设置位置
app:layout_anchorGravityFAB相对于锚点的位置
app:fabSizeFAB的大小normal或mini分别对应56dp和40dp
横线(horizontal line)
<View
@ -55,6 +65,11 @@ android:background="@android:color/white"/>
android:background="@drawable/backimg"
showAsAction主要有以下几种值可选:always表示永远显示在Toolbar中
如果屏幕空间不够则不显示;ifRoom表示屏幕空间足够的情况下显示在Toolbar中不够的话就显示在菜单当中; never 则表示永远显示在菜单当中。
注意Toolbar 中的action按钮只会显示图标菜单中的action按钮只会显示文字。
整个activity_main.xml内容如下
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

@ -1,126 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground30">
<ImageView
android:id="@+id/butterflypng"
android:layout_width="match_parent"
android:layout_height="96dp"
android:layout_marginBottom="0dp"
android:src="@drawable/but"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/indexmemotext" />
<ImageView
android:id="@+id/indexdiarypng"
android:layout_width="0dp"
android:layout_height="140dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="102dp"
android:layout_marginRight="102dp"
android:layout_marginBottom="8dp"
android:src="@drawable/indexdiary"
app:layout_constraintBottom_toTopOf="@+id/butterflypng"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/indexmemotext"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/indexmyng"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginBottom="8dp"
android:src="@drawable/indexmy"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/indexsharepng"
android:layout_width="0dp"
android:layout_height="0dp"
android:layout_marginTop="312dp"
android:layout_marginBottom="26dp"
android:src="@drawable/indexshare"
app:layout_constraintBottom_toTopOf="@+id/butterflypng"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/indexdiarytext"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/indexmemopng"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:src="@drawable/indexmemo"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/indexmemotext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="52dp"
android:layout_marginLeft="52dp"
android:layout_marginTop="157dp"
android:layout_marginEnd="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="294dp"
android:text="备忘录"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintBottom_toTopOf="@+id/butterflypng"
app:layout_constraintEnd_toEndOf="@+id/indexmemopng"
app:layout_constraintEnd_toStartOf="@+id/indexdiarypng"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/indexdiarytext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="192dp"
android:layout_marginLeft="192dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="12dp"
android:layout_marginRight="12dp"
android:text="日记"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintEnd_toEndOf="@+id/indexdiarypng"
app:layout_constraintEnd_toStartOf="@+id/indexsharepng"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/indexdiarypng"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/indexsharetext"
android:layout_width="83dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="92dp"
android:text="分享时刻"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/indexsharepng"
app:layout_constraintHorizontal_bias="0.836"
app:layout_constraintStart_toStartOf="@+id/indexsharepng"
tools:ignore="MissingConstraints" />
</android.support.constraint.ConstraintLayout>

@ -1,84 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp"
android:background="@drawable/allbackground">
<!-- input account -->
<EditText
android:id="@+id/et_username"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="40dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="用户名"
android:inputType="textPersonName"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/et_pwd"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
<!-- input pwd -->
<EditText
android:id="@+id/et_pwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="40dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<!-- the login button -->
<Button
android:id="@+id/btn_login"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginTop="8dp"
android:background="#e137b7b5"
android:onClick="OnMyLoginClick"
android:text="@string/login"
android:textColor="#fff"
android:textSize="20dp"
app:layout_constraintTop_toBottomOf="@+id/et_pwd"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="5dp" />
<TextView
android:id="@+id/txtStartRegist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginTop="8dp"
android:layout_marginEnd="24dp"
android:layout_marginBottom="76dp"
android:background="#7dfffcfc"
android:clickable="true"
android:gravity="center"
android:onClick="OnMyRegistClick"
android:text="立即注册"
android:textColor="#4352d7"
android:textSize="15sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_login"
tools:ignore="RtlCompat" />
</android.support.constraint.ConstraintLayout>

@ -1,171 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<module external.linked.project.id=":app" external.linked.project.path="$MODULE_DIR$" external.root.project.path="$MODULE_DIR$/.." external.system.id="GRADLE" type="JAVA_MODULE" version="4">
<component name="FacetManager">
<facet type="android-gradle" name="Android-Gradle">
<configuration>
<option name="GRADLE_PROJECT_PATH" value=":app" />
</configuration>
</facet>
<facet type="android" name="Android">
<configuration>
<option name="SELECTED_BUILD_VARIANT" value="debug" />
<option name="ASSEMBLE_TASK_NAME" value="assembleDebug" />
<option name="COMPILE_JAVA_TASK_NAME" value="compileDebugSources" />
<afterSyncTasks>
<task>generateDebugSources</task>
</afterSyncTasks>
<option name="ALLOW_USER_CONFIGURATION" value="false" />
<option name="MANIFEST_FILE_RELATIVE_PATH" value="/src/main/AndroidManifest.xml" />
<option name="RES_FOLDER_RELATIVE_PATH" value="/src/main/res" />
<option name="RES_FOLDERS_RELATIVE_PATH" value="file://$MODULE_DIR$/src/main/res" />
<option name="ASSETS_FOLDER_RELATIVE_PATH" value="/src/main/assets" />
</configuration>
</facet>
</component>
<component name="NewModuleRootManager" LANGUAGE_LEVEL="JDK_1_7">
<output url="file://$MODULE_DIR$/build/intermediates/javac/debug/compileDebugJavaWithJavac/classes" />
<output-test url="file://$MODULE_DIR$/build/intermediates/javac/debugUnitTest/compileDebugUnitTestJavaWithJavac/classes" />
<exclude-output />
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/apt/debug" isTestSource="false" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/not_namespaced_r_class_sources/debug/processDebugResources/r" isTestSource="false" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/aidl/debug" isTestSource="false" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/buildConfig/debug" isTestSource="false" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/rs/debug" isTestSource="false" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/rs/debug" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/resValues/debug" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/apt/androidTest/debug" isTestSource="true" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/not_namespaced_r_class_sources/debugAndroidTest/processDebugAndroidTestResources/r" isTestSource="true" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/aidl/androidTest/debug" isTestSource="true" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/buildConfig/androidTest/debug" isTestSource="true" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/rs/androidTest/debug" isTestSource="true" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/rs/androidTest/debug" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/res/resValues/androidTest/debug" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/build/generated/source/apt/test/debug" isTestSource="true" generated="true" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/res" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/assets" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/aidl" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/rs" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/debug/shaders" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTestDebug/shaders" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/testDebug/shaders" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/main/res" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/main/resources" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/main/assets" type="java-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/main/aidl" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/java" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/rs" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/main/shaders" isTestSource="false" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/androidTest/shaders" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/res" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/resources" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/assets" type="java-test-resource" />
<sourceFolder url="file://$MODULE_DIR$/src/test/aidl" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/java" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/rs" isTestSource="true" />
<sourceFolder url="file://$MODULE_DIR$/src/test/shaders" isTestSource="true" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/annotation_processor_list" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/apk_list" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/blame" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/build-info" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/builds" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/check-libraries" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/check-manifest" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/checkDebugClasspath" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/compatible_screen_manifest" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental-classes" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental-runtime-classes" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/incremental-verifier" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/instant-run-apk" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/instant-run-resources" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/instant_run_merged_manifests" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/instant_run_split_apk_resources" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/javac" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/jniLibs" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/manifest-checker" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/merged_assets" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/merged_manifests" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/prebuild" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/processed_res" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/reload-dex" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/res" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/resources" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/rs" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/shader_assets" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/shaders" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/split-apk" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/split_list" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/symbols" />
<excludeFolder url="file://$MODULE_DIR$/build/intermediates/transforms" />
<excludeFolder url="file://$MODULE_DIR$/build/outputs" />
<excludeFolder url="file://$MODULE_DIR$/build/tmp" />
</content>
<orderEntry type="jdk" jdkName="Android API 28 Platform" jdkType="Android SDK" />
<orderEntry type="sourceFolder" forTests="false" />
<orderEntry type="library" name="Gradle: com.android.support:customview-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:localbroadcastmanager-28.0.0" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test:runner-1.0.2" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-vector-drawable-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:interpolator-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-core-utils-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-core-ui-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:slidingpanelayout-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:viewmodel-1.1.1" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:drawerlayout-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:coordinatorlayout-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:collections:28.0.0@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.squareup:javawriter:2.1.1@jar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:documentfile-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support.constraint:constraint-layout-1.1.3" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:swiperefreshlayout-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:cursoradapter-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:asynclayoutinflater-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:livedata-1.1.1" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.google.code.findbugs:jsr305:2.0.1@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test.espresso:espresso-core-3.0.2" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: javax.inject:javax.inject:1@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.core:common:1.1.1@jar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:versionedparcelable-28.0.0" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: junit:junit:4.12@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: org.hamcrest:hamcrest-core:1.3@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.core:runtime-1.1.1" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:print-28.0.0" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test:monitor-1.0.2" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:loader-28.0.0" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: com.android.support.test.espresso:espresso-idling-resource-3.0.2" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:viewpager-28.0.0" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: org.hamcrest:hamcrest-library:1.3@jar" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: org.hamcrest:hamcrest-integration:1.3@jar" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-fragment-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-annotations:28.0.0@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:common:1.1.1@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:livedata-core-1.1.1" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:support-compat-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:animated-vector-drawable-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support:appcompat-v7-28.0.0" level="project" />
<orderEntry type="library" name="Gradle: com.android.support.constraint:constraint-layout-solver:1.1.3@jar" level="project" />
<orderEntry type="library" name="Gradle: android.arch.lifecycle:runtime-1.1.1" level="project" />
<orderEntry type="library" scope="TEST" name="Gradle: net.sf.kxml:kxml2:2.3.0@jar" level="project" />
</component>
</module>

@ -1,28 +0,0 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.administrator.test"
minSdkVersion 18
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'
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'
}

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

@ -1,26 +0,0 @@
package com.example.administrator.test;
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 <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest {
@Test
public void useAppContext() {
// Context of the app under test.
Context appContext = InstrumentationRegistry.getTargetContext();
assertEquals("com.example.administrator.test", appContext.getPackageName());
}
}

@ -1,21 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.administrator.test">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".IndexActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>

@ -1,13 +0,0 @@
package com.example.administrator.test;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class IndexActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.res_password);
}
}

@ -1,34 +0,0 @@
<vector xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillType="evenOdd"
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
android:strokeWidth="1"
android:strokeColor="#00000000">
<aapt:attr name="android:fillColor">
<gradient
android:endX="78.5885"
android:endY="90.9159"
android:startX="48.7653"
android:startY="61.0927"
android:type="linear">
<item
android:color="#44000000"
android:offset="0.0" />
<item
android:color="#00000000"
android:offset="1.0" />
</gradient>
</aapt:attr>
</path>
<path
android:fillColor="#FFFFFF"
android:fillType="nonZero"
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
android:strokeWidth="1"
android:strokeColor="#00000000" />
</vector>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 468 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 334 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 41 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 46 KiB

@ -1,170 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<vector xmlns:android="http://schemas.android.com/apk/res/android"
android:width="108dp"
android:height="108dp"
android:viewportWidth="108"
android:viewportHeight="108">
<path
android:fillColor="#008577"
android:pathData="M0,0h108v108h-108z" />
<path
android:fillColor="#00000000"
android:pathData="M9,0L9,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,0L19,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,0L29,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,0L39,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,0L49,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,0L59,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,0L69,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,0L79,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M89,0L89,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M99,0L99,108"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,9L108,9"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,19L108,19"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,29L108,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,39L108,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,49L108,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,59L108,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,69L108,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,79L108,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,89L108,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M0,99L108,99"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,29L89,29"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,39L89,39"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,49L89,49"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,59L89,59"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,69L89,69"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M19,79L89,79"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M29,19L29,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M39,19L39,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M49,19L49,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M59,19L59,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M69,19L69,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
<path
android:fillColor="#00000000"
android:pathData="M79,19L79,89"
android:strokeWidth="0.8"
android:strokeColor="#33FFFFFF" />
</vector>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

@ -1,125 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground30">
<ImageView
android:id="@+id/butterflypng"
android:layout_width="463dp"
android:layout_height="99dp"
android:src="@drawable/but"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.493"
app:layout_constraintStart_toStartOf="parent" />
<ImageView
android:id="@+id/indexdiarypng"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="102dp"
android:layout_marginRight="102dp"
android:layout_marginBottom="8dp"
android:src="@drawable/indexdiary"
app:layout_constraintBottom_toTopOf="@+id/butterflypng"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/indexmemotext"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/indexmyng"
android:layout_width="90dp"
android:layout_height="90dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginBottom="8dp"
android:src="@drawable/indexmy"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/indexsharepng"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_marginTop="312dp"
android:layout_marginBottom="26dp"
android:src="@drawable/indexshare"
app:layout_constraintBottom_toTopOf="@+id/butterflypng"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@+id/indexdiarytext"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/indexmemopng"
android:layout_width="140dp"
android:layout_height="140dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:src="@drawable/indexmemo"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/indexmemotext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="52dp"
android:layout_marginLeft="52dp"
android:layout_marginTop="157dp"
android:layout_marginEnd="30dp"
android:layout_marginRight="30dp"
android:layout_marginBottom="294dp"
android:text="备忘录"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintBottom_toTopOf="@+id/butterflypng"
app:layout_constraintEnd_toEndOf="@+id/indexmemopng"
app:layout_constraintEnd_toStartOf="@+id/indexdiarypng"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/indexdiarytext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="192dp"
android:layout_marginLeft="192dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="12dp"
android:layout_marginRight="12dp"
android:text="日记"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintEnd_toEndOf="@+id/indexdiarypng"
app:layout_constraintEnd_toStartOf="@+id/indexsharepng"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/indexdiarypng"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/indexsharetext"
android:layout_width="83dp"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="92dp"
android:text="分享时刻"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/indexsharepng"
app:layout_constraintHorizontal_bias="0.836"
app:layout_constraintStart_toStartOf="@+id/indexsharepng"
tools:ignore="MissingConstraints" />
</android.support.constraint.ConstraintLayout>

@ -1,84 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp"
android:background="@drawable/allbackground">
<!-- input account -->
<EditText
android:id="@+id/et_username"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="40dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="用户名"
android:inputType="textPersonName"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/et_pwd"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
<!-- input pwd -->
<EditText
android:id="@+id/et_pwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="40dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<!-- the login button -->
<Button
android:id="@+id/btn_login"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginTop="8dp"
android:background="#e137b7b5"
android:onClick="OnMyLoginClick"
android:text="@string/login"
android:textColor="#fff"
android:textSize="20dp"
app:layout_constraintTop_toBottomOf="@+id/et_pwd"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="5dp" />
<TextView
android:id="@+id/txtStartRegist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginTop="8dp"
android:layout_marginEnd="24dp"
android:layout_marginBottom="76dp"
android:background="#7dfffcfc"
android:clickable="true"
android:gravity="center"
android:onClick="OnMyRegistClick"
android:text="立即注册"
android:textColor="#4352d7"
android:textSize="15sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btn_login"
tools:ignore="RtlCompat" />
</android.support.constraint.ConstraintLayout>

@ -1,202 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground"
tools:layout_editor_absoluteY="25dp">
<ImageView
android:id="@+id/reg_head"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:src="@mipmap/choosehead"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/tvShowDialog"
android:layout_width="254dp"
android:layout_height="33dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:gravity="center"
android:text="出生年月日"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="17dp"
app:layout_constraintBottom_toTopOf="@+id/tableRow"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editPwd"
tools:ignore="MissingConstraints" />
<EditText
android:id="@+id/editPhone"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_marginStart="8dp"
android:layout_marginTop="12dp"
android:layout_marginEnd="8dp"
android:background="#ceefecec"
android:hint="手机号"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/tableRow"
tools:ignore="MissingConstraints" />
<!-- input password -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/tableRow"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="@+id/editName"
tools:ignore="MissingConstraints" />
<!-- the regist button -->
<Button
android:id="@+id/btnRegist"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginBottom="8dp"
android:background="#e137b7b5"
android:onClick="OnMyRegistClick"
android:text="@string/regist"
android:textColor="#fff"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="5dp" />
<EditText
android:id="@+id/editCode"
android:layout_width="115dp"
android:layout_height="45dp"
android:layout_below="@+id/editPhone"
android:layout_alignStart="@+id/btnRegist"
android:layout_alignLeft="@+id/btnRegist"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:ems="10"
android:hint="请输入验证码"
android:inputType="textPersonName"
app:layout_constraintBottom_toTopOf="@+id/btnRegist"
app:layout_constraintStart_toStartOf="@+id/editPhone"
app:layout_constraintTop_toBottomOf="@+id/tableRow"
tools:ignore="MissingConstraints" />
<Button
android:id="@+id/btnGetcord"
android:layout_width="100dp"
android:layout_height="44dp"
android:layout_alignBaseline="@+id/editCode"
android:layout_alignEnd="@+id/editPhone"
android:layout_alignRight="@+id/editPhone"
android:layout_alignBottom="@+id/editCode"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="@color/colorPrimary"
android:text="获取验证码"
app:layout_constraintBottom_toTopOf="@+id/btnRegist"
app:layout_constraintEnd_toEndOf="@+id/editPhone"
app:layout_constraintStart_toEndOf="@+id/editCode"
app:layout_constraintTop_toBottomOf="@+id/tableRow"
tools:ignore="MissingConstraints" />
<EditText
android:id="@+id/editName"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:background="#ceefecec"
android:ems="10"
android:gravity="center"
android:hint="用户名"
android:inputType="textPersonName"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/reg_head"
tools:ignore="MissingConstraints" />
<TableRow
android:id="@+id/tableRow"
android:layout_width="250dp"
android:layout_height="43dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints">
<TextView
android:layout_width="91dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="性别:"
android:textColor="#000"
android:textSize="17dp" />
<RadioGroup
android:id="@+id/rg"
android:layout_width="225dp"
android:layout_gravity="center_horizontal"
android:orientation="horizontal">
<RadioButton
android:id="@+id/male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="男" />
<RadioButton
android:id="@+id/famle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="女" />
</RadioGroup>
</TableRow>
</android.support.constraint.ConstraintLayout>

@ -1,105 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground"
tools:layout_editor_absoluteY="25dp">
<TextView
android:id="@+id/textView"
style="@style/textstyle"
android:layout_width="match_parent"
android:layout_marginTop="0dp"
android:layout_marginEnd="0dp"
android:background="#deffffff"
android:gravity="center"
android:text="@string/resPwd"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<!-- input phone -->
<EditText
android:id="@+id/editName"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="请输入用户名"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/editResPwd"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
tools:ignore="MissingConstraints" />
<!-- input password -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="请输入新密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/editResPwd"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editName"
tools:ignore="MissingConstraints" />
<!-- input password again -->
<EditText
android:id="@+id/editResPwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="请再次输入新密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
tools:ignore="MissingConstraints" />
<!-- the confirm button -->
<Button
android:id="@+id/btnConfirm"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="#e137b7b5"
android:onClick="OnMyConfirmClick"
android:text="@string/confirm"
android:textColor="#fff"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editResPwd"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="5dp" />
</android.support.constraint.ConstraintLayout>

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

@ -1,5 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
<background android:drawable="@drawable/ic_launcher_background" />
<foreground android:drawable="@drawable/ic_launcher_foreground" />
</adaptive-icon>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

@ -1,7 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="colorPrimary">#008577</color>
<color name="colorPrimaryDark">#00574B</color>
<color name="colorAccent">#D81B60</color>
<color name="white">#fff</color>
</resources>

@ -1,35 +0,0 @@
<resources>
<string name="app_name">音之轨迹</string>
<string name="login">登录</string>
<string name="forgetPwd">忘记密码</string>
<string name="startRegist">开始注册</string>
<string name="regist">注册</string>
<string name="resPwd">重置密码</string>
<string name="memotitle">备忘录</string>
<string name="back"><![CDATA[<返回]]></string>
<string name="data">2018年【测试用】</string>
<string name="memot1">1标题标题标题标题标题标题【测试用】</string>
<string name="memot2">2标题标题标题标题标题标题【测试用】</string>
<string name="memot3">3标题标题标题标题标题标题【测试用】</string>
<string name="memot4">4标题标题标题标题标题标题【测试用】</string>
<string name="memot5">5标题标题标题标题标题标题【测试用】</string>
<string name="data1">2018年1月1日</string>
<string name="addmemotitle">新建便签</string>
<string name="complete">完成</string>
<string name="recordtime1">00:00:00【测试用】</string>
<string name="recordtime2">00:00:00【测试用】</string>
<string name="xiaoxi">消息</string>
<string name="pinglun">评论</string>
<string name="tongzhi">通知</string>
<string name="zan"></string>
<string name="newfan">新的粉丝</string>
<string name="shouyet">首页</string>
<string name="luyint">录音</string>
<string name="xiaoxit">消息</string>
<string name="messagetext">消息</string>
<string name="wodet">我的</string>
<string name="diarytitle">日记列表</string>
<string name="caogao">草稿</string>
<string name="liaotian">聊天</string>
<string name="confirm">重置密码</string>
</resources>

@ -1,34 +0,0 @@
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
<style name="TextView">
<item name="android:layout_width">wrap_content</item>
<item name="android:layout_height">wrap_content</item>
<item name="android:layout_centerHorizontal">true</item>
<item name="android:layout_centerVertical">true</item>
<item name="android:layout_gravity">center</item>
<item name="android:textColor">@color/white</item>
<item name="android:textSize">16sp</item>
</style>
<style name="textstyle">
<item name="android:layout_width">fill_parent</item>
<item name="android:layout_height">50dp</item>
<item name="android:layout_marginLeft">5dp</item>
<item name="android:layout_marginRight">5dp</item>
<item name="android:layout_marginTop">10dp</item>
<item name="android:gravity">center</item>
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>

@ -1,17 +0,0 @@
package com.example.administrator.test;
import org.junit.Test;
import static org.junit.Assert.*;
/**
* Example local unit test, which will execute on the development machine (host).
*
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a>
*/
public class ExampleUnitTest {
@Test
public void addition_isCorrect() {
assertEquals(4, 2 + 2);
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 468 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

@ -1,74 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<vector
android:height="108dp"
android:width="108dp"
android:viewportHeight="108"
android:viewportWidth="108"
xmlns:android="http://schemas.android.com/apk/res/android">
<path android:fillColor="#008577"
android:pathData="M0,0h108v108h-108z"/>
<path android:fillColor="#00000000" android:pathData="M9,0L9,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,0L19,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,0L29,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,0L39,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,0L49,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,0L59,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,0L69,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,0L79,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M89,0L89,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M99,0L99,108"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,9L108,9"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,19L108,19"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,29L108,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,39L108,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,49L108,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,59L108,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,69L108,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,79L108,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,89L108,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M0,99L108,99"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,29L89,29"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,39L89,39"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,49L89,49"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,59L89,59"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,69L89,69"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M19,79L89,79"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M29,19L29,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M39,19L39,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M49,19L49,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M59,19L59,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M69,19L69,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
<path android:fillColor="#00000000" android:pathData="M79,19L79,89"
android:strokeColor="#33FFFFFF" android:strokeWidth="0.8"/>
</vector>

Binary file not shown.

Before

Width:  |  Height:  |  Size: 171 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.7 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 27 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 25 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 12 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

@ -1,137 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent"
>
<RelativeLayout
android:background="@drawable/allbackground"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_weight="20">
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="@android:color/black"/>
</RelativeLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="0dp"
android:outlineAmbientShadowColor="#000"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_weight="2">
<LinearLayout
android:layout_width="32dp"
android:layout_height="52dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="0dp"
android:orientation="vertical">
<ImageView
android:id="@+id/indexpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/index0" />
<TextView
android:id="@+id/indexText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/indexpng"
android:layout_marginTop="1dp"
android:text="首页"
android:textColor="#000" />
/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="88dp"
android:layout_marginLeft="88dp"
android:orientation="vertical">
<ImageView
android:id="@+id/findpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/find1" />
<TextView
android:id="@+id/findtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="发现"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="158dp"
android:layout_marginLeft="88dp">
<ImageView
android:layout_width="60dp"
android:layout_height="50dp"
android:src="@drawable/record0"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="258dp"
android:layout_marginLeft="88dp">
<ImageView
android:id="@+id/messagepng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/message0" />
<TextView
android:id="@+id/messagetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="消息"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="0dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="322dp">
<ImageView
android:id="@+id/mypng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/my0"/>
<TextView
android:id="@+id/mytext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="我的"
android:textColor="#000" />
/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>

@ -1,150 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity"
android:orientation="vertical"
tools:layout_editor_absoluteY="81dp">
<RelativeLayout
android:background="@drawable/allbackground"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_weight="20">
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentTop="true" />
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="@android:color/black"/>
</RelativeLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="0dp"
android:outlineAmbientShadowColor="#000"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_weight="2">
<LinearLayout
android:layout_width="32dp"
android:layout_height="52dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="0dp"
android:orientation="vertical">
<ImageView
android:id="@+id/indexpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/index1"
tools:layout_editor_absoluteX="19dp"
tools:layout_editor_absoluteY="454dp" />
<TextView
android:id="@+id/indexText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/indexpng"
android:layout_marginTop="1dp"
android:text="首页"
android:textColor="#000" />
/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="88dp"
android:layout_marginLeft="88dp"
android:orientation="vertical">
<ImageView
android:id="@+id/findpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/find0" />
<TextView
android:id="@+id/findtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="发现"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="158dp"
android:layout_marginLeft="88dp">
<ImageView
android:layout_width="60dp"
android:layout_height="50dp"
android:src="@drawable/record0"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="258dp"
android:layout_marginLeft="88dp">
<ImageView
android:id="@+id/messagepng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/message0" />
<TextView
android:id="@+id/messagetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="消息"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="0dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="322dp">
<ImageView
android:id="@+id/mypng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/my0"/>
<TextView
android:id="@+id/mytext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="我的"
android:textColor="#000" />
/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>

@ -1,136 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:background="@drawable/allbackground"
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_weight="20">
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="@android:color/black"/>
</RelativeLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="0dp"
android:outlineAmbientShadowColor="#000"/>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_weight="2">
<LinearLayout
android:layout_width="32dp"
android:layout_height="52dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="0dp"
android:orientation="vertical">
<ImageView
android:id="@+id/indexpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/index0" />
<TextView
android:id="@+id/indexText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/indexpng"
android:layout_marginTop="1dp"
android:text="首页"
android:textColor="#000" />
/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="88dp"
android:layout_marginLeft="88dp"
android:orientation="vertical">
<ImageView
android:id="@+id/findpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/find0" />
<TextView
android:id="@+id/findtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="发现"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="158dp"
android:layout_marginLeft="88dp">
<ImageView
android:layout_width="60dp"
android:layout_height="50dp"
android:src="@drawable/record0"/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="258dp"
android:layout_marginLeft="88dp">
<ImageView
android:id="@+id/messagepng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/message1" />
<TextView
android:id="@+id/messagetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="消息"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_marginTop="0dp"
android:layout_marginRight="10dp"
android:layout_marginLeft="322dp">
<ImageView
android:id="@+id/mypng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/my0"/>
<TextView
android:id="@+id/mytext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="我的"
android:textColor="#000" />
/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>

@ -1,176 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="16dp">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="20dp"
android:layout_weight="20"
android:background="@drawable/allbackground">
<ImageView
android:id="@+id/zanpng"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:id="@+id/pinglunpng"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<ImageView
android:id="@+id/tongzhipng"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</RelativeLayout>
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:background="@android:color/black" />
</RelativeLayout>
<View
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="0dp"
android:outlineAmbientShadowColor="#000" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="10dp"
android:layout_weight="2">
<LinearLayout
android:layout_width="32dp"
android:layout_height="52dp"
android:layout_marginLeft="10dp"
android:layout_marginTop="0dp"
android:orientation="vertical">
<ImageView
android:id="@+id/indexpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/index0" />
<TextView
android:id="@+id/indexText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/indexpng"
android:layout_marginTop="1dp"
android:text="首页"
android:textColor="#000" />
/>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="88dp"
android:layout_marginLeft="88dp"
android:orientation="vertical">
<ImageView
android:id="@+id/findpng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/find0" />
<TextView
android:id="@+id/findtext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="发现"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="158dp"
android:layout_marginLeft="88dp">
<ImageView
android:layout_width="60dp"
android:layout_height="50dp"
android:src="@drawable/record0" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentStart="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_marginStart="258dp"
android:layout_marginLeft="88dp"
android:orientation="vertical">
<ImageView
android:id="@+id/messagepng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/message0" />
<TextView
android:id="@+id/messagetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="消息"
android:textColor="#000" />
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="322dp"
android:layout_marginTop="0dp"
android:layout_marginRight="10dp"
android:orientation="vertical">
<ImageView
android:id="@+id/mypng"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/my1" />
<TextView
android:id="@+id/mytext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="0dp"
android:text="我的"
android:textColor="#000" />
/>
</LinearLayout>
</RelativeLayout>
</LinearLayout>
</android.support.constraint.ConstraintLayout>

@ -1,127 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground">
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#fff"
android:orientation="horizontal"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="4dp"
tools:layout_editor_absoluteY="16dp">
<Button
android:layout_width="10dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#fff"
android:gravity="center"
android:text="@string/back"
android:textColor="#000"
android:textSize="17dp" />
<TextView
android:id="@+id/onetext"
android:layout_width="280dp"
android:layout_height="match_parent"
android:gravity="center"
android:padding="10dp"
android:text="@string/addmemotitle"
android:textColor="#000"
android:textSize="22sp" />
<Button
android:layout_width="10dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#fff"
android:gravity="center"
android:text="@string/complete"
android:textColor="#000"
android:textSize="17dp" />
</LinearLayout>
<EditText
android:id="@+id/newmemo"
android:layout_width="match_parent"
android:layout_height="368dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ebf7f7f7"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout" />
<ImageView
android:id="@+id/recordpng1"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="8dp"
android:src="@drawable/memorecord"
app:layout_constraintTop_toBottomOf="@+id/newmemo"
tools:layout_editor_absoluteX="8dp"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/record1"
android:layout_width="302dp"
android:layout_height="37dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ebaea24a"
android:text="@string/recordtime1"
android:textSize="20dp"
android:textColor="#fff"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.862"
app:layout_constraintStart_toStartOf="@+id/recordpng1"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="461dp" />
<ImageView
android:id="@+id/recordpng2"
android:layout_width="50dp"
android:layout_height="50dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:src="@drawable/memorecord"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/recordpng1"
tools:layout_editor_absoluteX="8dp"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/record2"
android:layout_width="302dp"
android:layout_height="37dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ebb79898"
android:text="@string/recordtime2"
android:textColor="#fff"
android:textSize="20dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.878"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="514dp" />
</android.support.constraint.ConstraintLayout>

@ -1,167 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground">
<ImageView
android:id="@+id/adddiarypng"
android:layout_width="55dp"
android:layout_height="52dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="16dp"
android:src="@drawable/adddiary"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.26"
app:layout_constraintStart_toEndOf="@+id/memo5" />
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#fff"
android:orientation="horizontal"
tools:layout_editor_absoluteY="2dp"
tools:ignore="MissingConstraints">
<Button
android:layout_width="10dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#fff"
android:gravity="center"
android:text="@string/back"
android:textColor="#000"
android:textSize="17dp" />
<TextView
android:id="@+id/onetext"
android:layout_width="280dp"
android:layout_height="match_parent"
android:padding="10dp"
android:text="@string/diarytitle"
android:textColor="#000"
android:textSize="22sp"
android:gravity="center"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center">
<Button
android:id="@+id/imageView1"
android:layout_width="60dp"
android:layout_height="match_parent"
android:textSize="17dp"
android:background="#fff"
android:text="@string/caogao"/>
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/memodata"
android:layout_width="match_parent"
android:layout_height="37dp"
android:background="#e5d0ceea"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.506"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="50dp"
android:text="@string/data"
android:textColor="#000"
android:gravity="center"
android:textSize="15dp"/>
<LinearLayout
android:id="@+id/memo1"
android:layout_width="292dp"
android:layout_height="77dp"
android:background="#9fdec1c1"
android:orientation="vertical"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="46dp"
tools:layout_editor_absoluteY="106dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:text="@string/memot1"
android:textColor="#000"
android:textSize="15dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity=""
android:text="@string/data1"
android:textColor="#848181"
android:textSize="15dp" />
</LinearLayout>
<TextView
android:id="@+id/memo2"
android:layout_width="288dp"
android:layout_height="78dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="152dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/memo3"
android:layout_width="291dp"
android:layout_height="78dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="301dp" />
<TextView
android:id="@+id/memo4"
android:layout_width="289dp"
android:layout_height="76dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="340dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/memo5"
android:layout_width="288dp"
android:layout_height="76dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="436dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
tools:ignore="MissingConstraints" />
</android.support.constraint.ConstraintLayout>

@ -1,92 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp"
android:background="@drawable/allbackground">
<!-- input account -->
<EditText
android:id="@+id/editPhone"
style="@style/textstyle"
android:background="#ceefecec"
android:layout_width="fill_parent"
android:hint="手机号"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="10dp"
tools:layout_editor_absoluteY="145dp" />
<!-- input pwd -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:background="#ceefecec"
android:layout_width="fill_parent"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/btnLogin"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.545"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editPhone" />
<!-- the login button -->
<Button
android:id="@+id/btnLogin"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="#e137b7b5"
android:onClick="OnMyLoginClick"
android:text="@string/login"
android:textColor="#ffff"
android:textSize="20dp"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="277dp"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/txtForgetPwd"
android:background="#7dfffcfc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="24dp"
android:layout_marginLeft="24dp"
android:layout_marginBottom="204dp"
android:clickable="true"
android:onClick="OnMyResPwdClick"
android:text="忘记密码"
android:textColor="#4352d7"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/txtStartRegist"
android:background="#7dfffcfc"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginEnd="16dp"
android:layout_marginRight="16dp"
android:layout_marginBottom="200dp"
android:clickable="true"
android:gravity="center"
android:onClick="OnMyRegistClick"
android:text="立即注册"
android:textSize="15sp"
android:textColor="#4352d7"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent" />
</android.support.constraint.ConstraintLayout>

@ -1,149 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground">
<LinearLayout
android:id="@+id/linearLayout"
android:layout_width="match_parent"
android:layout_height="48dp"
android:background="#fff"
android:orientation="horizontal"
tools:layout_editor_absoluteY="2dp"
tools:ignore="MissingConstraints">
<Button
android:layout_width="10dp"
android:layout_height="match_parent"
android:layout_weight="1"
android:background="#fff"
android:gravity="center"
android:text="@string/back"
android:textColor="#000"
android:textSize="17dp" />
<TextView
android:id="@+id/onetext"
android:layout_width="280dp"
android:layout_height="match_parent"
android:padding="10dp"
android:text="@string/memotitle"
android:textColor="#000"
android:textSize="22sp"
android:gravity="center"/>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center">
<ImageView
android:id="@+id/imageView1"
android:layout_width="40dp"
android:layout_height="30dp"
android:src="@drawable/addmemo" />
</LinearLayout>
</LinearLayout>
<TextView
android:id="@+id/memodata"
android:layout_width="match_parent"
android:layout_height="37dp"
android:background="#e5d0ceea"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.506"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="50dp"
android:text="@string/data"
android:textColor="#000"
android:gravity="center"
android:textSize="15dp"/>
<LinearLayout
android:id="@+id/memo1"
android:layout_width="292dp"
android:layout_height="77dp"
android:background="#9fdec1c1"
android:orientation="vertical"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="46dp"
tools:layout_editor_absoluteY="106dp">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left"
android:text="@string/memot1"
android:textColor="#000"
android:textSize="15dp"/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity=""
android:text="@string/data1"
android:textColor="#848181"
android:textSize="15dp" />
</LinearLayout>
<TextView
android:id="@+id/memo2"
android:layout_width="288dp"
android:layout_height="78dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="152dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/memo3"
android:layout_width="291dp"
android:layout_height="78dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="301dp" />
<TextView
android:id="@+id/memo4"
android:layout_width="289dp"
android:layout_height="76dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="340dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/memo5"
android:layout_width="288dp"
android:layout_height="76dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="436dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#9fdec1c1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/linearLayout"
tools:ignore="MissingConstraints" />
</android.support.constraint.ConstraintLayout>

@ -1,308 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="">
<Button
android:id="@+id/messageid"
android:layout_width="wrap_content"
android:layout_height="53dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:background="#f1e5e5"
android:text="@string/messagetext"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<Button
android:id="@+id/talkid"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:text="@string/liaotian"
android:textColor="#000"
android:textSize="20dp"
android:background="#fff"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="1.0"
app:layout_constraintStart_toEndOf="@+id/messageid"
app:layout_constraintTop_toTopOf="parent" />
<ImageView
android:id="@+id/newfansid"
android:layout_width="56dp"
android:layout_height="57dp"
android:src="@drawable/newfans"
tools:layout_editor_absoluteX="11dp"
tools:layout_editor_absoluteY="168dp"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/zanid"
android:layout_width="56dp"
android:layout_height="57dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:src="@drawable/messagelike"
app:layout_constraintEnd_toStartOf="@+id/zan"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="235dp"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/commonid"
android:layout_width="56dp"
android:layout_height="57dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:src="@drawable/messagecomment"
app:layout_constraintEnd_toStartOf="@+id/pinglun"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="298dp"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/notifyid"
android:layout_width="56dp"
android:layout_height="57dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:src="@drawable/messagenotify"
app:layout_constraintEnd_toStartOf="@+id/tongzhi"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="364dp"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/tongzhi"
android:layout_width="295dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:text="@string/tongzhi"
android:textColor="#000"
android:textSize="40dp"
app:layout_constraintBottom_toBottomOf="@+id/line1"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.89"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/pinglun"
android:layout_width="291dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:text="@string/pinglun"
android:textColor="#000"
android:textSize="40dp"
app:layout_constraintBottom_toTopOf="@+id/tongzhi"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.896"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/zan"
android:layout_width="291dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="4dp"
android:text="@string/zan"
android:textColor="#000"
android:textSize="40dp"
app:layout_constraintBottom_toTopOf="@+id/pinglun"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.888"
app:layout_constraintStart_toStartOf="parent" />
<TextView
android:id="@+id/newfans"
android:layout_width="291dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:text="@string/newfan"
android:textColor="#000"
android:textSize="40dp"
app:layout_constraintBottom_toTopOf="@+id/zan"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.896"
app:layout_constraintStart_toStartOf="parent" />
<View
android:id="@+id/line5"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="64dp"
android:background="#fff"
app:layout_constraintBottom_toTopOf="@+id/line4"
tools:ignore="InvalidId,MissingConstraints"
tools:layout_editor_absoluteX="0dp" />
<View
android:id="@+id/line4"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="64dp"
android:background="#000"
app:layout_constraintBottom_toBottomOf="@+id/line3"
tools:ignore="InvalidId,MissingConstraints"
tools:layout_editor_absoluteX="0dp" />
<View
android:id="@+id/line3"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="64dp"
android:background="#000"
app:layout_constraintBottom_toBottomOf="@+id/line2"
tools:ignore="InvalidId,MissingConstraints"
tools:layout_editor_absoluteX="0dp" />
<View
android:id="@+id/line2"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="64dp"
android:background="#000"
app:layout_constraintBottom_toTopOf="@+id/line1"
tools:layout_editor_absoluteX="8dp"
tools:ignore="MissingConstraints" />
<View
android:id="@+id/line1"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginBottom="64dp"
android:background="#000"
app:layout_constraintBottom_toTopOf="@+id/linebutton"
tools:ignore="InvalidId,MissingConstraints"
tools:layout_editor_absoluteX="0dp" />
<View
android:id="@+id/linebutton"
android:layout_width="fill_parent"
android:layout_height="1dp"
android:layout_marginTop="8dp"
android:background="#7e7b7b"
app:layout_constraintBottom_toTopOf="@+id/luyingpng"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintVertical_bias="1.0"
tools:ignore="InvalidId,MissingConstraints"
tools:layout_editor_absoluteX="0dp" />
<ImageView
android:id="@+id/shouyepng"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:src="@drawable/index0"
app:layout_constraintBottom_toTopOf="@+id/shouyet"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints" />
<ImageView
android:id="@+id/luyingpng"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/record0"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="129dp"
tools:layout_editor_absoluteY="491dp" />
<ImageView
android:id="@+id/xiaoxipng"
android:layout_width="40dp"
android:layout_height="40dp"
android:src="@drawable/message0"
app:layout_constraintBottom_toTopOf="@+id/luyint"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="227dp" />
<ImageView
android:id="@+id/wodepng"
android:layout_width="40dp"
android:layout_height="40dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:src="@drawable/my1"
app:layout_constraintBottom_toTopOf="@+id/wodet"
app:layout_constraintEnd_toEndOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/shouyet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="@string/shouyet"
android:textColor="#8a8a8a"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
tools:layout_editor_absoluteX="8dp"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/luyint"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="@string/luyint"
android:textColor="#8a8a8a"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
tools:layout_editor_absoluteX="227dp"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/xiaoxit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="@string/xiaoxit"
android:textColor="#8a8a8a"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="129dp" />
<TextView
android:id="@+id/wodet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
android:text="@string/wodet"
android:textColor="#000"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="336dp" />
</android.support.constraint.ConstraintLayout>

@ -1,117 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground"
tools:layout_editor_absoluteY="81dp">
<EditText
android:id="@+id/editPhone"
style="@style/textstyle"
android:layout_width="271dp"
android:layout_marginTop="104dp"
android:hint="手机号"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.637"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints"
android:background="#ceefecec"/>
<!-- input password -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:background="#ceefecec"
android:layout_width="269dp"
android:layout_marginTop="16dp"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.606"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editName"
tools:ignore="MissingConstraints" />
<!-- the regist button -->
<Button
android:id="@+id/btnRegist"
style="@style/textstyle"
android:layout_width="370dp"
android:layout_height="60dp"
android:layout_marginEnd="4dp"
android:layout_marginRight="4dp"
android:layout_marginBottom="52dp"
android:onClick="OnMyRegistClick"
android:text="@string/regist"
android:textSize="20dp"
android:textColor="#000"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
tools:ignore="MissingConstraints" />
<EditText
android:id="@+id/editCode"
android:background="#ceefecec"
android:layout_width="160dp"
android:layout_height="45dp"
android:layout_below="@+id/editPhone"
android:layout_marginStart="68dp"
android:layout_marginLeft="68dp"
android:layout_marginTop="28dp"
android:layout_marginBottom="8dp"
android:ems="10"
android:hint="请输入验证码"
android:inputType="textPersonName"
app:layout_constraintBottom_toTopOf="@+id/btnRegist"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editPhone"
app:layout_constraintVertical_bias="0.649"
tools:ignore="MissingConstraints" />
<Button
android:id="@+id/btnGetcord"
android:layout_width="100dp"
android:layout_height="44dp"
android:layout_alignBaseline="@+id/editCode"
android:layout_alignBottom="@+id/editCode"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:background="@color/colorPrimary"
android:text="获取验证码"
android:textColor="#fff"
android:textSize="17dp"
app:layout_constraintStart_toEndOf="@+id/editCode"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="322dp" />
<EditText
android:id="@+id/editName"
android:layout_width="271dp"
android:background="#ceefecec"
android:layout_height="48dp"
android:layout_marginTop="184dp"
android:ems="10"
android:gravity="center"
android:hint="用户名"
android:inputType="textPersonName"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.628"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
</android.support.constraint.ConstraintLayout>

@ -1,101 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground">
<TextView
android:id="@+id/textView"
style="@style/textstyle"
android:layout_height="46dp"
android:layout_marginStart="8dp"
android:layout_marginEnd="8dp"
android:gravity="center"
android:text="@string/resPwd"
android:textColor="#0d0c0c"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="parent"
tools:layout_editor_absoluteY="0dp"
tools:ignore="MissingConstraints" />
<!-- input phone -->
<EditText
android:id="@+id/editPhone"
style="@style/textstyle"
android:layout_width="243dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="48dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ceefecec"
android:hint="请输入注册的手机号"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
tools:ignore="MissingConstraints" />
<!-- input password -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:layout_width="245dp"
android:layout_height="49dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="12dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ceefecec"
android:hint="请输入新密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editPhone"
tools:ignore="MissingConstraints" />
<!-- input password again -->
<EditText
android:id="@+id/editResPwd"
style="@style/textstyle"
android:layout_width="244dp"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="16dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ceefecec"
android:hint="请再次输入新密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/editPwd"
tools:ignore="MissingConstraints" />
<!-- the confirm button -->
<Button
android:id="@+id/btnConfirm"
style="@style/textstyle"
android:background="#37b7b5"
android:layout_width="fill_parent"
android:layout_height="56dp"
android:onClick="OnMyConfirmClick"
android:text="@string/confirm"
android:textColor="#fff"
android:textSize="20dp"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="5dp"
tools:layout_editor_absoluteY="314dp" />
</android.support.constraint.ConstraintLayout>

@ -1,102 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp"
android:background="@drawable/allbackground">
<!-- input account -->
<EditText
android:id="@+id/editPhone"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ceefecec"
android:hint="手机号"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="145dp" />
<!-- input pwd -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/btnLogin"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintHorizontal_bias="0.545"
app:layout_constraintStart_toStartOf="@+id/editPhone"
app:layout_constraintTop_toBottomOf="@+id/editPhone" />
<!-- the login button -->
<Button
android:id="@+id/btnLogin"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginLeft="10dp"
android:background="#e137b7b5"
android:onClick="OnMyLoginClick"
android:text="@string/login"
android:textColor="#ffff"
android:textSize="20dp"
app:layout_constraintStart_toStartOf="parent"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="277dp" />
<TextView
android:id="@+id/txtForgetPwd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="204dp"
android:background="#7dfffcfc"
android:clickable="true"
android:onClick="OnMyResPwdClick"
android:text="忘记密码"
android:textColor="#4352d7"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="@+id/btnLogin"
app:layout_constraintTop_toBottomOf="@+id/btnLogin"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/txtStartRegist"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:layout_marginBottom="200dp"
android:background="#7dfffcfc"
android:clickable="true"
android:gravity="center"
android:onClick="OnMyRegistClick"
android:text="立即注册"
android:textColor="#4352d7"
android:textSize="15sp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="@+id/btnLogin"
app:layout_constraintTop_toBottomOf="@+id/btnLogin" />
</android.support.constraint.ConstraintLayout>

@ -1,51 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/back" />
<TextView
android:id="@+id/onetext"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22sp"
android:textColor="#000"
android:padding="10dp"
android:text="@string/memotitle" />
<TextView
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:gravity="center" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="30dp"
android:layout_height="30dp"
android:src="@drawable/addmemo" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground">
</LinearLayout>
</LinearLayout>

@ -1,190 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteY="81dp"
android:background="@drawable/allbackground">
<ImageView
android:id="@+id/reg_head"
android:layout_width="60dp"
android:layout_height="60dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:src="@mipmap/choosehead"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<TextView
android:id="@+id/tvShowDialog"
android:layout_width="254dp"
android:layout_height="33dp"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true"
android:background="#ceefecec"
android:gravity="center"
android:text="出生年月日"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textSize="17dp"
app:layout_constraintEnd_toEndOf="@+id/editPwd"
app:layout_constraintStart_toStartOf="@+id/editPwd"
tools:layout_editor_absoluteY="182dp"
tools:ignore="MissingConstraints" />
<EditText
android:id="@+id/editPhone"
style="@style/textstyle"
android:layout_width="250dp"
android:background="#ceefecec"
android:hint="手机号"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintEnd_toEndOf="@+id/tableRow"
app:layout_constraintStart_toStartOf="@+id/tableRow"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="270dp" />
<!-- input password -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/tvShowDialog"
app:layout_constraintEnd_toEndOf="@+id/editName"
app:layout_constraintStart_toStartOf="@+id/editName"
app:layout_constraintTop_toBottomOf="@+id/editName"
tools:ignore="MissingConstraints" />
<!-- the regist button -->
<Button
android:id="@+id/btnRegist"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
android:background="#e137b7b5"
android:onClick="OnMyRegistClick"
android:text="@string/regist"
android:textColor="#fff"
android:textSize="20dp"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/btnGetcord"
tools:ignore="MissingConstraints" />
<EditText
android:id="@+id/editCode"
android:layout_width="115dp"
android:layout_height="45dp"
android:layout_below="@+id/editPhone"
android:layout_alignStart="@+id/btnRegist"
android:layout_marginStart="8dp"
android:layout_marginLeft="8dp"
android:layout_marginEnd="8dp"
android:layout_marginRight="8dp"
android:background="#ceefecec"
android:ems="10"
android:hint="请输入验证码"
android:inputType="textPersonName"
app:layout_constraintEnd_toStartOf="@+id/btnGetcord"
app:layout_constraintHorizontal_bias="0.0"
app:layout_constraintStart_toStartOf="@+id/editPhone"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="345dp"
android:layout_alignLeft="@+id/btnRegist" />
<Button
android:id="@+id/btnGetcord"
android:layout_width="100dp"
android:layout_height="44dp"
android:layout_alignBaseline="@+id/editCode"
android:layout_alignEnd="@+id/editPhone"
android:layout_alignRight="@+id/editPhone"
android:layout_alignBottom="@+id/editCode"
android:background="@color/colorPrimary"
android:text="获取验证码"
app:layout_constraintEnd_toEndOf="@+id/editPhone"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteY="346dp" />
<EditText
android:id="@+id/editName"
android:layout_width="250dp"
android:layout_height="50dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:background="#ceefecec"
android:ems="10"
android:gravity="center"
android:hint="用户名"
android:inputType="textPersonName"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/reg_head"
tools:ignore="MissingConstraints" />
<TableRow
android:id="@+id/tableRow"
android:layout_width="250dp"
android:layout_height="39dp"
android:background="#ceefecec"
app:layout_constraintEnd_toEndOf="@+id/tvShowDialog"
app:layout_constraintStart_toStartOf="@+id/tvShowDialog"
tools:layout_editor_absoluteY="223dp"
tools:ignore="MissingConstraints">
<TextView
android:layout_width="91dp"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:text="性别:"
android:textColor="#000"
android:textSize="17dp" />
<RadioGroup
android:id="@+id/rg"
android:layout_width="225dp"
android:layout_gravity="center_horizontal"
android:orientation="horizontal">
<RadioButton
android:id="@+id/male"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="男" />
<RadioButton
android:id="@+id/famle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="女" />
</RadioGroup>
</TableRow>
</android.support.constraint.ConstraintLayout>

@ -1,96 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/allbackground">
<TextView
android:id="@+id/textView"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_marginStart="0dp"
android:layout_marginLeft="0dp"
android:layout_marginTop="0dp"
android:layout_marginEnd="0dp"
android:layout_marginRight="8dp"
android:background="#deffffff"
android:gravity="center"
android:text="@string/resPwd"
android:textSize="24sp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
tools:ignore="MissingConstraints" />
<!-- input phone -->
<EditText
android:id="@+id/editName"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="40dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="请输入用户名"
android:inputType="number"
android:lines="1"
android:maxLength="11"
android:singleLine="true"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@+id/textView"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="55dp" />
<!-- input password -->
<EditText
android:id="@+id/editPwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="40dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="请输入新密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/editName"
app:layout_constraintTop_toBottomOf="@+id/textView"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="55dp" />
<!-- input password again -->
<EditText
android:id="@+id/editResPwd"
style="@style/textstyle"
android:layout_width="250dp"
android:layout_height="40dp"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
android:background="#ceefecec"
android:hint="请再次输入新密码"
android:lines="1"
android:maxLength="16"
android:password="true"
android:singleLine="true"
app:layout_constraintBottom_toTopOf="@+id/editName"
app:layout_constraintTop_toBottomOf="@+id/editPwd"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="55dp" />
<!-- the confirm button -->
<Button
android:id="@+id/btnConfirm"
style="@style/textstyle"
android:layout_width="fill_parent"
android:layout_height="50dp"
android:background="#e137b7b5"
android:onClick="OnMyConfirmClick"
android:text="@string/confirm"
android:textColor="#fff"
android:textSize="20dp"
tools:ignore="MissingConstraints"
tools:layout_editor_absoluteX="8dp"
tools:layout_editor_absoluteY="391dp" />
</android.support.constraint.ConstraintLayout>

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

@ -1,29 +0,0 @@
<component name="ProjectCodeStyleConfiguration">
<code_scheme name="Project" version="173">
<Objective-C-extensions>
<file>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Import" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Macro" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Typedef" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Enum" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Constant" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Global" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Struct" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="FunctionPredecl" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Function" />
</file>
<class>
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Property" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="Synthesize" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InitMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="StaticMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="InstanceMethod" />
<option name="com.jetbrains.cidr.lang.util.OCDeclarationKind" value="DeallocMethod" />
</class>
<extensions>
<pair source="cpp" header="h" fileNamingConvention="NONE" />
<pair source="c" header="h" fileNamingConvention="NONE" />
</extensions>
</Objective-C-extensions>
</code_scheme>
</component>

@ -1,18 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="GradleSettings">
<option name="linkedExternalProjectsSettings">
<GradleProjectSettings>
<option name="distributionType" value="DEFAULT_WRAPPED" />
<option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="modules">
<set>
<option value="$PROJECT_DIR$" />
<option value="$PROJECT_DIR$/app" />
</set>
</option>
<option name="resolveModulePerSourceSet" value="false" />
</GradleProjectSettings>
</option>
</component>
</project>

@ -1,38 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="NullableNotNullManager">
<option name="myDefaultNullable" value="android.support.annotation.Nullable" />
<option name="myDefaultNotNull" value="android.support.annotation.NonNull" />
<option name="myNullables">
<value>
<list size="7">
<item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.Nullable" />
<item index="1" class="java.lang.String" itemvalue="javax.annotation.Nullable" />
<item index="2" class="java.lang.String" itemvalue="javax.annotation.CheckForNull" />
<item index="3" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.Nullable" />
<item index="4" class="java.lang.String" itemvalue="android.support.annotation.Nullable" />
<item index="5" class="java.lang.String" itemvalue="androidx.annotation.Nullable" />
<item index="6" class="java.lang.String" itemvalue="androidx.annotation.RecentlyNullable" />
</list>
</value>
</option>
<option name="myNotNulls">
<value>
<list size="6">
<item index="0" class="java.lang.String" itemvalue="org.jetbrains.annotations.NotNull" />
<item index="1" class="java.lang.String" itemvalue="javax.annotation.Nonnull" />
<item index="2" class="java.lang.String" itemvalue="edu.umd.cs.findbugs.annotations.NonNull" />
<item index="3" class="java.lang.String" itemvalue="android.support.annotation.NonNull" />
<item index="4" class="java.lang.String" itemvalue="androidx.annotation.NonNull" />
<item index="5" class="java.lang.String" itemvalue="androidx.annotation.RecentlyNonNull" />
</list>
</value>
</option>
</component>
<component name="ProjectRootManager" version="2" languageLevel="JDK_1_8" project-jdk-name="1.8" project-jdk-type="JavaSDK">
<output url="file://$PROJECT_DIR$/build/classes" />
</component>
<component name="ProjectType">
<option name="id" value="Android" />
</component>
</project>

@ -1,12 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="RunConfigurationProducerService">
<option name="ignoredProducers">
<set>
<option value="org.jetbrains.plugins.gradle.execution.test.runner.AllInPackageGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestClassGradleConfigurationProducer" />
<option value="org.jetbrains.plugins.gradle.execution.test.runner.TestMethodGradleConfigurationProducer" />
</set>
</option>
</component>
</project>

@ -1,28 +0,0 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.example.administrator.test"
minSdkVersion 18
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'
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'
}

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

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save