diff --git a/AndroidStudioProjects/.gitignore b/AndroidStudioProjects/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..0bfb13f474940f7034dcbc0894f0ea6898928946
--- /dev/null
+++ b/AndroidStudioProjects/.gitignore
@@ -0,0 +1,21 @@
+*.iml
+.gradle
+/local.properties
+/.idea
+.idea/caches/build_file_checksums.ser
+/.idea/libraries
+/.idea/modules.xml
+/.idea/workspace.xml
+.idea
+/.idea
+/.idea/vcs.xml
+/.idea/misc.xml
+.DS_Store
+/build
+/captures
+.externalNativeBuild
+/README.md
+/apk
+*.apk
+*.zip
+.idea/
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/.gitignore b/AndroidStudioProjects/app/.gitignore
new file mode 100644
index 0000000000000000000000000000000000000000..42afabfd2abebf31384ca7797186a27a4b7dbee8
--- /dev/null
+++ b/AndroidStudioProjects/app/.gitignore
@@ -0,0 +1 @@
+/build
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/build.gradle b/AndroidStudioProjects/app/build.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..2e1c5b1f82d9929464c2519e97fbabef5f76c30f
--- /dev/null
+++ b/AndroidStudioProjects/app/build.gradle
@@ -0,0 +1,38 @@
+plugins {
+ id 'com.android.application'
+}
+
+android {
+ compileSdk 31
+
+ defaultConfig {
+ applicationId "com.example.myapplication"
+ minSdk 21
+ targetSdk 31
+ versionCode 1
+ versionName "1.0"
+
+ testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
+ }
+
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
+ }
+ compileOptions {
+ sourceCompatibility JavaVersion.VERSION_1_8
+ targetCompatibility JavaVersion.VERSION_1_8
+ }
+}
+
+dependencies {
+
+ implementation 'androidx.appcompat:appcompat:1.2.0'
+ implementation 'com.google.android.material:material:1.3.0'
+ implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
+ testImplementation 'junit:junit:4.+'
+ androidTestImplementation 'androidx.test.ext:junit:1.1.2'
+ androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
+}
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/proguard-rules.pro b/AndroidStudioProjects/app/proguard-rules.pro
new file mode 100644
index 0000000000000000000000000000000000000000..481bb434814107eb79d7a30b676d344b0df2f8ce
--- /dev/null
+++ b/AndroidStudioProjects/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Add project specific ProGuard rules here.
+# You can control the set of applied configuration files using the
+# proguardFiles setting in build.gradle.
+#
+# For more details, see
+# http://developer.android.com/guide/developing/tools/proguard.html
+
+# If your project uses WebView with JS, uncomment the following
+# and specify the fully qualified class name to the JavaScript interface
+# class:
+#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
+# public *;
+#}
+
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/release/app-release.apk b/AndroidStudioProjects/app/release/app-release.apk
new file mode 100644
index 0000000000000000000000000000000000000000..e619d317c9d761b2c02dc8c5fa2f84a3bd5f579e
Binary files /dev/null and b/AndroidStudioProjects/app/release/app-release.apk differ
diff --git a/AndroidStudioProjects/app/release/output-metadata.json b/AndroidStudioProjects/app/release/output-metadata.json
new file mode 100644
index 0000000000000000000000000000000000000000..0eb5fde04801f55a01514421f0b76a639253cdbc
--- /dev/null
+++ b/AndroidStudioProjects/app/release/output-metadata.json
@@ -0,0 +1,20 @@
+{
+ "version": 3,
+ "artifactType": {
+ "type": "APK",
+ "kind": "Directory"
+ },
+ "applicationId": "com.example.myapplication",
+ "variantName": "release",
+ "elements": [
+ {
+ "type": "SINGLE",
+ "filters": [],
+ "attributes": [],
+ "versionCode": 1,
+ "versionName": "1.0",
+ "outputFile": "app-release.apk"
+ }
+ ],
+ "elementType": "File"
+}
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java b/AndroidStudioProjects/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..982ba517a4b447bebc00ed3d1e784228226aef3b
--- /dev/null
+++ b/AndroidStudioProjects/app/src/androidTest/java/com/example/myapplication/ExampleInstrumentedTest.java
@@ -0,0 +1,26 @@
+package com.example.myapplication;
+
+import android.content.Context;
+
+import androidx.test.platform.app.InstrumentationRegistry;
+import androidx.test.ext.junit.runners.AndroidJUnit4;
+
+import org.junit.Test;
+import org.junit.runner.RunWith;
+
+import static org.junit.Assert.*;
+
+/**
+ * Instrumented test, which will execute on an Android device.
+ *
+ * @see Testing documentation
+ */
+@RunWith(AndroidJUnit4.class)
+public class ExampleInstrumentedTest {
+ @Test
+ public void useAppContext() {
+ // Context of the app under test.
+ Context appContext = InstrumentationRegistry.getInstrumentation().getTargetContext();
+ assertEquals("com.example.myapplication", appContext.getPackageName());
+ }
+}
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/AndroidManifest.xml b/AndroidStudioProjects/app/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..0a2ce869d17e93356f9909bc6c7564739eefe198
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/AndroidManifest.xml
@@ -0,0 +1,24 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/java/com/example/myapplication/ClearEditText.java b/AndroidStudioProjects/app/src/main/java/com/example/myapplication/ClearEditText.java
new file mode 100644
index 0000000000000000000000000000000000000000..6561a7d70429d7d62c10c6a039aafbaec6e2fa7e
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/java/com/example/myapplication/ClearEditText.java
@@ -0,0 +1,296 @@
+//package com.example.myapplication;
+//
+//
+//import android.animation.ObjectAnimator;
+//import android.content.Context;
+//import android.content.res.TypedArray;
+//import android.graphics.Color;
+//import android.text.Editable;
+//import android.text.InputFilter;
+//import android.text.InputType;
+//import android.text.TextWatcher;
+//import android.text.method.HideReturnsTransformationMethod;
+//import android.text.method.PasswordTransformationMethod;
+//import android.util.AttributeSet;
+//import android.util.TypedValue;
+//import android.view.View;
+//import android.view.animation.AnimationUtils;
+//import android.widget.EditText;
+//import android.widget.ImageView;
+//import android.widget.RelativeLayout;
+//
+//import androidx.viewpager.widget.ViewPager;
+//
+//public class ClearEditText extends RelativeLayout {
+// private ImageView ivLeftIcon;
+// private EditText myEdie;
+// private ImageView ivEditClean;
+// private ImageView ivEditEye;
+// private boolean isChecked = true;
+// private Context mContext;
+// private TypedArray mTypedArray;
+// private boolean showClean = true;//清空图标是否显示,true:显示
+// private boolean showEye = false;//密码可见图标是否显示,true:显示
+// private int drawableLeft = -1;//是否显示输入框左侧图片
+// private int drawableEyeOpen = R.drawable.clear_icon_eye_open;//可以看见密码小眼睛样式
+// private int drawableEyeClose = R.drawable.clear_icon_eye_close;//不可见密码小眼睛样式
+// private int drawableClean = R.drawable.clear_icon_close;//清除按钮图片
+// private int cleanPadding = 0;//清除按钮padding边距
+// private String hintStr;
+// private String textStr;
+// private int mTextColorHint = Color.BLACK;
+// private int mTextColor = Color.BLACK;
+// private int mTextSize = -1;
+// private int mMaxLength = 2000;
+// private int mMaxLines = 1;
+// private int mInputType = 0;//输入类型,就做了不限制、数字、文本密码三种
+// private boolean isInput = false;//输入1个字符后更改状态为true,保证小眼睛移动一次
+// private boolean isHideClean = false;//输入字符后,清除了需要小眼睛归为,清除按钮隐藏
+// private int ivWidth = 45;//关闭按钮的宽度
+//
+// public ClearEditText(Context context) {
+// super(context);
+// mContext = context;
+// initView();
+// }
+//
+// public ClearEditText(Context context, AttributeSet attrs, int defStyle) {
+// super(context, attrs, defStyle);
+// mContext = context;
+// mTypedArray = mContext.obtainStyledAttributes(attrs, R.styleable.myEditText);
+// initView();
+// }
+//
+// public ClearEditText(Context context, AttributeSet attrs) {
+// super(context, attrs);
+// mContext = context;
+// mTypedArray = mContext.obtainStyledAttributes(attrs, R.styleable.myEditText);
+// showClean = mTypedArray.getBoolean(R.styleable.myEditText_showClean, showClean);
+// drawableClean = mTypedArray.getResourceId(R.styleable.myEditText_drawableClean, drawableClean);
+// cleanPadding = mTypedArray.getDimensionPixelSize(R.styleable.myEditText_cleanPadding, cleanPadding);
+//
+// showEye = mTypedArray.getBoolean(R.styleable.myEditText_showEye, showEye);
+// drawableLeft = mTypedArray.getResourceId(R.styleable.myEditText_drawableLeft, -1);
+// drawableEyeClose = mTypedArray.getResourceId(R.styleable.myEditText_drawableEyeClose, drawableEyeClose);
+// drawableEyeOpen = mTypedArray.getResourceId(R.styleable.myEditText_drawableEyeOpen, drawableEyeOpen);
+//
+// hintStr = mTypedArray.getString(R.styleable.myEditText_hint);
+// textStr = mTypedArray.getString(R.styleable.myEditText_text);
+// mTextColorHint = mTypedArray.getColor(R.styleable.myEditText_textColorHint, mTextColorHint);
+// mTextColor = mTypedArray.getColor(R.styleable.myEditText_textColor, mTextColor);
+// mTextSize = mTypedArray.getDimensionPixelSize(R.styleable.myEditText_textSize, mTextSize);
+// mMaxLength = mTypedArray.getInteger(R.styleable.myEditText_maxLength, mMaxLength);
+// mMaxLines = mTypedArray.getDimensionPixelSize(R.styleable.myEditText_maxLines, mMaxLines);
+// mInputType = mTypedArray.getInteger(R.styleable.myEditText_inputType, mInputType);
+//
+// mTypedArray.recycle();
+// initView();
+// }
+//
+// // 初始化视图
+// private void initView() {
+// View view = View.inflate(getContext(), R.layout.clear_layout_view, null);
+// ivLeftIcon = (ImageView) view.findViewById(R.id.iv_edit_left_icon);
+// myEdie = (EditText) view.findViewById(R.id.view_edit_show);
+// ivEditClean = (ImageView) view.findViewById(R.id.iv_edit_clean);
+// ivEditEye = (ImageView) view.findViewById(R.id.iv_edit_eye);
+//
+// myEdie.setHint(hintStr);
+// myEdie.setHintTextColor(mTextColorHint);
+// myEdie.setText(textStr);
+// myEdie.setTextColor(mTextColor);
+// myEdie.setMaxLines(mMaxLines);
+// myEdie.setFilters(new InputFilter[]{new InputFilter.LengthFilter(mMaxLength)});
+// if (mTextSize != -1) {
+// myEdie.setTextSize(TypedValue.COMPLEX_UNIT_PX, mTextSize);
+// } else {
+// myEdie.setTextSize(15);
+// }
+// if (mInputType == 1) {
+// myEdie.setInputType(InputType.TYPE_CLASS_NUMBER);
+// } else if (mInputType == 2) {
+// myEdie.setInputType(InputType.TYPE_TEXT_VARIATION_PASSWORD | InputType.TYPE_CLASS_TEXT);
+// } else {
+// myEdie.setInputType(InputType.TYPE_NUMBER_VARIATION_NORMAL | InputType.TYPE_CLASS_TEXT);
+// }
+// if (showEye) {
+// myEdie.setTransformationMethod(new AsteriskPasswordTransformationMethod());
+// }
+// if (showClean && showEye) {
+// int left = myEdie.getPaddingLeft();
+// int top = myEdie.getPaddingTop();
+// int bottom = myEdie.getPaddingBottom();
+// myEdie.setPadding(left, top, Utils.dp2px(mContext, 90), bottom);
+// } else if (!showClean && !showEye) {
+// int left = myEdie.getPaddingLeft();
+// int top = myEdie.getPaddingTop();
+// int right = myEdie.getPaddingRight();
+// int bottom = myEdie.getPaddingBottom();
+// myEdie.setPadding(left, top, right, bottom);
+// } else {
+// int left = myEdie.getPaddingLeft();
+// int top = myEdie.getPaddingTop();
+// int bottom = myEdie.getPaddingBottom();
+// myEdie.setPadding(left, top, Utils.dp2px(mContext, 45), bottom);
+// }
+//
+// myEdie.addTextChangedListener(new TextWatcher() {
+// @Override
+// public void beforeTextChanged(CharSequence s, int start, int count, int after) {
+//
+// }
+//
+// @Override
+// public void onTextChanged(CharSequence s, int start, int before, int count) {
+// if (s.length() > 0) {
+// isHideClean = false;
+// }
+// }
+//
+// @Override
+// public void afterTextChanged(Editable s) {
+// if (s.length() > 0 && !isInput) {//输入字符大于0且只有一个字符时候显示清除按钮动画,小眼睛移动出位置给清除按钮使用
+// showEditClean();
+// moveEditEye();
+// isInput = true;
+// } else if (s.length() == 0) {//无字符小眼睛归位
+// UndoEditEye();
+// }
+// if (s.length() == 0 & !isHideClean) {
+// hideEditClean();
+// isHideClean = true;
+// isInput = false;
+// }
+// if (onEditInputListener != null) {
+// onEditInputListener.input(getText());
+// }
+// }
+// });
+//
+// setEditClean(showClean);
+// ivEditClean.setOnClickListener(new OnClickListener() {
+// @Override
+// public void onClick(View v) {
+// myEdie.setText("");
+// }
+// });
+// ivEditClean.setImageResource(drawableClean);
+// ivEditClean.setPadding(cleanPadding, cleanPadding, cleanPadding, cleanPadding);
+//
+// setEditEye(showEye);
+// ivEditEye.setOnClickListener(new OnClickListener() {
+// @Override
+// public void onClick(View v) {
+// if (isChecked) {
+// // 输入一个对用户可见的密码
+// myEdie.setTransformationMethod(HideReturnsTransformationMethod.getInstance());
+// myEdie.setSelection(getText().length());
+// ivEditEye.setImageResource(drawableEyeOpen);
+// isChecked = false;
+// } else {
+// // 输入一个对用户不可见的密码
+// myEdie.setTransformationMethod(new AsteriskPasswordTransformationMethod());
+// myEdie.setSelection(getText().length());
+// ivEditEye.setImageResource(drawableEyeClose);
+// isChecked = true;
+// }
+// }
+// });
+// if (drawableLeft != -1) {
+// ivLeftIcon.setVisibility(View.VISIBLE);
+// ivLeftIcon.setImageResource(drawableLeft);
+// } else {
+// ivLeftIcon.setVisibility(View.GONE);
+// }
+// view.setLayoutParams(new LayoutParams(ViewPager.LayoutParams.MATCH_PARENT, ViewPager.LayoutParams.WRAP_CONTENT));
+// addView(view);
+// }
+//
+// //密码不可见时候,使用*替换密码
+// public class AsteriskPasswordTransformationMethod extends PasswordTransformationMethod {
+// @Override
+// public CharSequence getTransformation(CharSequence source, View view) {
+// return new PasswordCharSequence(source);
+// }
+//
+// private class PasswordCharSequence implements CharSequence {
+//
+// private CharSequence mSource;
+//
+// public PasswordCharSequence(CharSequence source) {
+// mSource = source; // Store char sequence
+// }
+//
+// public char charAt(int index) {
+// return '*'; // This is the important part
+// }
+//
+// public int length() {
+// return mSource.length(); // Return default
+// }
+//
+// public CharSequence subSequence(int start, int end) {
+// return mSource.subSequence(start, end); // Return default
+// }
+// }
+//
+// }
+//
+// public String getText() {
+// return myEdie.getText().toString().trim();
+// }
+//
+// public void setText(String text) {
+// myEdie.setText(text);
+// }
+//
+// //代码设置是否显示清除按钮
+// public void setEditClean(boolean isCanClose) {
+// showClean = isCanClose;
+// }
+//
+// //代码设置是否显示小眼睛
+// public void setEditEye(boolean isCanSee) {
+// showEye = isCanSee;
+// if (showEye == true) {
+// ivEditEye.setVisibility(View.VISIBLE);
+// } else {
+// ivEditEye.setVisibility(View.GONE);
+// }
+// }
+//
+// private void showEditClean() {
+// if (showClean == true) {
+// AnimationUtils.showAndHiddenCenterAnimation(ivEditClean, AnimationUtils.AnimationState.STATE_SHOW, 500);
+// }
+// }
+//
+// private void hideEditClean() {
+// if (showClean == true) {
+// AnimationUtils.showAndHiddenCenterAnimation(ivEditClean, AnimationUtils.AnimationState.STATE_HIDDEN, 500);
+// }
+// }
+//
+// private void moveEditEye() {
+// if (showEye) {
+// ObjectAnimator.ofFloat(ivEditEye, "translationX", -Utils.dp2px(mContext, ivWidth)).setDuration(500).start();
+// }
+// }
+//
+// private void UndoEditEye() {
+// if (showEye) {
+// ObjectAnimator.ofFloat(ivEditEye, "translationX", 0).setDuration(500).start();
+// }
+// }
+//
+// public OnEditInputListener onEditInputListener;
+//
+// public void setOnEditInputListener(OnEditInputListener listener) {
+// onEditInputListener = listener;
+// }
+// //输入监听
+// public interface OnEditInputListener {
+// void input(String content);
+// }
+//
+//}
diff --git a/AndroidStudioProjects/app/src/main/java/com/example/myapplication/GlobalValue.java b/AndroidStudioProjects/app/src/main/java/com/example/myapplication/GlobalValue.java
new file mode 100644
index 0000000000000000000000000000000000000000..c47ce0accb255d2d2c9f5c4617070281fe508643
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/java/com/example/myapplication/GlobalValue.java
@@ -0,0 +1,12 @@
+package com.example.myapplication;
+
+public class GlobalValue {
+ private boolean isCheck;
+ public boolean isCheck() {
+ return isCheck;
+ }
+ public void setCheck(boolean check) {
+ isCheck = check;
+ }
+
+}
diff --git a/AndroidStudioProjects/app/src/main/java/com/example/myapplication/MainActivity.java b/AndroidStudioProjects/app/src/main/java/com/example/myapplication/MainActivity.java
new file mode 100644
index 0000000000000000000000000000000000000000..9ecef70c492548963b5b456d1371bd0ff6c4a867
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/java/com/example/myapplication/MainActivity.java
@@ -0,0 +1,78 @@
+package com.example.myapplication;
+
+import androidx.appcompat.app.AppCompatActivity;
+
+import android.graphics.drawable.Drawable;
+import android.os.Bundle;
+import android.provider.Settings;
+import android.view.View;
+import android.view.inputmethod.EditorInfo;
+import android.widget.EditText;
+import android.widget.RadioButton;
+import android.widget.RadioGroup;
+
+public class MainActivity extends AppCompatActivity {
+ @Override
+ protected void onCreate(Bundle savedInstanceState) {
+ super.onCreate(savedInstanceState);
+ setContentView(R.layout.activity_main);
+ EditText useName=(EditText) findViewById(R.id.input_id);
+ EditText password=(EditText) findViewById(R.id.input_password);
+ Drawable drawable1=getResources().getDrawable(R.mipmap.user_icno);
+ Drawable drawable2=getResources().getDrawable(R.mipmap.lock_icon);
+ drawable1.setBounds(0,0,75,75);
+ drawable2.setBounds(0,0,75,75);
+ useName.setCompoundDrawables(drawable1,null,null,null);
+ password.setCompoundDrawables(drawable2,null,null,null);
+
+
+
+
+ final RadioButton rb_bug = (RadioButton) findViewById(R.id.remeber_button);
+ final GlobalValue globalValue=new GlobalValue();
+
+ rb_bug.setOnClickListener(new View.OnClickListener() {
+ @Override
+ public void onClick(View v) {
+ boolean isCheck=globalValue.isCheck();
+ if (isCheck){
+ if(v==rb_bug)
+ rb_bug.setChecked(false);
+ }else {
+ if(v==rb_bug)
+ rb_bug.setChecked(true);
+ }
+ globalValue.setCheck(!isCheck);
+ }
+
+ });
+// final int InputType_PSW_Hide = EditorInfo.TYPE_CLASS_TEXT | EditorInfo.TYPE_TEXT_VARIATION_PASSWORD;// 129
+// final int InputType_PSW_Visible = EditorInfo.TYPE_CLASS_TEXT | EditorInfo.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD;//145
+//
+// //设置密码可见
+// public void setPasswordVisibility (EditText editText, boolean setVisible)
+// {
+// if (null != editText)
+// {
+// int selectionEnd = editText.getSelectionEnd();
+// int length = editText.getText().toString().length();
+//
+// int inputType = editText.getInputType();
+// if (inputType == InputType_PSW_Hide || inputType == InputType_PSW_Visible)
+// {
+// editText.setInputType(setVisible ? InputType_PSW_Visible : InputType_PSW_Hide);
+// } else
+// {
+// editText.setTransformationMethod(setVisible ? HideReturnsTransformationMethod.getInstance() : PasswordTransformationMethod.getInstance());
+// }
+//
+// editText.setSelection((Math.min(selectionEnd, length)));
+// //执行上面的代码后光标会处于输入框的最前方-->重置光标位置
+// }
+// }
+
+
+
+
+ }
+}
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/drawable/draw1.xml b/AndroidStudioProjects/app/src/main/res/drawable/draw1.xml
new file mode 100644
index 0000000000000000000000000000000000000000..927afc3c416bb9de0128c53d99e99173f844b02d
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/drawable/draw1.xml
@@ -0,0 +1,23 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/drawable/ic_launcher_background.xml b/AndroidStudioProjects/app/src/main/res/drawable/ic_launcher_background.xml
new file mode 100644
index 0000000000000000000000000000000000000000..07d5da9cbf141911847041df5d7b87f0dd5ef9d4
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/drawable/ic_launcher_background.xml
@@ -0,0 +1,170 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/AndroidStudioProjects/app/src/main/res/drawable/ic_launcher_foreground.xml b/AndroidStudioProjects/app/src/main/res/drawable/ic_launcher_foreground.xml
new file mode 100644
index 0000000000000000000000000000000000000000..a8b409b1d1a67ab9d6be93a1920501644837a571
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/drawable/ic_launcher_foreground.xml
@@ -0,0 +1,4 @@
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/drawable/img.xml b/AndroidStudioProjects/app/src/main/res/drawable/img.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ed0ec22dc958465fd413c28fd617cdaeaa53369b
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/drawable/img.xml
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/drawable/login.xml b/AndroidStudioProjects/app/src/main/res/drawable/login.xml
new file mode 100644
index 0000000000000000000000000000000000000000..49bdb3cad3516db8c7f51059f5726418f9718d8e
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/drawable/login.xml
@@ -0,0 +1,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/layout/activity_main.xml b/AndroidStudioProjects/app/src/main/res/layout/activity_main.xml
new file mode 100644
index 0000000000000000000000000000000000000000..ae8d888662f35d83340576e288a96ddf153f2d1b
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/layout/activity_main.xml
@@ -0,0 +1,121 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml b/AndroidStudioProjects/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
new file mode 100644
index 0000000000000000000000000000000000000000..eca70cfe52eac1ba66ba280a68ca7be8fcf88a16
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml b/AndroidStudioProjects/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
new file mode 100644
index 0000000000000000000000000000000000000000..eca70cfe52eac1ba66ba280a68ca7be8fcf88a16
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml
@@ -0,0 +1,5 @@
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/bg.png b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..312ef9fa1c373ad4c92ca2648f78bbb161e443da
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/bg.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/ic_launcher.webp b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/ic_launcher.webp
new file mode 100644
index 0000000000000000000000000000000000000000..c209e78ecd372343283f4157dcfd918ec5165bb3
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/ic_launcher.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp
new file mode 100644
index 0000000000000000000000000000000000000000..b2dfe3d1ba5cf3ee31b3ecc1ced89044a1f3b7a9
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/img.png b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/img.png
new file mode 100644
index 0000000000000000000000000000000000000000..dc4c81e120e2a92a2f6484b72157a7e206c6debe
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/img.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/lock_icon.png b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/lock_icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..ce9a3122da4a2193b9e8d9bcdcd0229f3ea1e68a
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/lock_icon.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/user_icon.png b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/user_icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..def107a5107d486cd68b9cfd3f40499181dcb14c
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-hdpi/user_icon.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/bg.png b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..312ef9fa1c373ad4c92ca2648f78bbb161e443da
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/bg.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/img.png b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/img.png
new file mode 100644
index 0000000000000000000000000000000000000000..2d78d83681b91e195e63e7edfe811a4318bbcdcf
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/img.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/lock_icon.png b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/lock_icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..df5e72cfd3f20ad154f277a8d9a6e70286434cd1
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/lock_icon.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/user_icno.png b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/user_icno.png
new file mode 100644
index 0000000000000000000000000000000000000000..1f49fe5e9c43190f284dc56da803246865311d5d
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-ldpi/user_icno.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/bg.png b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..3d6047cd959f0a8b0db94f823a933e4a6b67d372
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/bg.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/ic_launcher.webp b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/ic_launcher.webp
new file mode 100644
index 0000000000000000000000000000000000000000..4f0f1d64e58ba64d180ce43ee13bf9a17835fbca
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/ic_launcher.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp
new file mode 100644
index 0000000000000000000000000000000000000000..62b611da081676d42f6c3f78a2c91e7bcedddedb
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/img.png b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/img.png
new file mode 100644
index 0000000000000000000000000000000000000000..62856e5b5e94e113499681b64e4e705fdee80e77
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/img.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/lock_icon.png b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/lock_icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..eb5634611636fa90fd865aee08013eda87ef5b5c
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/lock_icon.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/user_icno.png b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/user_icno.png
new file mode 100644
index 0000000000000000000000000000000000000000..c32cb2a5b72a149abf1c79d610734289ccbe4d2b
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-mdpi/user_icno.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/bg.png b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e049fb08c6a7d46ff0919d1560dbb5f5fca3adb
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/bg.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/ic_launcher.webp b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/ic_launcher.webp
new file mode 100644
index 0000000000000000000000000000000000000000..948a3070fe34c611c42c0d3ad3013a0dce358be0
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/ic_launcher.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000000000000000000000000000000000000..1b9a6956b3acdc11f40ce2bb3f6efbd845cc243f
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/img.png b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/img.png
new file mode 100644
index 0000000000000000000000000000000000000000..91dc07f58828c52202ca7481374ef9c1102ccee3
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/img.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/lock_icon.png b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/lock_icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..58f313b21887b57574aaa030e6fc482fbde1dd10
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/lock_icon.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/user_icno.png b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/user_icno.png
new file mode 100644
index 0000000000000000000000000000000000000000..d6ed062dad959dff01b312ebfdf58c08b7930577
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xhdpi/user_icno.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/bg.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..4a9eb6590e1b87ae6f722c23c6ebe0e63119ebe4
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/bg.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp
new file mode 100644
index 0000000000000000000000000000000000000000..28d4b77f9f036a47549d47db79c16788749dca10
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000000000000000000000000000000000000..9287f5083623b375139afb391af71cc533a7dd37
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/img.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/img.png
new file mode 100644
index 0000000000000000000000000000000000000000..e63a1a1e61eb77b463d068d1b8546782e2083edd
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/img.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/lock_icon.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/lock_icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..20af5a09c1c365f6bd30e2d96bbf645f9f79184a
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/lock_icon.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/user_icno.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/user_icno.png
new file mode 100644
index 0000000000000000000000000000000000000000..3bc9af9ad579c880b734f3923cfe600aacdaddf6
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxhdpi/user_icno.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/bg.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/bg.png
new file mode 100644
index 0000000000000000000000000000000000000000..f08196688b19c49a4e32f7fe5afe07612cefd657
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/bg.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp
new file mode 100644
index 0000000000000000000000000000000000000000..aa7d6427e6fa1074b79ccd52ef67ac15c5637e85
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp
new file mode 100644
index 0000000000000000000000000000000000000000..9126ae37cbc3587421d6889eadd1d91fbf1994d4
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/img.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/img.png
new file mode 100644
index 0000000000000000000000000000000000000000..19f219102e5fd78db42a684648420d0b5cd98ea4
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/img.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/lock_icon.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/lock_icon.png
new file mode 100644
index 0000000000000000000000000000000000000000..7e5aa283952f34446f7b4bf2efadb3ec445677b8
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/lock_icon.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/user_icno.png b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/user_icno.png
new file mode 100644
index 0000000000000000000000000000000000000000..a92cfc65ceed04ffa33d8b115f7ac717eeeb5b95
Binary files /dev/null and b/AndroidStudioProjects/app/src/main/res/mipmap-xxxhdpi/user_icno.png differ
diff --git a/AndroidStudioProjects/app/src/main/res/values-night/themes.xml b/AndroidStudioProjects/app/src/main/res/values-night/themes.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e02ca7f8afcf4f6788f944a07eb6a7319f7c58c3
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/values-night/themes.xml
@@ -0,0 +1,16 @@
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/values/colors.xml b/AndroidStudioProjects/app/src/main/res/values/colors.xml
new file mode 100644
index 0000000000000000000000000000000000000000..f8c6127d327620c93d2b2d00342a68e97b98a48d
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/values/colors.xml
@@ -0,0 +1,10 @@
+
+
+ #FFBB86FC
+ #FF6200EE
+ #FF3700B3
+ #FF03DAC5
+ #FF018786
+ #FF000000
+ #FFFFFFFF
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/values/strings.xml b/AndroidStudioProjects/app/src/main/res/values/strings.xml
new file mode 100644
index 0000000000000000000000000000000000000000..3de1a3968d8b34c920ca224de40811509c6625ed
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/values/strings.xml
@@ -0,0 +1,3 @@
+
+ My Application
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/main/res/values/themes.xml b/AndroidStudioProjects/app/src/main/res/values/themes.xml
new file mode 100644
index 0000000000000000000000000000000000000000..c116f87bad39ce685b4da8410ff8e044c8d37402
--- /dev/null
+++ b/AndroidStudioProjects/app/src/main/res/values/themes.xml
@@ -0,0 +1,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AndroidStudioProjects/app/src/test/java/com/example/myapplication/ExampleUnitTest.java b/AndroidStudioProjects/app/src/test/java/com/example/myapplication/ExampleUnitTest.java
new file mode 100644
index 0000000000000000000000000000000000000000..bf43ee59f6e0688f3d98cfb4a973382257e5d9d1
--- /dev/null
+++ b/AndroidStudioProjects/app/src/test/java/com/example/myapplication/ExampleUnitTest.java
@@ -0,0 +1,17 @@
+package com.example.myapplication;
+
+import org.junit.Test;
+
+import static org.junit.Assert.*;
+
+/**
+ * Example local unit test, which will execute on the development machine (host).
+ *
+ * @see Testing documentation
+ */
+public class ExampleUnitTest {
+ @Test
+ public void addition_isCorrect() {
+ assertEquals(4, 2 + 2);
+ }
+}
\ No newline at end of file
diff --git a/AndroidStudioProjects/build.gradle b/AndroidStudioProjects/build.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..9e80da995dfd8b634e6c69f57b31b45a477e4339
--- /dev/null
+++ b/AndroidStudioProjects/build.gradle
@@ -0,0 +1,17 @@
+// Top-level build file where you can add configuration options common to all sub-projects/modules.
+buildscript {
+ repositories {
+ google()
+ mavenCentral()
+ }
+ dependencies {
+ classpath "com.android.tools.build:gradle:7.0.2"
+
+ // NOTE: Do not place your application dependencies here; they belong
+ // in the individual module build.gradle files
+ }
+}
+//127.0.0.1
+task clean(type: Delete) {
+ delete rootProject.buildDir
+}
\ No newline at end of file
diff --git a/AndroidStudioProjects/gradle.properties b/AndroidStudioProjects/gradle.properties
new file mode 100644
index 0000000000000000000000000000000000000000..52f5917cb0d0c47fd00ba8ee85c14eb27e1c41cc
--- /dev/null
+++ b/AndroidStudioProjects/gradle.properties
@@ -0,0 +1,19 @@
+# Project-wide Gradle settings.
+# IDE (e.g. Android Studio) users:
+# Gradle settings configured through the IDE *will override*
+# any settings specified in this file.
+# For more details on how to configure your build environment visit
+# http://www.gradle.org/docs/current/userguide/build_environment.html
+# Specifies the JVM arguments used for the daemon process.
+# The setting is particularly useful for tweaking memory settings.
+org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8
+# When configured, Gradle will run in incubating parallel mode.
+# This option should only be used with decoupled projects. More details, visit
+# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
+# org.gradle.parallel=true
+# AndroidX package structure to make it clearer which packages are bundled with the
+# Android operating system, and which are packaged with your app"s APK
+# https://developer.android.com/topic/libraries/support-library/androidx-rn
+android.useAndroidX=true
+# Automatically convert third-party libraries to use AndroidX
+android.enableJetifier=true
\ No newline at end of file
diff --git a/AndroidStudioProjects/gradle/wrapper/gradle-wrapper.jar b/AndroidStudioProjects/gradle/wrapper/gradle-wrapper.jar
new file mode 100644
index 0000000000000000000000000000000000000000..e708b1c023ec8b20f512888fe07c5bd3ff77bb8f
Binary files /dev/null and b/AndroidStudioProjects/gradle/wrapper/gradle-wrapper.jar differ
diff --git a/AndroidStudioProjects/gradle/wrapper/gradle-wrapper.properties b/AndroidStudioProjects/gradle/wrapper/gradle-wrapper.properties
new file mode 100644
index 0000000000000000000000000000000000000000..a6d127d948512718213f80a3113ecf66e9becb2e
--- /dev/null
+++ b/AndroidStudioProjects/gradle/wrapper/gradle-wrapper.properties
@@ -0,0 +1,6 @@
+#Sun Oct 17 19:07:46 CST 2021
+distributionBase=GRADLE_USER_HOME
+distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
+distributionPath=wrapper/dists
+zipStorePath=wrapper/dists
+zipStoreBase=GRADLE_USER_HOME
diff --git a/AndroidStudioProjects/gradlew b/AndroidStudioProjects/gradlew
new file mode 100644
index 0000000000000000000000000000000000000000..4f906e0c811fc9e230eb44819f509cd0627f2600
--- /dev/null
+++ b/AndroidStudioProjects/gradlew
@@ -0,0 +1,185 @@
+#!/usr/bin/env sh
+
+#
+# Copyright 2015 the original author or authors.
+#
+# Licensed under the Apache License, Version 2.0 (the "License");
+# you may not use this file except in compliance with the License.
+# You may obtain a copy of the License at
+#
+# https://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS,
+# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+# See the License for the specific language governing permissions and
+# limitations under the License.
+#
+
+##############################################################################
+##
+## Gradle start up script for UN*X
+##
+##############################################################################
+
+# Attempt to set APP_HOME
+# Resolve links: $0 may be a link
+PRG="$0"
+# Need this for relative symlinks.
+while [ -h "$PRG" ] ; do
+ ls=`ls -ld "$PRG"`
+ link=`expr "$ls" : '.*-> \(.*\)$'`
+ if expr "$link" : '/.*' > /dev/null; then
+ PRG="$link"
+ else
+ PRG=`dirname "$PRG"`"/$link"
+ fi
+done
+SAVED="`pwd`"
+cd "`dirname \"$PRG\"`/" >/dev/null
+APP_HOME="`pwd -P`"
+cd "$SAVED" >/dev/null
+
+APP_NAME="Gradle"
+APP_BASE_NAME=`basename "$0"`
+
+# Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+DEFAULT_JVM_OPTS='"-Xmx64m" "-Xms64m"'
+
+# Use the maximum available, or set MAX_FD != -1 to use that value.
+MAX_FD="maximum"
+
+warn () {
+ echo "$*"
+}
+
+die () {
+ echo
+ echo "$*"
+ echo
+ exit 1
+}
+
+# OS specific support (must be 'true' or 'false').
+cygwin=false
+msys=false
+darwin=false
+nonstop=false
+case "`uname`" in
+ CYGWIN* )
+ cygwin=true
+ ;;
+ Darwin* )
+ darwin=true
+ ;;
+ MINGW* )
+ msys=true
+ ;;
+ NONSTOP* )
+ nonstop=true
+ ;;
+esac
+
+CLASSPATH=$APP_HOME/gradle/wrapper/gradle-wrapper.jar
+
+
+# Determine the Java command to use to start the JVM.
+if [ -n "$JAVA_HOME" ] ; then
+ if [ -x "$JAVA_HOME/jre/sh/java" ] ; then
+ # IBM's JDK on AIX uses strange locations for the executables
+ JAVACMD="$JAVA_HOME/jre/sh/java"
+ else
+ JAVACMD="$JAVA_HOME/bin/java"
+ fi
+ if [ ! -x "$JAVACMD" ] ; then
+ die "ERROR: JAVA_HOME is set to an invalid directory: $JAVA_HOME
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+ fi
+else
+ JAVACMD="java"
+ which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+
+Please set the JAVA_HOME variable in your environment to match the
+location of your Java installation."
+fi
+
+# Increase the maximum file descriptors if we can.
+if [ "$cygwin" = "false" -a "$darwin" = "false" -a "$nonstop" = "false" ] ; then
+ MAX_FD_LIMIT=`ulimit -H -n`
+ if [ $? -eq 0 ] ; then
+ if [ "$MAX_FD" = "maximum" -o "$MAX_FD" = "max" ] ; then
+ MAX_FD="$MAX_FD_LIMIT"
+ fi
+ ulimit -n $MAX_FD
+ if [ $? -ne 0 ] ; then
+ warn "Could not set maximum file descriptor limit: $MAX_FD"
+ fi
+ else
+ warn "Could not query maximum file descriptor limit: $MAX_FD_LIMIT"
+ fi
+fi
+
+# For Darwin, add options to specify how the application appears in the dock
+if $darwin; then
+ GRADLE_OPTS="$GRADLE_OPTS \"-Xdock:name=$APP_NAME\" \"-Xdock:icon=$APP_HOME/media/gradle.icns\""
+fi
+
+# For Cygwin or MSYS, switch paths to Windows format before running java
+if [ "$cygwin" = "true" -o "$msys" = "true" ] ; then
+ APP_HOME=`cygpath --path --mixed "$APP_HOME"`
+ CLASSPATH=`cygpath --path --mixed "$CLASSPATH"`
+
+ JAVACMD=`cygpath --unix "$JAVACMD"`
+
+ # We build the pattern for arguments to be converted via cygpath
+ ROOTDIRSRAW=`find -L / -maxdepth 1 -mindepth 1 -type d 2>/dev/null`
+ SEP=""
+ for dir in $ROOTDIRSRAW ; do
+ ROOTDIRS="$ROOTDIRS$SEP$dir"
+ SEP="|"
+ done
+ OURCYGPATTERN="(^($ROOTDIRS))"
+ # Add a user-defined pattern to the cygpath arguments
+ if [ "$GRADLE_CYGPATTERN" != "" ] ; then
+ OURCYGPATTERN="$OURCYGPATTERN|($GRADLE_CYGPATTERN)"
+ fi
+ # Now convert the arguments - kludge to limit ourselves to /bin/sh
+ i=0
+ for arg in "$@" ; do
+ CHECK=`echo "$arg"|egrep -c "$OURCYGPATTERN" -`
+ CHECK2=`echo "$arg"|egrep -c "^-"` ### Determine if an option
+
+ if [ $CHECK -ne 0 ] && [ $CHECK2 -eq 0 ] ; then ### Added a condition
+ eval `echo args$i`=`cygpath --path --ignore --mixed "$arg"`
+ else
+ eval `echo args$i`="\"$arg\""
+ fi
+ i=`expr $i + 1`
+ done
+ case $i in
+ 0) set -- ;;
+ 1) set -- "$args0" ;;
+ 2) set -- "$args0" "$args1" ;;
+ 3) set -- "$args0" "$args1" "$args2" ;;
+ 4) set -- "$args0" "$args1" "$args2" "$args3" ;;
+ 5) set -- "$args0" "$args1" "$args2" "$args3" "$args4" ;;
+ 6) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" ;;
+ 7) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" ;;
+ 8) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" ;;
+ 9) set -- "$args0" "$args1" "$args2" "$args3" "$args4" "$args5" "$args6" "$args7" "$args8" ;;
+ esac
+fi
+
+# Escape application args
+save () {
+ for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
+ echo " "
+}
+APP_ARGS=`save "$@"`
+
+# Collect all arguments for the java command, following the shell quoting and substitution rules
+eval set -- $DEFAULT_JVM_OPTS $JAVA_OPTS $GRADLE_OPTS "\"-Dorg.gradle.appname=$APP_BASE_NAME\"" -classpath "\"$CLASSPATH\"" org.gradle.wrapper.GradleWrapperMain "$APP_ARGS"
+
+exec "$JAVACMD" "$@"
diff --git a/AndroidStudioProjects/gradlew.bat b/AndroidStudioProjects/gradlew.bat
new file mode 100644
index 0000000000000000000000000000000000000000..107acd32c4e687021ef32db511e8a206129b88ec
--- /dev/null
+++ b/AndroidStudioProjects/gradlew.bat
@@ -0,0 +1,89 @@
+@rem
+@rem Copyright 2015 the original author or authors.
+@rem
+@rem Licensed under the Apache License, Version 2.0 (the "License");
+@rem you may not use this file except in compliance with the License.
+@rem You may obtain a copy of the License at
+@rem
+@rem https://www.apache.org/licenses/LICENSE-2.0
+@rem
+@rem Unless required by applicable law or agreed to in writing, software
+@rem distributed under the License is distributed on an "AS IS" BASIS,
+@rem WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+@rem See the License for the specific language governing permissions and
+@rem limitations under the License.
+@rem
+
+@if "%DEBUG%" == "" @echo off
+@rem ##########################################################################
+@rem
+@rem Gradle startup script for Windows
+@rem
+@rem ##########################################################################
+
+@rem Set local scope for the variables with windows NT shell
+if "%OS%"=="Windows_NT" setlocal
+
+set DIRNAME=%~dp0
+if "%DIRNAME%" == "" set DIRNAME=.
+set APP_BASE_NAME=%~n0
+set APP_HOME=%DIRNAME%
+
+@rem Resolve any "." and ".." in APP_HOME to make it shorter.
+for %%i in ("%APP_HOME%") do set APP_HOME=%%~fi
+
+@rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
+set DEFAULT_JVM_OPTS="-Xmx64m" "-Xms64m"
+
+@rem Find java.exe
+if defined JAVA_HOME goto findJavaFromJavaHome
+
+set JAVA_EXE=java.exe
+%JAVA_EXE% -version >NUL 2>&1
+if "%ERRORLEVEL%" == "0" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:findJavaFromJavaHome
+set JAVA_HOME=%JAVA_HOME:"=%
+set JAVA_EXE=%JAVA_HOME%/bin/java.exe
+
+if exist "%JAVA_EXE%" goto execute
+
+echo.
+echo ERROR: JAVA_HOME is set to an invalid directory: %JAVA_HOME%
+echo.
+echo Please set the JAVA_HOME variable in your environment to match the
+echo location of your Java installation.
+
+goto fail
+
+:execute
+@rem Setup the command line
+
+set CLASSPATH=%APP_HOME%\gradle\wrapper\gradle-wrapper.jar
+
+
+@rem Execute Gradle
+"%JAVA_EXE%" %DEFAULT_JVM_OPTS% %JAVA_OPTS% %GRADLE_OPTS% "-Dorg.gradle.appname=%APP_BASE_NAME%" -classpath "%CLASSPATH%" org.gradle.wrapper.GradleWrapperMain %*
+
+:end
+@rem End local scope for the variables with windows NT shell
+if "%ERRORLEVEL%"=="0" goto mainEnd
+
+:fail
+rem Set variable GRADLE_EXIT_CONSOLE if you need the _script_ return code instead of
+rem the _cmd.exe /c_ return code!
+if not "" == "%GRADLE_EXIT_CONSOLE%" exit 1
+exit /b 1
+
+:mainEnd
+if "%OS%"=="Windows_NT" endlocal
+
+:omega
diff --git a/AndroidStudioProjects/settings.gradle b/AndroidStudioProjects/settings.gradle
new file mode 100644
index 0000000000000000000000000000000000000000..9bd52b2fd8f25f4369c3d1971c91ff74568ce4ab
--- /dev/null
+++ b/AndroidStudioProjects/settings.gradle
@@ -0,0 +1,10 @@
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ jcenter() // Warning: this repository is going to shut down soon
+ }
+}
+rootProject.name = "My Application"
+include ':app'
diff --git a/git.txt b/git.txt
new file mode 100644
index 0000000000000000000000000000000000000000..4a4d605dedf37cc4247ea300f944f8e8048e8dbb
--- /dev/null
+++ b/git.txt
@@ -0,0 +1,26 @@
+1. git clone 拷贝一个 Git 仓库到本地,让自己能够查看该项目,或者进行修改。
+2. cd 用于切换当前工作目录。
+3. git branch创建分支
+4. git checkout切换分支
+5. git checkout -b创建并切换分支
+6. git add 添加文件到仓库
+7. git commit -m 提交暂存区到本地仓库中
+8. git push origin master 将本地的 master 分支推送到 origin 主机的 master 分支
+
+git clone https://gitee.com/npu-devhub/app-practice1.git
+拷贝https://gitee.com/npu-devhub/app-practice1.git仓库到本地
+
+cd app-practice1
+切换目录到app-practice1
+
+git checkout -b practice1/sunwukong-2018303999
+将写好的代码复制到 app-practice1 文件夹
+
+git add .
+添加文件到暂存区
+
+git commit -m 'practice1: sunwukong-2018303999'
+提交暂存区到practice1: sunwukong-2018303999
+
+git push origin practice1/sunwukong-20183031999
+将本地的practice1/sunwukong-20183031999分支推送到 origin 主机的 master 分支
\ No newline at end of file