Android studio 编写一个登录页面,并且具有注册功能

守听  金牌会员 | 2022-6-26 00:13:36 | 显示全部楼层 | 阅读模式
打印 上一主题 下一主题

主题 552|帖子 552|积分 1656

登录与注册



功能要求

1、创建登录界面,点击注册按钮,弹出注册窗口。
2、创建注册窗口,输入用户名和密码,在SQLite中存储用户名和密码。
3、注册成功,跳转到登录界面,进行登录。
4、注册成功,把用户名和密码保存到SharedPreferences中,登录时自动填充用户名和密码。
具体实现

初步思路

          登录页面具有两个输入框和两个按键,输入框分别用于获取用户名和密码,按键分为登录按键和注册按键,分别跳往不同的页面。登陆成功后,进入到欢迎界面。注册跳转到注册页面,注册成功后,将数据存储到SharedPreferences和数据中,返回登录页面将SharedPreferences中的数据填充到输入框中。
涉及的代码文件


  • MainActivity.java :主界面
  • Mysql.java:利用sqlite的SQLiteOpenHelper类创建数据库
  • Register.java:注册页面
  • Welcome.java:登陆成功后的欢迎界面:
  • activity_main.xml:登录页面的布局文件
  • activity_register.xml:注册页面的布局文件
  • activity_welcome.xml:欢迎页面的布局文件
    一般在Android studio 中创建Activity都会自动在AndroidManifest.xml中好,本次代码中也不需要对AndroidManifest.xml做任何更改。
实现效果

1登录页面:
       这是我之前注册过后的账户,所以点击进去就自动填充好了信息。

2.注册页面:
       注册页面写的非常简略,如果想实现更多的效果可以网上查查,也可以参照下我上一篇文章中的注册页面。
编写一个简单的andriod注册页面,并跳转后显示注册信息

3.注册成功后:
       注册成功后会自动跳转到登录页面,并且填充信息。

4.登录成功后:
       登陆成功后会将用户名取出来,并显示欢迎。

代码文件

1.登录界面——MainActivity.java :

       这里登录比对数据的时候,我采用的方法是从数据库中查询与输入的用户名、密码相同的记录,若记录存在则登陆成功。不存在则提示用户用户名或密码输入错误。
  1. package com.example.test06;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.content.Intent;
  4. import android.content.SharedPreferences;
  5. import android.database.Cursor;
  6. import android.database.sqlite.SQLiteDatabase;
  7. import android.os.Bundle;
  8. import android.view.View;
  9. import android.widget.Button;
  10. import android.widget.EditText;
  11. import android.widget.Toast;
  12. public class MainActivity extends AppCompatActivity {
  13. <?xml version="1.0" encoding="utf-8"?>
  14. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  15.     xmlns:app="http://schemas.android.com/apk/res-auto"
  16.     xmlns:tools="http://schemas.android.com/tools"
  17.     android:layout_width="match_parent"
  18.     android:layout_height="match_parent"
  19.     tools:context=".Welcome">
  20.     <TextView
  21.         android:id="@+id/mainword"
  22.         android:layout_width="fill_parent"
  23.         android:layout_height="fill_parent"
  24.         android:gravity="center"
  25.         android:textSize="22dp"
  26.         tools:ignore="MissingConstraints" />
  27. </androidx.constraintlayout.widget.ConstraintLayout>EditText name,pwd;
  28. <?xml version="1.0" encoding="utf-8"?>
  29. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  30.     xmlns:app="http://schemas.android.com/apk/res-auto"
  31.     xmlns:tools="http://schemas.android.com/tools"
  32.     android:layout_width="match_parent"
  33.     android:layout_height="match_parent"
  34.     tools:context=".Welcome">
  35.     <TextView
  36.         android:id="@+id/mainword"
  37.         android:layout_width="fill_parent"
  38.         android:layout_height="fill_parent"
  39.         android:gravity="center"
  40.         android:textSize="22dp"
  41.         tools:ignore="MissingConstraints" />
  42. </androidx.constraintlayout.widget.ConstraintLayout>Button btnlogin,btnreg;
  43. <?xml version="1.0" encoding="utf-8"?>
  44. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  45.     xmlns:app="http://schemas.android.com/apk/res-auto"
  46.     xmlns:tools="http://schemas.android.com/tools"
  47.     android:layout_width="match_parent"
  48.     android:layout_height="match_parent"
  49.     tools:context=".Welcome">
  50.     <TextView
  51.         android:id="@+id/mainword"
  52.         android:layout_width="fill_parent"
  53.         android:layout_height="fill_parent"
  54.         android:gravity="center"
  55.         android:textSize="22dp"
  56.         tools:ignore="MissingConstraints" />
  57. </androidx.constraintlayout.widget.ConstraintLayout>Mysql mysql;
  58. <?xml version="1.0" encoding="utf-8"?>
  59. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  60.     xmlns:app="http://schemas.android.com/apk/res-auto"
  61.     xmlns:tools="http://schemas.android.com/tools"
  62.     android:layout_width="match_parent"
  63.     android:layout_height="match_parent"
  64.     tools:context=".Welcome">
  65.     <TextView
  66.         android:id="@+id/mainword"
  67.         android:layout_width="fill_parent"
  68.         android:layout_height="fill_parent"
  69.         android:gravity="center"
  70.         android:textSize="22dp"
  71.         tools:ignore="MissingConstraints" />
  72. </androidx.constraintlayout.widget.ConstraintLayout>SQLiteDatabase db;
  73. <?xml version="1.0" encoding="utf-8"?>
  74. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  75.     xmlns:app="http://schemas.android.com/apk/res-auto"
  76.     xmlns:tools="http://schemas.android.com/tools"
  77.     android:layout_width="match_parent"
  78.     android:layout_height="match_parent"
  79.     tools:context=".Welcome">
  80.     <TextView
  81.         android:id="@+id/mainword"
  82.         android:layout_width="fill_parent"
  83.         android:layout_height="fill_parent"
  84.         android:gravity="center"
  85.         android:textSize="22dp"
  86.         tools:ignore="MissingConstraints" />
  87. </androidx.constraintlayout.widget.ConstraintLayout>SharedPreferences sp1,sp2;
  88. <?xml version="1.0" encoding="utf-8"?>
  89. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  90.     xmlns:app="http://schemas.android.com/apk/res-auto"
  91.     xmlns:tools="http://schemas.android.com/tools"
  92.     android:layout_width="match_parent"
  93.     android:layout_height="match_parent"
  94.     tools:context=".Welcome">
  95.     <TextView
  96.         android:id="@+id/mainword"
  97.         android:layout_width="fill_parent"
  98.         android:layout_height="fill_parent"
  99.         android:gravity="center"
  100.         android:textSize="22dp"
  101.         tools:ignore="MissingConstraints" />
  102. </androidx.constraintlayout.widget.ConstraintLayout>@Override
  103. <?xml version="1.0" encoding="utf-8"?>
  104. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  105.     xmlns:app="http://schemas.android.com/apk/res-auto"
  106.     xmlns:tools="http://schemas.android.com/tools"
  107.     android:layout_width="match_parent"
  108.     android:layout_height="match_parent"
  109.     tools:context=".Welcome">
  110.     <TextView
  111.         android:id="@+id/mainword"
  112.         android:layout_width="fill_parent"
  113.         android:layout_height="fill_parent"
  114.         android:gravity="center"
  115.         android:textSize="22dp"
  116.         tools:ignore="MissingConstraints" />
  117. </androidx.constraintlayout.widget.ConstraintLayout>protected void onCreate(Bundle savedInstanceState) {
  118. <?xml version="1.0" encoding="utf-8"?>
  119. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  120.     xmlns:app="http://schemas.android.com/apk/res-auto"
  121.     xmlns:tools="http://schemas.android.com/tools"
  122.     android:layout_width="match_parent"
  123.     android:layout_height="match_parent"
  124.     tools:context=".Welcome">
  125.     <TextView
  126.         android:id="@+id/mainword"
  127.         android:layout_width="fill_parent"
  128.         android:layout_height="fill_parent"
  129.         android:gravity="center"
  130.         android:textSize="22dp"
  131.         tools:ignore="MissingConstraints" />
  132. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  133. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  134.     xmlns:app="http://schemas.android.com/apk/res-auto"
  135.     xmlns:tools="http://schemas.android.com/tools"
  136.     android:layout_width="match_parent"
  137.     android:layout_height="match_parent"
  138.     tools:context=".Welcome">
  139.     <TextView
  140.         android:id="@+id/mainword"
  141.         android:layout_width="fill_parent"
  142.         android:layout_height="fill_parent"
  143.         android:gravity="center"
  144.         android:textSize="22dp"
  145.         tools:ignore="MissingConstraints" />
  146. </androidx.constraintlayout.widget.ConstraintLayout>super.onCreate(savedInstanceState);
  147. <?xml version="1.0" encoding="utf-8"?>
  148. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  149.     xmlns:app="http://schemas.android.com/apk/res-auto"
  150.     xmlns:tools="http://schemas.android.com/tools"
  151.     android:layout_width="match_parent"
  152.     android:layout_height="match_parent"
  153.     tools:context=".Welcome">
  154.     <TextView
  155.         android:id="@+id/mainword"
  156.         android:layout_width="fill_parent"
  157.         android:layout_height="fill_parent"
  158.         android:gravity="center"
  159.         android:textSize="22dp"
  160.         tools:ignore="MissingConstraints" />
  161. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  162. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  163.     xmlns:app="http://schemas.android.com/apk/res-auto"
  164.     xmlns:tools="http://schemas.android.com/tools"
  165.     android:layout_width="match_parent"
  166.     android:layout_height="match_parent"
  167.     tools:context=".Welcome">
  168.     <TextView
  169.         android:id="@+id/mainword"
  170.         android:layout_width="fill_parent"
  171.         android:layout_height="fill_parent"
  172.         android:gravity="center"
  173.         android:textSize="22dp"
  174.         tools:ignore="MissingConstraints" />
  175. </androidx.constraintlayout.widget.ConstraintLayout>setContentView(R.layout.activity_main);
  176. <?xml version="1.0" encoding="utf-8"?>
  177. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  178.     xmlns:app="http://schemas.android.com/apk/res-auto"
  179.     xmlns:tools="http://schemas.android.com/tools"
  180.     android:layout_width="match_parent"
  181.     android:layout_height="match_parent"
  182.     tools:context=".Welcome">
  183.     <TextView
  184.         android:id="@+id/mainword"
  185.         android:layout_width="fill_parent"
  186.         android:layout_height="fill_parent"
  187.         android:gravity="center"
  188.         android:textSize="22dp"
  189.         tools:ignore="MissingConstraints" />
  190. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  191. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  192.     xmlns:app="http://schemas.android.com/apk/res-auto"
  193.     xmlns:tools="http://schemas.android.com/tools"
  194.     android:layout_width="match_parent"
  195.     android:layout_height="match_parent"
  196.     tools:context=".Welcome">
  197.     <TextView
  198.         android:id="@+id/mainword"
  199.         android:layout_width="fill_parent"
  200.         android:layout_height="fill_parent"
  201.         android:gravity="center"
  202.         android:textSize="22dp"
  203.         tools:ignore="MissingConstraints" />
  204. </androidx.constraintlayout.widget.ConstraintLayout>name = this.findViewById(R.id.name);<?xml version="1.0" encoding="utf-8"?>
  205. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  206.     xmlns:app="http://schemas.android.com/apk/res-auto"
  207.     xmlns:tools="http://schemas.android.com/tools"
  208.     android:layout_width="match_parent"
  209.     android:layout_height="match_parent"
  210.     tools:context=".Welcome">
  211.     <TextView
  212.         android:id="@+id/mainword"
  213.         android:layout_width="fill_parent"
  214.         android:layout_height="fill_parent"
  215.         android:gravity="center"
  216.         android:textSize="22dp"
  217.         tools:ignore="MissingConstraints" />
  218. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  219. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  220.     xmlns:app="http://schemas.android.com/apk/res-auto"
  221.     xmlns:tools="http://schemas.android.com/tools"
  222.     android:layout_width="match_parent"
  223.     android:layout_height="match_parent"
  224.     tools:context=".Welcome">
  225.     <TextView
  226.         android:id="@+id/mainword"
  227.         android:layout_width="fill_parent"
  228.         android:layout_height="fill_parent"
  229.         android:gravity="center"
  230.         android:textSize="22dp"
  231.         tools:ignore="MissingConstraints" />
  232. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  233. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  234.     xmlns:app="http://schemas.android.com/apk/res-auto"
  235.     xmlns:tools="http://schemas.android.com/tools"
  236.     android:layout_width="match_parent"
  237.     android:layout_height="match_parent"
  238.     tools:context=".Welcome">
  239.     <TextView
  240.         android:id="@+id/mainword"
  241.         android:layout_width="fill_parent"
  242.         android:layout_height="fill_parent"
  243.         android:gravity="center"
  244.         android:textSize="22dp"
  245.         tools:ignore="MissingConstraints" />
  246. </androidx.constraintlayout.widget.ConstraintLayout>//用户名输入框
  247. <?xml version="1.0" encoding="utf-8"?>
  248. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  249.     xmlns:app="http://schemas.android.com/apk/res-auto"
  250.     xmlns:tools="http://schemas.android.com/tools"
  251.     android:layout_width="match_parent"
  252.     android:layout_height="match_parent"
  253.     tools:context=".Welcome">
  254.     <TextView
  255.         android:id="@+id/mainword"
  256.         android:layout_width="fill_parent"
  257.         android:layout_height="fill_parent"
  258.         android:gravity="center"
  259.         android:textSize="22dp"
  260.         tools:ignore="MissingConstraints" />
  261. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  262. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  263.     xmlns:app="http://schemas.android.com/apk/res-auto"
  264.     xmlns:tools="http://schemas.android.com/tools"
  265.     android:layout_width="match_parent"
  266.     android:layout_height="match_parent"
  267.     tools:context=".Welcome">
  268.     <TextView
  269.         android:id="@+id/mainword"
  270.         android:layout_width="fill_parent"
  271.         android:layout_height="fill_parent"
  272.         android:gravity="center"
  273.         android:textSize="22dp"
  274.         tools:ignore="MissingConstraints" />
  275. </androidx.constraintlayout.widget.ConstraintLayout>pwd = this.findViewById(R.id.pwd);<?xml version="1.0" encoding="utf-8"?>
  276. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  277.     xmlns:app="http://schemas.android.com/apk/res-auto"
  278.     xmlns:tools="http://schemas.android.com/tools"
  279.     android:layout_width="match_parent"
  280.     android:layout_height="match_parent"
  281.     tools:context=".Welcome">
  282.     <TextView
  283.         android:id="@+id/mainword"
  284.         android:layout_width="fill_parent"
  285.         android:layout_height="fill_parent"
  286.         android:gravity="center"
  287.         android:textSize="22dp"
  288.         tools:ignore="MissingConstraints" />
  289. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  290. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  291.     xmlns:app="http://schemas.android.com/apk/res-auto"
  292.     xmlns:tools="http://schemas.android.com/tools"
  293.     android:layout_width="match_parent"
  294.     android:layout_height="match_parent"
  295.     tools:context=".Welcome">
  296.     <TextView
  297.         android:id="@+id/mainword"
  298.         android:layout_width="fill_parent"
  299.         android:layout_height="fill_parent"
  300.         android:gravity="center"
  301.         android:textSize="22dp"
  302.         tools:ignore="MissingConstraints" />
  303. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  304. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  305.     xmlns:app="http://schemas.android.com/apk/res-auto"
  306.     xmlns:tools="http://schemas.android.com/tools"
  307.     android:layout_width="match_parent"
  308.     android:layout_height="match_parent"
  309.     tools:context=".Welcome">
  310.     <TextView
  311.         android:id="@+id/mainword"
  312.         android:layout_width="fill_parent"
  313.         android:layout_height="fill_parent"
  314.         android:gravity="center"
  315.         android:textSize="22dp"
  316.         tools:ignore="MissingConstraints" />
  317. </androidx.constraintlayout.widget.ConstraintLayout>  //密码输入框
  318. <?xml version="1.0" encoding="utf-8"?>
  319. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  320.     xmlns:app="http://schemas.android.com/apk/res-auto"
  321.     xmlns:tools="http://schemas.android.com/tools"
  322.     android:layout_width="match_parent"
  323.     android:layout_height="match_parent"
  324.     tools:context=".Welcome">
  325.     <TextView
  326.         android:id="@+id/mainword"
  327.         android:layout_width="fill_parent"
  328.         android:layout_height="fill_parent"
  329.         android:gravity="center"
  330.         android:textSize="22dp"
  331.         tools:ignore="MissingConstraints" />
  332. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  333. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  334.     xmlns:app="http://schemas.android.com/apk/res-auto"
  335.     xmlns:tools="http://schemas.android.com/tools"
  336.     android:layout_width="match_parent"
  337.     android:layout_height="match_parent"
  338.     tools:context=".Welcome">
  339.     <TextView
  340.         android:id="@+id/mainword"
  341.         android:layout_width="fill_parent"
  342.         android:layout_height="fill_parent"
  343.         android:gravity="center"
  344.         android:textSize="22dp"
  345.         tools:ignore="MissingConstraints" />
  346. </androidx.constraintlayout.widget.ConstraintLayout>btnlogin = this.findViewById(R.id.login);<?xml version="1.0" encoding="utf-8"?>
  347. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  348.     xmlns:app="http://schemas.android.com/apk/res-auto"
  349.     xmlns:tools="http://schemas.android.com/tools"
  350.     android:layout_width="match_parent"
  351.     android:layout_height="match_parent"
  352.     tools:context=".Welcome">
  353.     <TextView
  354.         android:id="@+id/mainword"
  355.         android:layout_width="fill_parent"
  356.         android:layout_height="fill_parent"
  357.         android:gravity="center"
  358.         android:textSize="22dp"
  359.         tools:ignore="MissingConstraints" />
  360. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  361. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  362.     xmlns:app="http://schemas.android.com/apk/res-auto"
  363.     xmlns:tools="http://schemas.android.com/tools"
  364.     android:layout_width="match_parent"
  365.     android:layout_height="match_parent"
  366.     tools:context=".Welcome">
  367.     <TextView
  368.         android:id="@+id/mainword"
  369.         android:layout_width="fill_parent"
  370.         android:layout_height="fill_parent"
  371.         android:gravity="center"
  372.         android:textSize="22dp"
  373.         tools:ignore="MissingConstraints" />
  374. </androidx.constraintlayout.widget.ConstraintLayout> //登录按钮
  375. <?xml version="1.0" encoding="utf-8"?>
  376. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  377.     xmlns:app="http://schemas.android.com/apk/res-auto"
  378.     xmlns:tools="http://schemas.android.com/tools"
  379.     android:layout_width="match_parent"
  380.     android:layout_height="match_parent"
  381.     tools:context=".Welcome">
  382.     <TextView
  383.         android:id="@+id/mainword"
  384.         android:layout_width="fill_parent"
  385.         android:layout_height="fill_parent"
  386.         android:gravity="center"
  387.         android:textSize="22dp"
  388.         tools:ignore="MissingConstraints" />
  389. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  390. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  391.     xmlns:app="http://schemas.android.com/apk/res-auto"
  392.     xmlns:tools="http://schemas.android.com/tools"
  393.     android:layout_width="match_parent"
  394.     android:layout_height="match_parent"
  395.     tools:context=".Welcome">
  396.     <TextView
  397.         android:id="@+id/mainword"
  398.         android:layout_width="fill_parent"
  399.         android:layout_height="fill_parent"
  400.         android:gravity="center"
  401.         android:textSize="22dp"
  402.         tools:ignore="MissingConstraints" />
  403. </androidx.constraintlayout.widget.ConstraintLayout>btnreg = this.findViewById(R.id.reg);<?xml version="1.0" encoding="utf-8"?>
  404. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  405.     xmlns:app="http://schemas.android.com/apk/res-auto"
  406.     xmlns:tools="http://schemas.android.com/tools"
  407.     android:layout_width="match_parent"
  408.     android:layout_height="match_parent"
  409.     tools:context=".Welcome">
  410.     <TextView
  411.         android:id="@+id/mainword"
  412.         android:layout_width="fill_parent"
  413.         android:layout_height="fill_parent"
  414.         android:gravity="center"
  415.         android:textSize="22dp"
  416.         tools:ignore="MissingConstraints" />
  417. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  418. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  419.     xmlns:app="http://schemas.android.com/apk/res-auto"
  420.     xmlns:tools="http://schemas.android.com/tools"
  421.     android:layout_width="match_parent"
  422.     android:layout_height="match_parent"
  423.     tools:context=".Welcome">
  424.     <TextView
  425.         android:id="@+id/mainword"
  426.         android:layout_width="fill_parent"
  427.         android:layout_height="fill_parent"
  428.         android:gravity="center"
  429.         android:textSize="22dp"
  430.         tools:ignore="MissingConstraints" />
  431. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  432. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  433.     xmlns:app="http://schemas.android.com/apk/res-auto"
  434.     xmlns:tools="http://schemas.android.com/tools"
  435.     android:layout_width="match_parent"
  436.     android:layout_height="match_parent"
  437.     tools:context=".Welcome">
  438.     <TextView
  439.         android:id="@+id/mainword"
  440.         android:layout_width="fill_parent"
  441.         android:layout_height="fill_parent"
  442.         android:gravity="center"
  443.         android:textSize="22dp"
  444.         tools:ignore="MissingConstraints" />
  445. </androidx.constraintlayout.widget.ConstraintLayout>   //注册按钮
  446. <?xml version="1.0" encoding="utf-8"?>
  447. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  448.     xmlns:app="http://schemas.android.com/apk/res-auto"
  449.     xmlns:tools="http://schemas.android.com/tools"
  450.     android:layout_width="match_parent"
  451.     android:layout_height="match_parent"
  452.     tools:context=".Welcome">
  453.     <TextView
  454.         android:id="@+id/mainword"
  455.         android:layout_width="fill_parent"
  456.         android:layout_height="fill_parent"
  457.         android:gravity="center"
  458.         android:textSize="22dp"
  459.         tools:ignore="MissingConstraints" />
  460. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  461. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  462.     xmlns:app="http://schemas.android.com/apk/res-auto"
  463.     xmlns:tools="http://schemas.android.com/tools"
  464.     android:layout_width="match_parent"
  465.     android:layout_height="match_parent"
  466.     tools:context=".Welcome">
  467.     <TextView
  468.         android:id="@+id/mainword"
  469.         android:layout_width="fill_parent"
  470.         android:layout_height="fill_parent"
  471.         android:gravity="center"
  472.         android:textSize="22dp"
  473.         tools:ignore="MissingConstraints" />
  474. </androidx.constraintlayout.widget.ConstraintLayout>sp1 =  this.getSharedPreferences("useinfo",this.MODE_PRIVATE);
  475. <?xml version="1.0" encoding="utf-8"?>
  476. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  477.     xmlns:app="http://schemas.android.com/apk/res-auto"
  478.     xmlns:tools="http://schemas.android.com/tools"
  479.     android:layout_width="match_parent"
  480.     android:layout_height="match_parent"
  481.     tools:context=".Welcome">
  482.     <TextView
  483.         android:id="@+id/mainword"
  484.         android:layout_width="fill_parent"
  485.         android:layout_height="fill_parent"
  486.         android:gravity="center"
  487.         android:textSize="22dp"
  488.         tools:ignore="MissingConstraints" />
  489. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  490. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  491.     xmlns:app="http://schemas.android.com/apk/res-auto"
  492.     xmlns:tools="http://schemas.android.com/tools"
  493.     android:layout_width="match_parent"
  494.     android:layout_height="match_parent"
  495.     tools:context=".Welcome">
  496.     <TextView
  497.         android:id="@+id/mainword"
  498.         android:layout_width="fill_parent"
  499.         android:layout_height="fill_parent"
  500.         android:gravity="center"
  501.         android:textSize="22dp"
  502.         tools:ignore="MissingConstraints" />
  503. </androidx.constraintlayout.widget.ConstraintLayout>sp2 = this.getSharedPreferences("username",this.MODE_PRIVATE);
  504. <?xml version="1.0" encoding="utf-8"?>
  505. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  506.     xmlns:app="http://schemas.android.com/apk/res-auto"
  507.     xmlns:tools="http://schemas.android.com/tools"
  508.     android:layout_width="match_parent"
  509.     android:layout_height="match_parent"
  510.     tools:context=".Welcome">
  511.     <TextView
  512.         android:id="@+id/mainword"
  513.         android:layout_width="fill_parent"
  514.         android:layout_height="fill_parent"
  515.         android:gravity="center"
  516.         android:textSize="22dp"
  517.         tools:ignore="MissingConstraints" />
  518. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  519. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  520.     xmlns:app="http://schemas.android.com/apk/res-auto"
  521.     xmlns:tools="http://schemas.android.com/tools"
  522.     android:layout_width="match_parent"
  523.     android:layout_height="match_parent"
  524.     tools:context=".Welcome">
  525.     <TextView
  526.         android:id="@+id/mainword"
  527.         android:layout_width="fill_parent"
  528.         android:layout_height="fill_parent"
  529.         android:gravity="center"
  530.         android:textSize="22dp"
  531.         tools:ignore="MissingConstraints" />
  532. </androidx.constraintlayout.widget.ConstraintLayout>name.setText(sp1.getString("usname",null));
  533. <?xml version="1.0" encoding="utf-8"?>
  534. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  535.     xmlns:app="http://schemas.android.com/apk/res-auto"
  536.     xmlns:tools="http://schemas.android.com/tools"
  537.     android:layout_width="match_parent"
  538.     android:layout_height="match_parent"
  539.     tools:context=".Welcome">
  540.     <TextView
  541.         android:id="@+id/mainword"
  542.         android:layout_width="fill_parent"
  543.         android:layout_height="fill_parent"
  544.         android:gravity="center"
  545.         android:textSize="22dp"
  546.         tools:ignore="MissingConstraints" />
  547. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  548. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  549.     xmlns:app="http://schemas.android.com/apk/res-auto"
  550.     xmlns:tools="http://schemas.android.com/tools"
  551.     android:layout_width="match_parent"
  552.     android:layout_height="match_parent"
  553.     tools:context=".Welcome">
  554.     <TextView
  555.         android:id="@+id/mainword"
  556.         android:layout_width="fill_parent"
  557.         android:layout_height="fill_parent"
  558.         android:gravity="center"
  559.         android:textSize="22dp"
  560.         tools:ignore="MissingConstraints" />
  561. </androidx.constraintlayout.widget.ConstraintLayout>pwd.setText(sp1.getString("uspwd",null));
  562. <?xml version="1.0" encoding="utf-8"?>
  563. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  564.     xmlns:app="http://schemas.android.com/apk/res-auto"
  565.     xmlns:tools="http://schemas.android.com/tools"
  566.     android:layout_width="match_parent"
  567.     android:layout_height="match_parent"
  568.     tools:context=".Welcome">
  569.     <TextView
  570.         android:id="@+id/mainword"
  571.         android:layout_width="fill_parent"
  572.         android:layout_height="fill_parent"
  573.         android:gravity="center"
  574.         android:textSize="22dp"
  575.         tools:ignore="MissingConstraints" />
  576. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  577. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  578.     xmlns:app="http://schemas.android.com/apk/res-auto"
  579.     xmlns:tools="http://schemas.android.com/tools"
  580.     android:layout_width="match_parent"
  581.     android:layout_height="match_parent"
  582.     tools:context=".Welcome">
  583.     <TextView
  584.         android:id="@+id/mainword"
  585.         android:layout_width="fill_parent"
  586.         android:layout_height="fill_parent"
  587.         android:gravity="center"
  588.         android:textSize="22dp"
  589.         tools:ignore="MissingConstraints" />
  590. </androidx.constraintlayout.widget.ConstraintLayout>mysql = new Mysql(this,"Userinfo",null,1);<?xml version="1.0" encoding="utf-8"?>
  591. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  592.     xmlns:app="http://schemas.android.com/apk/res-auto"
  593.     xmlns:tools="http://schemas.android.com/tools"
  594.     android:layout_width="match_parent"
  595.     android:layout_height="match_parent"
  596.     tools:context=".Welcome">
  597.     <TextView
  598.         android:id="@+id/mainword"
  599.         android:layout_width="fill_parent"
  600.         android:layout_height="fill_parent"
  601.         android:gravity="center"
  602.         android:textSize="22dp"
  603.         tools:ignore="MissingConstraints" />
  604. </androidx.constraintlayout.widget.ConstraintLayout>  //建数据库或者取数据库
  605. <?xml version="1.0" encoding="utf-8"?>
  606. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  607.     xmlns:app="http://schemas.android.com/apk/res-auto"
  608.     xmlns:tools="http://schemas.android.com/tools"
  609.     android:layout_width="match_parent"
  610.     android:layout_height="match_parent"
  611.     tools:context=".Welcome">
  612.     <TextView
  613.         android:id="@+id/mainword"
  614.         android:layout_width="fill_parent"
  615.         android:layout_height="fill_parent"
  616.         android:gravity="center"
  617.         android:textSize="22dp"
  618.         tools:ignore="MissingConstraints" />
  619. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  620. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  621.     xmlns:app="http://schemas.android.com/apk/res-auto"
  622.     xmlns:tools="http://schemas.android.com/tools"
  623.     android:layout_width="match_parent"
  624.     android:layout_height="match_parent"
  625.     tools:context=".Welcome">
  626.     <TextView
  627.         android:id="@+id/mainword"
  628.         android:layout_width="fill_parent"
  629.         android:layout_height="fill_parent"
  630.         android:gravity="center"
  631.         android:textSize="22dp"
  632.         tools:ignore="MissingConstraints" />
  633. </androidx.constraintlayout.widget.ConstraintLayout>db = mysql.getReadableDatabase();
  634. <?xml version="1.0" encoding="utf-8"?>
  635. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  636.     xmlns:app="http://schemas.android.com/apk/res-auto"
  637.     xmlns:tools="http://schemas.android.com/tools"
  638.     android:layout_width="match_parent"
  639.     android:layout_height="match_parent"
  640.     tools:context=".Welcome">
  641.     <TextView
  642.         android:id="@+id/mainword"
  643.         android:layout_width="fill_parent"
  644.         android:layout_height="fill_parent"
  645.         android:gravity="center"
  646.         android:textSize="22dp"
  647.         tools:ignore="MissingConstraints" />
  648. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  649. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  650.     xmlns:app="http://schemas.android.com/apk/res-auto"
  651.     xmlns:tools="http://schemas.android.com/tools"
  652.     android:layout_width="match_parent"
  653.     android:layout_height="match_parent"
  654.     tools:context=".Welcome">
  655.     <TextView
  656.         android:id="@+id/mainword"
  657.         android:layout_width="fill_parent"
  658.         android:layout_height="fill_parent"
  659.         android:gravity="center"
  660.         android:textSize="22dp"
  661.         tools:ignore="MissingConstraints" />
  662. </androidx.constraintlayout.widget.ConstraintLayout>btnlogin.setOnClickListener(new View.OnClickListener() {<?xml version="1.0" encoding="utf-8"?>
  663. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  664.     xmlns:app="http://schemas.android.com/apk/res-auto"
  665.     xmlns:tools="http://schemas.android.com/tools"
  666.     android:layout_width="match_parent"
  667.     android:layout_height="match_parent"
  668.     tools:context=".Welcome">
  669.     <TextView
  670.         android:id="@+id/mainword"
  671.         android:layout_width="fill_parent"
  672.         android:layout_height="fill_parent"
  673.         android:gravity="center"
  674.         android:textSize="22dp"
  675.         tools:ignore="MissingConstraints" />
  676. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  677. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  678.     xmlns:app="http://schemas.android.com/apk/res-auto"
  679.     xmlns:tools="http://schemas.android.com/tools"
  680.     android:layout_width="match_parent"
  681.     android:layout_height="match_parent"
  682.     tools:context=".Welcome">
  683.     <TextView
  684.         android:id="@+id/mainword"
  685.         android:layout_width="fill_parent"
  686.         android:layout_height="fill_parent"
  687.         android:gravity="center"
  688.         android:textSize="22dp"
  689.         tools:ignore="MissingConstraints" />
  690. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  691. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  692.     xmlns:app="http://schemas.android.com/apk/res-auto"
  693.     xmlns:tools="http://schemas.android.com/tools"
  694.     android:layout_width="match_parent"
  695.     android:layout_height="match_parent"
  696.     tools:context=".Welcome">
  697.     <TextView
  698.         android:id="@+id/mainword"
  699.         android:layout_width="fill_parent"
  700.         android:layout_height="fill_parent"
  701.         android:gravity="center"
  702.         android:textSize="22dp"
  703.         tools:ignore="MissingConstraints" />
  704. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  705. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  706.     xmlns:app="http://schemas.android.com/apk/res-auto"
  707.     xmlns:tools="http://schemas.android.com/tools"
  708.     android:layout_width="match_parent"
  709.     android:layout_height="match_parent"
  710.     tools:context=".Welcome">
  711.     <TextView
  712.         android:id="@+id/mainword"
  713.         android:layout_width="fill_parent"
  714.         android:layout_height="fill_parent"
  715.         android:gravity="center"
  716.         android:textSize="22dp"
  717.         tools:ignore="MissingConstraints" />
  718. </androidx.constraintlayout.widget.ConstraintLayout>//登录事件
  719. <?xml version="1.0" encoding="utf-8"?>
  720. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  721.     xmlns:app="http://schemas.android.com/apk/res-auto"
  722.     xmlns:tools="http://schemas.android.com/tools"
  723.     android:layout_width="match_parent"
  724.     android:layout_height="match_parent"
  725.     tools:context=".Welcome">
  726.     <TextView
  727.         android:id="@+id/mainword"
  728.         android:layout_width="fill_parent"
  729.         android:layout_height="fill_parent"
  730.         android:gravity="center"
  731.         android:textSize="22dp"
  732.         tools:ignore="MissingConstraints" />
  733. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  734. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  735.     xmlns:app="http://schemas.android.com/apk/res-auto"
  736.     xmlns:tools="http://schemas.android.com/tools"
  737.     android:layout_width="match_parent"
  738.     android:layout_height="match_parent"
  739.     tools:context=".Welcome">
  740.     <TextView
  741.         android:id="@+id/mainword"
  742.         android:layout_width="fill_parent"
  743.         android:layout_height="fill_parent"
  744.         android:gravity="center"
  745.         android:textSize="22dp"
  746.         tools:ignore="MissingConstraints" />
  747. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  748. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  749.     xmlns:app="http://schemas.android.com/apk/res-auto"
  750.     xmlns:tools="http://schemas.android.com/tools"
  751.     android:layout_width="match_parent"
  752.     android:layout_height="match_parent"
  753.     tools:context=".Welcome">
  754.     <TextView
  755.         android:id="@+id/mainword"
  756.         android:layout_width="fill_parent"
  757.         android:layout_height="fill_parent"
  758.         android:gravity="center"
  759.         android:textSize="22dp"
  760.         tools:ignore="MissingConstraints" />
  761. </androidx.constraintlayout.widget.ConstraintLayout>@Override
  762. <?xml version="1.0" encoding="utf-8"?>
  763. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  764.     xmlns:app="http://schemas.android.com/apk/res-auto"
  765.     xmlns:tools="http://schemas.android.com/tools"
  766.     android:layout_width="match_parent"
  767.     android:layout_height="match_parent"
  768.     tools:context=".Welcome">
  769.     <TextView
  770.         android:id="@+id/mainword"
  771.         android:layout_width="fill_parent"
  772.         android:layout_height="fill_parent"
  773.         android:gravity="center"
  774.         android:textSize="22dp"
  775.         tools:ignore="MissingConstraints" />
  776. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  777. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  778.     xmlns:app="http://schemas.android.com/apk/res-auto"
  779.     xmlns:tools="http://schemas.android.com/tools"
  780.     android:layout_width="match_parent"
  781.     android:layout_height="match_parent"
  782.     tools:context=".Welcome">
  783.     <TextView
  784.         android:id="@+id/mainword"
  785.         android:layout_width="fill_parent"
  786.         android:layout_height="fill_parent"
  787.         android:gravity="center"
  788.         android:textSize="22dp"
  789.         tools:ignore="MissingConstraints" />
  790. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  791. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  792.     xmlns:app="http://schemas.android.com/apk/res-auto"
  793.     xmlns:tools="http://schemas.android.com/tools"
  794.     android:layout_width="match_parent"
  795.     android:layout_height="match_parent"
  796.     tools:context=".Welcome">
  797.     <TextView
  798.         android:id="@+id/mainword"
  799.         android:layout_width="fill_parent"
  800.         android:layout_height="fill_parent"
  801.         android:gravity="center"
  802.         android:textSize="22dp"
  803.         tools:ignore="MissingConstraints" />
  804. </androidx.constraintlayout.widget.ConstraintLayout>public void onClick(View v) {
  805. <?xml version="1.0" encoding="utf-8"?>
  806. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  807.     xmlns:app="http://schemas.android.com/apk/res-auto"
  808.     xmlns:tools="http://schemas.android.com/tools"
  809.     android:layout_width="match_parent"
  810.     android:layout_height="match_parent"
  811.     tools:context=".Welcome">
  812.     <TextView
  813.         android:id="@+id/mainword"
  814.         android:layout_width="fill_parent"
  815.         android:layout_height="fill_parent"
  816.         android:gravity="center"
  817.         android:textSize="22dp"
  818.         tools:ignore="MissingConstraints" />
  819. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  820. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  821.     xmlns:app="http://schemas.android.com/apk/res-auto"
  822.     xmlns:tools="http://schemas.android.com/tools"
  823.     android:layout_width="match_parent"
  824.     android:layout_height="match_parent"
  825.     tools:context=".Welcome">
  826.     <TextView
  827.         android:id="@+id/mainword"
  828.         android:layout_width="fill_parent"
  829.         android:layout_height="fill_parent"
  830.         android:gravity="center"
  831.         android:textSize="22dp"
  832.         tools:ignore="MissingConstraints" />
  833. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  834. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  835.     xmlns:app="http://schemas.android.com/apk/res-auto"
  836.     xmlns:tools="http://schemas.android.com/tools"
  837.     android:layout_width="match_parent"
  838.     android:layout_height="match_parent"
  839.     tools:context=".Welcome">
  840.     <TextView
  841.         android:id="@+id/mainword"
  842.         android:layout_width="fill_parent"
  843.         android:layout_height="fill_parent"
  844.         android:gravity="center"
  845.         android:textSize="22dp"
  846.         tools:ignore="MissingConstraints" />
  847. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  848. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  849.     xmlns:app="http://schemas.android.com/apk/res-auto"
  850.     xmlns:tools="http://schemas.android.com/tools"
  851.     android:layout_width="match_parent"
  852.     android:layout_height="match_parent"
  853.     tools:context=".Welcome">
  854.     <TextView
  855.         android:id="@+id/mainword"
  856.         android:layout_width="fill_parent"
  857.         android:layout_height="fill_parent"
  858.         android:gravity="center"
  859.         android:textSize="22dp"
  860.         tools:ignore="MissingConstraints" />
  861. </androidx.constraintlayout.widget.ConstraintLayout>String username = name.getText().toString();
  862. <?xml version="1.0" encoding="utf-8"?>
  863. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  864.     xmlns:app="http://schemas.android.com/apk/res-auto"
  865.     xmlns:tools="http://schemas.android.com/tools"
  866.     android:layout_width="match_parent"
  867.     android:layout_height="match_parent"
  868.     tools:context=".Welcome">
  869.     <TextView
  870.         android:id="@+id/mainword"
  871.         android:layout_width="fill_parent"
  872.         android:layout_height="fill_parent"
  873.         android:gravity="center"
  874.         android:textSize="22dp"
  875.         tools:ignore="MissingConstraints" />
  876. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  877. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  878.     xmlns:app="http://schemas.android.com/apk/res-auto"
  879.     xmlns:tools="http://schemas.android.com/tools"
  880.     android:layout_width="match_parent"
  881.     android:layout_height="match_parent"
  882.     tools:context=".Welcome">
  883.     <TextView
  884.         android:id="@+id/mainword"
  885.         android:layout_width="fill_parent"
  886.         android:layout_height="fill_parent"
  887.         android:gravity="center"
  888.         android:textSize="22dp"
  889.         tools:ignore="MissingConstraints" />
  890. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  891. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  892.     xmlns:app="http://schemas.android.com/apk/res-auto"
  893.     xmlns:tools="http://schemas.android.com/tools"
  894.     android:layout_width="match_parent"
  895.     android:layout_height="match_parent"
  896.     tools:context=".Welcome">
  897.     <TextView
  898.         android:id="@+id/mainword"
  899.         android:layout_width="fill_parent"
  900.         android:layout_height="fill_parent"
  901.         android:gravity="center"
  902.         android:textSize="22dp"
  903.         tools:ignore="MissingConstraints" />
  904. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  905. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  906.     xmlns:app="http://schemas.android.com/apk/res-auto"
  907.     xmlns:tools="http://schemas.android.com/tools"
  908.     android:layout_width="match_parent"
  909.     android:layout_height="match_parent"
  910.     tools:context=".Welcome">
  911.     <TextView
  912.         android:id="@+id/mainword"
  913.         android:layout_width="fill_parent"
  914.         android:layout_height="fill_parent"
  915.         android:gravity="center"
  916.         android:textSize="22dp"
  917.         tools:ignore="MissingConstraints" />
  918. </androidx.constraintlayout.widget.ConstraintLayout>String password = pwd.getText().toString();<?xml version="1.0" encoding="utf-8"?>
  919. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  920.     xmlns:app="http://schemas.android.com/apk/res-auto"
  921.     xmlns:tools="http://schemas.android.com/tools"
  922.     android:layout_width="match_parent"
  923.     android:layout_height="match_parent"
  924.     tools:context=".Welcome">
  925.     <TextView
  926.         android:id="@+id/mainword"
  927.         android:layout_width="fill_parent"
  928.         android:layout_height="fill_parent"
  929.         android:gravity="center"
  930.         android:textSize="22dp"
  931.         tools:ignore="MissingConstraints" />
  932. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  933. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  934.     xmlns:app="http://schemas.android.com/apk/res-auto"
  935.     xmlns:tools="http://schemas.android.com/tools"
  936.     android:layout_width="match_parent"
  937.     android:layout_height="match_parent"
  938.     tools:context=".Welcome">
  939.     <TextView
  940.         android:id="@+id/mainword"
  941.         android:layout_width="fill_parent"
  942.         android:layout_height="fill_parent"
  943.         android:gravity="center"
  944.         android:textSize="22dp"
  945.         tools:ignore="MissingConstraints" />
  946. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  947. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  948.     xmlns:app="http://schemas.android.com/apk/res-auto"
  949.     xmlns:tools="http://schemas.android.com/tools"
  950.     android:layout_width="match_parent"
  951.     android:layout_height="match_parent"
  952.     tools:context=".Welcome">
  953.     <TextView
  954.         android:id="@+id/mainword"
  955.         android:layout_width="fill_parent"
  956.         android:layout_height="fill_parent"
  957.         android:gravity="center"
  958.         android:textSize="22dp"
  959.         tools:ignore="MissingConstraints" />
  960. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  961. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  962.     xmlns:app="http://schemas.android.com/apk/res-auto"
  963.     xmlns:tools="http://schemas.android.com/tools"
  964.     android:layout_width="match_parent"
  965.     android:layout_height="match_parent"
  966.     tools:context=".Welcome">
  967.     <TextView
  968.         android:id="@+id/mainword"
  969.         android:layout_width="fill_parent"
  970.         android:layout_height="fill_parent"
  971.         android:gravity="center"
  972.         android:textSize="22dp"
  973.         tools:ignore="MissingConstraints" />
  974. </androidx.constraintlayout.widget.ConstraintLayout> //获取用户输入的用户名和密码
  975. <?xml version="1.0" encoding="utf-8"?>
  976. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  977.     xmlns:app="http://schemas.android.com/apk/res-auto"
  978.     xmlns:tools="http://schemas.android.com/tools"
  979.     android:layout_width="match_parent"
  980.     android:layout_height="match_parent"
  981.     tools:context=".Welcome">
  982.     <TextView
  983.         android:id="@+id/mainword"
  984.         android:layout_width="fill_parent"
  985.         android:layout_height="fill_parent"
  986.         android:gravity="center"
  987.         android:textSize="22dp"
  988.         tools:ignore="MissingConstraints" />
  989. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  990. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  991.     xmlns:app="http://schemas.android.com/apk/res-auto"
  992.     xmlns:tools="http://schemas.android.com/tools"
  993.     android:layout_width="match_parent"
  994.     android:layout_height="match_parent"
  995.     tools:context=".Welcome">
  996.     <TextView
  997.         android:id="@+id/mainword"
  998.         android:layout_width="fill_parent"
  999.         android:layout_height="fill_parent"
  1000.         android:gravity="center"
  1001.         android:textSize="22dp"
  1002.         tools:ignore="MissingConstraints" />
  1003. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1004. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1005.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1006.     xmlns:tools="http://schemas.android.com/tools"
  1007.     android:layout_width="match_parent"
  1008.     android:layout_height="match_parent"
  1009.     tools:context=".Welcome">
  1010.     <TextView
  1011.         android:id="@+id/mainword"
  1012.         android:layout_width="fill_parent"
  1013.         android:layout_height="fill_parent"
  1014.         android:gravity="center"
  1015.         android:textSize="22dp"
  1016.         tools:ignore="MissingConstraints" />
  1017. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1018. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1019.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1020.     xmlns:tools="http://schemas.android.com/tools"
  1021.     android:layout_width="match_parent"
  1022.     android:layout_height="match_parent"
  1023.     tools:context=".Welcome">
  1024.     <TextView
  1025.         android:id="@+id/mainword"
  1026.         android:layout_width="fill_parent"
  1027.         android:layout_height="fill_parent"
  1028.         android:gravity="center"
  1029.         android:textSize="22dp"
  1030.         tools:ignore="MissingConstraints" />
  1031. </androidx.constraintlayout.widget.ConstraintLayout>//查询用户名和密码相同的数据
  1032. <?xml version="1.0" encoding="utf-8"?>
  1033. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1034.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1035.     xmlns:tools="http://schemas.android.com/tools"
  1036.     android:layout_width="match_parent"
  1037.     android:layout_height="match_parent"
  1038.     tools:context=".Welcome">
  1039.     <TextView
  1040.         android:id="@+id/mainword"
  1041.         android:layout_width="fill_parent"
  1042.         android:layout_height="fill_parent"
  1043.         android:gravity="center"
  1044.         android:textSize="22dp"
  1045.         tools:ignore="MissingConstraints" />
  1046. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1047. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1048.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1049.     xmlns:tools="http://schemas.android.com/tools"
  1050.     android:layout_width="match_parent"
  1051.     android:layout_height="match_parent"
  1052.     tools:context=".Welcome">
  1053.     <TextView
  1054.         android:id="@+id/mainword"
  1055.         android:layout_width="fill_parent"
  1056.         android:layout_height="fill_parent"
  1057.         android:gravity="center"
  1058.         android:textSize="22dp"
  1059.         tools:ignore="MissingConstraints" />
  1060. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1061. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1062.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1063.     xmlns:tools="http://schemas.android.com/tools"
  1064.     android:layout_width="match_parent"
  1065.     android:layout_height="match_parent"
  1066.     tools:context=".Welcome">
  1067.     <TextView
  1068.         android:id="@+id/mainword"
  1069.         android:layout_width="fill_parent"
  1070.         android:layout_height="fill_parent"
  1071.         android:gravity="center"
  1072.         android:textSize="22dp"
  1073.         tools:ignore="MissingConstraints" />
  1074. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1075. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1076.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1077.     xmlns:tools="http://schemas.android.com/tools"
  1078.     android:layout_width="match_parent"
  1079.     android:layout_height="match_parent"
  1080.     tools:context=".Welcome">
  1081.     <TextView
  1082.         android:id="@+id/mainword"
  1083.         android:layout_width="fill_parent"
  1084.         android:layout_height="fill_parent"
  1085.         android:gravity="center"
  1086.         android:textSize="22dp"
  1087.         tools:ignore="MissingConstraints" />
  1088. </androidx.constraintlayout.widget.ConstraintLayout>Cursor cursor = db.query("logins",new String[]{"usname","uspwd"}," usname=? and uspwd=?",new String[]{username,password},null,null,null);
  1089. <?xml version="1.0" encoding="utf-8"?>
  1090. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1091.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1092.     xmlns:tools="http://schemas.android.com/tools"
  1093.     android:layout_width="match_parent"
  1094.     android:layout_height="match_parent"
  1095.     tools:context=".Welcome">
  1096.     <TextView
  1097.         android:id="@+id/mainword"
  1098.         android:layout_width="fill_parent"
  1099.         android:layout_height="fill_parent"
  1100.         android:gravity="center"
  1101.         android:textSize="22dp"
  1102.         tools:ignore="MissingConstraints" />
  1103. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1104. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1105.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1106.     xmlns:tools="http://schemas.android.com/tools"
  1107.     android:layout_width="match_parent"
  1108.     android:layout_height="match_parent"
  1109.     tools:context=".Welcome">
  1110.     <TextView
  1111.         android:id="@+id/mainword"
  1112.         android:layout_width="fill_parent"
  1113.         android:layout_height="fill_parent"
  1114.         android:gravity="center"
  1115.         android:textSize="22dp"
  1116.         tools:ignore="MissingConstraints" />
  1117. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1118. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1119.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1120.     xmlns:tools="http://schemas.android.com/tools"
  1121.     android:layout_width="match_parent"
  1122.     android:layout_height="match_parent"
  1123.     tools:context=".Welcome">
  1124.     <TextView
  1125.         android:id="@+id/mainword"
  1126.         android:layout_width="fill_parent"
  1127.         android:layout_height="fill_parent"
  1128.         android:gravity="center"
  1129.         android:textSize="22dp"
  1130.         tools:ignore="MissingConstraints" />
  1131. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1132. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1133.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1134.     xmlns:tools="http://schemas.android.com/tools"
  1135.     android:layout_width="match_parent"
  1136.     android:layout_height="match_parent"
  1137.     tools:context=".Welcome">
  1138.     <TextView
  1139.         android:id="@+id/mainword"
  1140.         android:layout_width="fill_parent"
  1141.         android:layout_height="fill_parent"
  1142.         android:gravity="center"
  1143.         android:textSize="22dp"
  1144.         tools:ignore="MissingConstraints" />
  1145. </androidx.constraintlayout.widget.ConstraintLayout>int flag = cursor.getCount();<?xml version="1.0" encoding="utf-8"?>
  1146. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1147.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1148.     xmlns:tools="http://schemas.android.com/tools"
  1149.     android:layout_width="match_parent"
  1150.     android:layout_height="match_parent"
  1151.     tools:context=".Welcome">
  1152.     <TextView
  1153.         android:id="@+id/mainword"
  1154.         android:layout_width="fill_parent"
  1155.         android:layout_height="fill_parent"
  1156.         android:gravity="center"
  1157.         android:textSize="22dp"
  1158.         tools:ignore="MissingConstraints" />
  1159. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1160. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1161.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1162.     xmlns:tools="http://schemas.android.com/tools"
  1163.     android:layout_width="match_parent"
  1164.     android:layout_height="match_parent"
  1165.     tools:context=".Welcome">
  1166.     <TextView
  1167.         android:id="@+id/mainword"
  1168.         android:layout_width="fill_parent"
  1169.         android:layout_height="fill_parent"
  1170.         android:gravity="center"
  1171.         android:textSize="22dp"
  1172.         tools:ignore="MissingConstraints" />
  1173. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1174. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1175.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1176.     xmlns:tools="http://schemas.android.com/tools"
  1177.     android:layout_width="match_parent"
  1178.     android:layout_height="match_parent"
  1179.     tools:context=".Welcome">
  1180.     <TextView
  1181.         android:id="@+id/mainword"
  1182.         android:layout_width="fill_parent"
  1183.         android:layout_height="fill_parent"
  1184.         android:gravity="center"
  1185.         android:textSize="22dp"
  1186.         tools:ignore="MissingConstraints" />
  1187. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1188. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1189.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1190.     xmlns:tools="http://schemas.android.com/tools"
  1191.     android:layout_width="match_parent"
  1192.     android:layout_height="match_parent"
  1193.     tools:context=".Welcome">
  1194.     <TextView
  1195.         android:id="@+id/mainword"
  1196.         android:layout_width="fill_parent"
  1197.         android:layout_height="fill_parent"
  1198.         android:gravity="center"
  1199.         android:textSize="22dp"
  1200.         tools:ignore="MissingConstraints" />
  1201. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1202. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1203.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1204.     xmlns:tools="http://schemas.android.com/tools"
  1205.     android:layout_width="match_parent"
  1206.     android:layout_height="match_parent"
  1207.     tools:context=".Welcome">
  1208.     <TextView
  1209.         android:id="@+id/mainword"
  1210.         android:layout_width="fill_parent"
  1211.         android:layout_height="fill_parent"
  1212.         android:gravity="center"
  1213.         android:textSize="22dp"
  1214.         tools:ignore="MissingConstraints" />
  1215. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1216. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1217.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1218.     xmlns:tools="http://schemas.android.com/tools"
  1219.     android:layout_width="match_parent"
  1220.     android:layout_height="match_parent"
  1221.     tools:context=".Welcome">
  1222.     <TextView
  1223.         android:id="@+id/mainword"
  1224.         android:layout_width="fill_parent"
  1225.         android:layout_height="fill_parent"
  1226.         android:gravity="center"
  1227.         android:textSize="22dp"
  1228.         tools:ignore="MissingConstraints" />
  1229. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1230. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1231.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1232.     xmlns:tools="http://schemas.android.com/tools"
  1233.     android:layout_width="match_parent"
  1234.     android:layout_height="match_parent"
  1235.     tools:context=".Welcome">
  1236.     <TextView
  1237.         android:id="@+id/mainword"
  1238.         android:layout_width="fill_parent"
  1239.         android:layout_height="fill_parent"
  1240.         android:gravity="center"
  1241.         android:textSize="22dp"
  1242.         tools:ignore="MissingConstraints" />
  1243. </androidx.constraintlayout.widget.ConstraintLayout>//查询出来的记录项的条数,若没有该用户则为0条
  1244. <?xml version="1.0" encoding="utf-8"?>
  1245. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1246.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1247.     xmlns:tools="http://schemas.android.com/tools"
  1248.     android:layout_width="match_parent"
  1249.     android:layout_height="match_parent"
  1250.     tools:context=".Welcome">
  1251.     <TextView
  1252.         android:id="@+id/mainword"
  1253.         android:layout_width="fill_parent"
  1254.         android:layout_height="fill_parent"
  1255.         android:gravity="center"
  1256.         android:textSize="22dp"
  1257.         tools:ignore="MissingConstraints" />
  1258. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1259. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1260.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1261.     xmlns:tools="http://schemas.android.com/tools"
  1262.     android:layout_width="match_parent"
  1263.     android:layout_height="match_parent"
  1264.     tools:context=".Welcome">
  1265.     <TextView
  1266.         android:id="@+id/mainword"
  1267.         android:layout_width="fill_parent"
  1268.         android:layout_height="fill_parent"
  1269.         android:gravity="center"
  1270.         android:textSize="22dp"
  1271.         tools:ignore="MissingConstraints" />
  1272. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1273. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1274.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1275.     xmlns:tools="http://schemas.android.com/tools"
  1276.     android:layout_width="match_parent"
  1277.     android:layout_height="match_parent"
  1278.     tools:context=".Welcome">
  1279.     <TextView
  1280.         android:id="@+id/mainword"
  1281.         android:layout_width="fill_parent"
  1282.         android:layout_height="fill_parent"
  1283.         android:gravity="center"
  1284.         android:textSize="22dp"
  1285.         tools:ignore="MissingConstraints" />
  1286. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1287. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1288.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1289.     xmlns:tools="http://schemas.android.com/tools"
  1290.     android:layout_width="match_parent"
  1291.     android:layout_height="match_parent"
  1292.     tools:context=".Welcome">
  1293.     <TextView
  1294.         android:id="@+id/mainword"
  1295.         android:layout_width="fill_parent"
  1296.         android:layout_height="fill_parent"
  1297.         android:gravity="center"
  1298.         android:textSize="22dp"
  1299.         tools:ignore="MissingConstraints" />
  1300. </androidx.constraintlayout.widget.ConstraintLayout>if(flag!=0){<?xml version="1.0" encoding="utf-8"?>
  1301. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1302.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1303.     xmlns:tools="http://schemas.android.com/tools"
  1304.     android:layout_width="match_parent"
  1305.     android:layout_height="match_parent"
  1306.     tools:context=".Welcome">
  1307.     <TextView
  1308.         android:id="@+id/mainword"
  1309.         android:layout_width="fill_parent"
  1310.         android:layout_height="fill_parent"
  1311.         android:gravity="center"
  1312.         android:textSize="22dp"
  1313.         tools:ignore="MissingConstraints" />
  1314. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1315. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1316.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1317.     xmlns:tools="http://schemas.android.com/tools"
  1318.     android:layout_width="match_parent"
  1319.     android:layout_height="match_parent"
  1320.     tools:context=".Welcome">
  1321.     <TextView
  1322.         android:id="@+id/mainword"
  1323.         android:layout_width="fill_parent"
  1324.         android:layout_height="fill_parent"
  1325.         android:gravity="center"
  1326.         android:textSize="22dp"
  1327.         tools:ignore="MissingConstraints" />
  1328. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1329. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1330.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1331.     xmlns:tools="http://schemas.android.com/tools"
  1332.     android:layout_width="match_parent"
  1333.     android:layout_height="match_parent"
  1334.     tools:context=".Welcome">
  1335.     <TextView
  1336.         android:id="@+id/mainword"
  1337.         android:layout_width="fill_parent"
  1338.         android:layout_height="fill_parent"
  1339.         android:gravity="center"
  1340.         android:textSize="22dp"
  1341.         tools:ignore="MissingConstraints" />
  1342. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1343. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1344.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1345.     xmlns:tools="http://schemas.android.com/tools"
  1346.     android:layout_width="match_parent"
  1347.     android:layout_height="match_parent"
  1348.     tools:context=".Welcome">
  1349.     <TextView
  1350.         android:id="@+id/mainword"
  1351.         android:layout_width="fill_parent"
  1352.         android:layout_height="fill_parent"
  1353.         android:gravity="center"
  1354.         android:textSize="22dp"
  1355.         tools:ignore="MissingConstraints" />
  1356. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1357. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1358.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1359.     xmlns:tools="http://schemas.android.com/tools"
  1360.     android:layout_width="match_parent"
  1361.     android:layout_height="match_parent"
  1362.     tools:context=".Welcome">
  1363.     <TextView
  1364.         android:id="@+id/mainword"
  1365.         android:layout_width="fill_parent"
  1366.         android:layout_height="fill_parent"
  1367.         android:gravity="center"
  1368.         android:textSize="22dp"
  1369.         tools:ignore="MissingConstraints" />
  1370. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1371. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1372.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1373.     xmlns:tools="http://schemas.android.com/tools"
  1374.     android:layout_width="match_parent"
  1375.     android:layout_height="match_parent"
  1376.     tools:context=".Welcome">
  1377.     <TextView
  1378.         android:id="@+id/mainword"
  1379.         android:layout_width="fill_parent"
  1380.         android:layout_height="fill_parent"
  1381.         android:gravity="center"
  1382.         android:textSize="22dp"
  1383.         tools:ignore="MissingConstraints" />
  1384. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1385. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1386.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1387.     xmlns:tools="http://schemas.android.com/tools"
  1388.     android:layout_width="match_parent"
  1389.     android:layout_height="match_parent"
  1390.     tools:context=".Welcome">
  1391.     <TextView
  1392.         android:id="@+id/mainword"
  1393.         android:layout_width="fill_parent"
  1394.         android:layout_height="fill_parent"
  1395.         android:gravity="center"
  1396.         android:textSize="22dp"
  1397.         tools:ignore="MissingConstraints" />
  1398. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1399. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1400.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1401.     xmlns:tools="http://schemas.android.com/tools"
  1402.     android:layout_width="match_parent"
  1403.     android:layout_height="match_parent"
  1404.     tools:context=".Welcome">
  1405.     <TextView
  1406.         android:id="@+id/mainword"
  1407.         android:layout_width="fill_parent"
  1408.         android:layout_height="fill_parent"
  1409.         android:gravity="center"
  1410.         android:textSize="22dp"
  1411.         tools:ignore="MissingConstraints" />
  1412. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1413. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1414.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1415.     xmlns:tools="http://schemas.android.com/tools"
  1416.     android:layout_width="match_parent"
  1417.     android:layout_height="match_parent"
  1418.     tools:context=".Welcome">
  1419.     <TextView
  1420.         android:id="@+id/mainword"
  1421.         android:layout_width="fill_parent"
  1422.         android:layout_height="fill_parent"
  1423.         android:gravity="center"
  1424.         android:textSize="22dp"
  1425.         tools:ignore="MissingConstraints" />
  1426. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1427. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1428.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1429.     xmlns:tools="http://schemas.android.com/tools"
  1430.     android:layout_width="match_parent"
  1431.     android:layout_height="match_parent"
  1432.     tools:context=".Welcome">
  1433.     <TextView
  1434.         android:id="@+id/mainword"
  1435.         android:layout_width="fill_parent"
  1436.         android:layout_height="fill_parent"
  1437.         android:gravity="center"
  1438.         android:textSize="22dp"
  1439.         tools:ignore="MissingConstraints" />
  1440. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1441. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1442.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1443.     xmlns:tools="http://schemas.android.com/tools"
  1444.     android:layout_width="match_parent"
  1445.     android:layout_height="match_parent"
  1446.     tools:context=".Welcome">
  1447.     <TextView
  1448.         android:id="@+id/mainword"
  1449.         android:layout_width="fill_parent"
  1450.         android:layout_height="fill_parent"
  1451.         android:gravity="center"
  1452.         android:textSize="22dp"
  1453.         tools:ignore="MissingConstraints" />
  1454. </androidx.constraintlayout.widget.ConstraintLayout>//若查询出的记录不为0,则进行跳转操作
  1455. <?xml version="1.0" encoding="utf-8"?>
  1456. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1457.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1458.     xmlns:tools="http://schemas.android.com/tools"
  1459.     android:layout_width="match_parent"
  1460.     android:layout_height="match_parent"
  1461.     tools:context=".Welcome">
  1462.     <TextView
  1463.         android:id="@+id/mainword"
  1464.         android:layout_width="fill_parent"
  1465.         android:layout_height="fill_parent"
  1466.         android:gravity="center"
  1467.         android:textSize="22dp"
  1468.         tools:ignore="MissingConstraints" />
  1469. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1470. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1471.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1472.     xmlns:tools="http://schemas.android.com/tools"
  1473.     android:layout_width="match_parent"
  1474.     android:layout_height="match_parent"
  1475.     tools:context=".Welcome">
  1476.     <TextView
  1477.         android:id="@+id/mainword"
  1478.         android:layout_width="fill_parent"
  1479.         android:layout_height="fill_parent"
  1480.         android:gravity="center"
  1481.         android:textSize="22dp"
  1482.         tools:ignore="MissingConstraints" />
  1483. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1484. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1485.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1486.     xmlns:tools="http://schemas.android.com/tools"
  1487.     android:layout_width="match_parent"
  1488.     android:layout_height="match_parent"
  1489.     tools:context=".Welcome">
  1490.     <TextView
  1491.         android:id="@+id/mainword"
  1492.         android:layout_width="fill_parent"
  1493.         android:layout_height="fill_parent"
  1494.         android:gravity="center"
  1495.         android:textSize="22dp"
  1496.         tools:ignore="MissingConstraints" />
  1497. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1498. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1499.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1500.     xmlns:tools="http://schemas.android.com/tools"
  1501.     android:layout_width="match_parent"
  1502.     android:layout_height="match_parent"
  1503.     tools:context=".Welcome">
  1504.     <TextView
  1505.         android:id="@+id/mainword"
  1506.         android:layout_width="fill_parent"
  1507.         android:layout_height="fill_parent"
  1508.         android:gravity="center"
  1509.         android:textSize="22dp"
  1510.         tools:ignore="MissingConstraints" />
  1511. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1512. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1513.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1514.     xmlns:tools="http://schemas.android.com/tools"
  1515.     android:layout_width="match_parent"
  1516.     android:layout_height="match_parent"
  1517.     tools:context=".Welcome">
  1518.     <TextView
  1519.         android:id="@+id/mainword"
  1520.         android:layout_width="fill_parent"
  1521.         android:layout_height="fill_parent"
  1522.         android:gravity="center"
  1523.         android:textSize="22dp"
  1524.         tools:ignore="MissingConstraints" />
  1525. </androidx.constraintlayout.widget.ConstraintLayout>Intent intent = new Intent();
  1526. <?xml version="1.0" encoding="utf-8"?>
  1527. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1528.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1529.     xmlns:tools="http://schemas.android.com/tools"
  1530.     android:layout_width="match_parent"
  1531.     android:layout_height="match_parent"
  1532.     tools:context=".Welcome">
  1533.     <TextView
  1534.         android:id="@+id/mainword"
  1535.         android:layout_width="fill_parent"
  1536.         android:layout_height="fill_parent"
  1537.         android:gravity="center"
  1538.         android:textSize="22dp"
  1539.         tools:ignore="MissingConstraints" />
  1540. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1541. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1542.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1543.     xmlns:tools="http://schemas.android.com/tools"
  1544.     android:layout_width="match_parent"
  1545.     android:layout_height="match_parent"
  1546.     tools:context=".Welcome">
  1547.     <TextView
  1548.         android:id="@+id/mainword"
  1549.         android:layout_width="fill_parent"
  1550.         android:layout_height="fill_parent"
  1551.         android:gravity="center"
  1552.         android:textSize="22dp"
  1553.         tools:ignore="MissingConstraints" />
  1554. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1555. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1556.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1557.     xmlns:tools="http://schemas.android.com/tools"
  1558.     android:layout_width="match_parent"
  1559.     android:layout_height="match_parent"
  1560.     tools:context=".Welcome">
  1561.     <TextView
  1562.         android:id="@+id/mainword"
  1563.         android:layout_width="fill_parent"
  1564.         android:layout_height="fill_parent"
  1565.         android:gravity="center"
  1566.         android:textSize="22dp"
  1567.         tools:ignore="MissingConstraints" />
  1568. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1569. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1570.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1571.     xmlns:tools="http://schemas.android.com/tools"
  1572.     android:layout_width="match_parent"
  1573.     android:layout_height="match_parent"
  1574.     tools:context=".Welcome">
  1575.     <TextView
  1576.         android:id="@+id/mainword"
  1577.         android:layout_width="fill_parent"
  1578.         android:layout_height="fill_parent"
  1579.         android:gravity="center"
  1580.         android:textSize="22dp"
  1581.         tools:ignore="MissingConstraints" />
  1582. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1583. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1584.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1585.     xmlns:tools="http://schemas.android.com/tools"
  1586.     android:layout_width="match_parent"
  1587.     android:layout_height="match_parent"
  1588.     tools:context=".Welcome">
  1589.     <TextView
  1590.         android:id="@+id/mainword"
  1591.         android:layout_width="fill_parent"
  1592.         android:layout_height="fill_parent"
  1593.         android:gravity="center"
  1594.         android:textSize="22dp"
  1595.         tools:ignore="MissingConstraints" />
  1596. </androidx.constraintlayout.widget.ConstraintLayout>intent.setClass(MainActivity.this,Welcome.class);<?xml version="1.0" encoding="utf-8"?>
  1597. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1598.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1599.     xmlns:tools="http://schemas.android.com/tools"
  1600.     android:layout_width="match_parent"
  1601.     android:layout_height="match_parent"
  1602.     tools:context=".Welcome">
  1603.     <TextView
  1604.         android:id="@+id/mainword"
  1605.         android:layout_width="fill_parent"
  1606.         android:layout_height="fill_parent"
  1607.         android:gravity="center"
  1608.         android:textSize="22dp"
  1609.         tools:ignore="MissingConstraints" />
  1610. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1611. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1612.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1613.     xmlns:tools="http://schemas.android.com/tools"
  1614.     android:layout_width="match_parent"
  1615.     android:layout_height="match_parent"
  1616.     tools:context=".Welcome">
  1617.     <TextView
  1618.         android:id="@+id/mainword"
  1619.         android:layout_width="fill_parent"
  1620.         android:layout_height="fill_parent"
  1621.         android:gravity="center"
  1622.         android:textSize="22dp"
  1623.         tools:ignore="MissingConstraints" />
  1624. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1625. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1626.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1627.     xmlns:tools="http://schemas.android.com/tools"
  1628.     android:layout_width="match_parent"
  1629.     android:layout_height="match_parent"
  1630.     tools:context=".Welcome">
  1631.     <TextView
  1632.         android:id="@+id/mainword"
  1633.         android:layout_width="fill_parent"
  1634.         android:layout_height="fill_parent"
  1635.         android:gravity="center"
  1636.         android:textSize="22dp"
  1637.         tools:ignore="MissingConstraints" />
  1638. </androidx.constraintlayout.widget.ConstraintLayout>//设置页面跳转
  1639. <?xml version="1.0" encoding="utf-8"?>
  1640. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1641.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1642.     xmlns:tools="http://schemas.android.com/tools"
  1643.     android:layout_width="match_parent"
  1644.     android:layout_height="match_parent"
  1645.     tools:context=".Welcome">
  1646.     <TextView
  1647.         android:id="@+id/mainword"
  1648.         android:layout_width="fill_parent"
  1649.         android:layout_height="fill_parent"
  1650.         android:gravity="center"
  1651.         android:textSize="22dp"
  1652.         tools:ignore="MissingConstraints" />
  1653. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1654. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1655.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1656.     xmlns:tools="http://schemas.android.com/tools"
  1657.     android:layout_width="match_parent"
  1658.     android:layout_height="match_parent"
  1659.     tools:context=".Welcome">
  1660.     <TextView
  1661.         android:id="@+id/mainword"
  1662.         android:layout_width="fill_parent"
  1663.         android:layout_height="fill_parent"
  1664.         android:gravity="center"
  1665.         android:textSize="22dp"
  1666.         tools:ignore="MissingConstraints" />
  1667. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1668. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1669.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1670.     xmlns:tools="http://schemas.android.com/tools"
  1671.     android:layout_width="match_parent"
  1672.     android:layout_height="match_parent"
  1673.     tools:context=".Welcome">
  1674.     <TextView
  1675.         android:id="@+id/mainword"
  1676.         android:layout_width="fill_parent"
  1677.         android:layout_height="fill_parent"
  1678.         android:gravity="center"
  1679.         android:textSize="22dp"
  1680.         tools:ignore="MissingConstraints" />
  1681. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1682. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1683.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1684.     xmlns:tools="http://schemas.android.com/tools"
  1685.     android:layout_width="match_parent"
  1686.     android:layout_height="match_parent"
  1687.     tools:context=".Welcome">
  1688.     <TextView
  1689.         android:id="@+id/mainword"
  1690.         android:layout_width="fill_parent"
  1691.         android:layout_height="fill_parent"
  1692.         android:gravity="center"
  1693.         android:textSize="22dp"
  1694.         tools:ignore="MissingConstraints" />
  1695. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1696. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1697.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1698.     xmlns:tools="http://schemas.android.com/tools"
  1699.     android:layout_width="match_parent"
  1700.     android:layout_height="match_parent"
  1701.     tools:context=".Welcome">
  1702.     <TextView
  1703.         android:id="@+id/mainword"
  1704.         android:layout_width="fill_parent"
  1705.         android:layout_height="fill_parent"
  1706.         android:gravity="center"
  1707.         android:textSize="22dp"
  1708.         tools:ignore="MissingConstraints" />
  1709. </androidx.constraintlayout.widget.ConstraintLayout>SharedPreferences.Editor editor = sp2.edit();
  1710. <?xml version="1.0" encoding="utf-8"?>
  1711. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1712.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1713.     xmlns:tools="http://schemas.android.com/tools"
  1714.     android:layout_width="match_parent"
  1715.     android:layout_height="match_parent"
  1716.     tools:context=".Welcome">
  1717.     <TextView
  1718.         android:id="@+id/mainword"
  1719.         android:layout_width="fill_parent"
  1720.         android:layout_height="fill_parent"
  1721.         android:gravity="center"
  1722.         android:textSize="22dp"
  1723.         tools:ignore="MissingConstraints" />
  1724. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1725. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1726.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1727.     xmlns:tools="http://schemas.android.com/tools"
  1728.     android:layout_width="match_parent"
  1729.     android:layout_height="match_parent"
  1730.     tools:context=".Welcome">
  1731.     <TextView
  1732.         android:id="@+id/mainword"
  1733.         android:layout_width="fill_parent"
  1734.         android:layout_height="fill_parent"
  1735.         android:gravity="center"
  1736.         android:textSize="22dp"
  1737.         tools:ignore="MissingConstraints" />
  1738. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1739. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1740.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1741.     xmlns:tools="http://schemas.android.com/tools"
  1742.     android:layout_width="match_parent"
  1743.     android:layout_height="match_parent"
  1744.     tools:context=".Welcome">
  1745.     <TextView
  1746.         android:id="@+id/mainword"
  1747.         android:layout_width="fill_parent"
  1748.         android:layout_height="fill_parent"
  1749.         android:gravity="center"
  1750.         android:textSize="22dp"
  1751.         tools:ignore="MissingConstraints" />
  1752. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1753. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1754.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1755.     xmlns:tools="http://schemas.android.com/tools"
  1756.     android:layout_width="match_parent"
  1757.     android:layout_height="match_parent"
  1758.     tools:context=".Welcome">
  1759.     <TextView
  1760.         android:id="@+id/mainword"
  1761.         android:layout_width="fill_parent"
  1762.         android:layout_height="fill_parent"
  1763.         android:gravity="center"
  1764.         android:textSize="22dp"
  1765.         tools:ignore="MissingConstraints" />
  1766. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1767. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1768.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1769.     xmlns:tools="http://schemas.android.com/tools"
  1770.     android:layout_width="match_parent"
  1771.     android:layout_height="match_parent"
  1772.     tools:context=".Welcome">
  1773.     <TextView
  1774.         android:id="@+id/mainword"
  1775.         android:layout_width="fill_parent"
  1776.         android:layout_height="fill_parent"
  1777.         android:gravity="center"
  1778.         android:textSize="22dp"
  1779.         tools:ignore="MissingConstraints" />
  1780. </androidx.constraintlayout.widget.ConstraintLayout>cursor.moveToFirst();<?xml version="1.0" encoding="utf-8"?>
  1781. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1782.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1783.     xmlns:tools="http://schemas.android.com/tools"
  1784.     android:layout_width="match_parent"
  1785.     android:layout_height="match_parent"
  1786.     tools:context=".Welcome">
  1787.     <TextView
  1788.         android:id="@+id/mainword"
  1789.         android:layout_width="fill_parent"
  1790.         android:layout_height="fill_parent"
  1791.         android:gravity="center"
  1792.         android:textSize="22dp"
  1793.         tools:ignore="MissingConstraints" />
  1794. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1795. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1796.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1797.     xmlns:tools="http://schemas.android.com/tools"
  1798.     android:layout_width="match_parent"
  1799.     android:layout_height="match_parent"
  1800.     tools:context=".Welcome">
  1801.     <TextView
  1802.         android:id="@+id/mainword"
  1803.         android:layout_width="fill_parent"
  1804.         android:layout_height="fill_parent"
  1805.         android:gravity="center"
  1806.         android:textSize="22dp"
  1807.         tools:ignore="MissingConstraints" />
  1808. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1809. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1810.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1811.     xmlns:tools="http://schemas.android.com/tools"
  1812.     android:layout_width="match_parent"
  1813.     android:layout_height="match_parent"
  1814.     tools:context=".Welcome">
  1815.     <TextView
  1816.         android:id="@+id/mainword"
  1817.         android:layout_width="fill_parent"
  1818.         android:layout_height="fill_parent"
  1819.         android:gravity="center"
  1820.         android:textSize="22dp"
  1821.         tools:ignore="MissingConstraints" />
  1822. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1823. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1824.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1825.     xmlns:tools="http://schemas.android.com/tools"
  1826.     android:layout_width="match_parent"
  1827.     android:layout_height="match_parent"
  1828.     tools:context=".Welcome">
  1829.     <TextView
  1830.         android:id="@+id/mainword"
  1831.         android:layout_width="fill_parent"
  1832.         android:layout_height="fill_parent"
  1833.         android:gravity="center"
  1834.         android:textSize="22dp"
  1835.         tools:ignore="MissingConstraints" />
  1836. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1837. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1838.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1839.     xmlns:tools="http://schemas.android.com/tools"
  1840.     android:layout_width="match_parent"
  1841.     android:layout_height="match_parent"
  1842.     tools:context=".Welcome">
  1843.     <TextView
  1844.         android:id="@+id/mainword"
  1845.         android:layout_width="fill_parent"
  1846.         android:layout_height="fill_parent"
  1847.         android:gravity="center"
  1848.         android:textSize="22dp"
  1849.         tools:ignore="MissingConstraints" />
  1850. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1851. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1852.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1853.     xmlns:tools="http://schemas.android.com/tools"
  1854.     android:layout_width="match_parent"
  1855.     android:layout_height="match_parent"
  1856.     tools:context=".Welcome">
  1857.     <TextView
  1858.         android:id="@+id/mainword"
  1859.         android:layout_width="fill_parent"
  1860.         android:layout_height="fill_parent"
  1861.         android:gravity="center"
  1862.         android:textSize="22dp"
  1863.         tools:ignore="MissingConstraints" />
  1864. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1865. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1866.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1867.     xmlns:tools="http://schemas.android.com/tools"
  1868.     android:layout_width="match_parent"
  1869.     android:layout_height="match_parent"
  1870.     tools:context=".Welcome">
  1871.     <TextView
  1872.         android:id="@+id/mainword"
  1873.         android:layout_width="fill_parent"
  1874.         android:layout_height="fill_parent"
  1875.         android:gravity="center"
  1876.         android:textSize="22dp"
  1877.         tools:ignore="MissingConstraints" />
  1878. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1879. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1880.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1881.     xmlns:tools="http://schemas.android.com/tools"
  1882.     android:layout_width="match_parent"
  1883.     android:layout_height="match_parent"
  1884.     tools:context=".Welcome">
  1885.     <TextView
  1886.         android:id="@+id/mainword"
  1887.         android:layout_width="fill_parent"
  1888.         android:layout_height="fill_parent"
  1889.         android:gravity="center"
  1890.         android:textSize="22dp"
  1891.         tools:ignore="MissingConstraints" />
  1892. </androidx.constraintlayout.widget.ConstraintLayout>   //将光标移动到position为0的位置,默认位置为-1
  1893. <?xml version="1.0" encoding="utf-8"?>
  1894. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1895.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1896.     xmlns:tools="http://schemas.android.com/tools"
  1897.     android:layout_width="match_parent"
  1898.     android:layout_height="match_parent"
  1899.     tools:context=".Welcome">
  1900.     <TextView
  1901.         android:id="@+id/mainword"
  1902.         android:layout_width="fill_parent"
  1903.         android:layout_height="fill_parent"
  1904.         android:gravity="center"
  1905.         android:textSize="22dp"
  1906.         tools:ignore="MissingConstraints" />
  1907. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1908. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1909.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1910.     xmlns:tools="http://schemas.android.com/tools"
  1911.     android:layout_width="match_parent"
  1912.     android:layout_height="match_parent"
  1913.     tools:context=".Welcome">
  1914.     <TextView
  1915.         android:id="@+id/mainword"
  1916.         android:layout_width="fill_parent"
  1917.         android:layout_height="fill_parent"
  1918.         android:gravity="center"
  1919.         android:textSize="22dp"
  1920.         tools:ignore="MissingConstraints" />
  1921. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1922. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1923.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1924.     xmlns:tools="http://schemas.android.com/tools"
  1925.     android:layout_width="match_parent"
  1926.     android:layout_height="match_parent"
  1927.     tools:context=".Welcome">
  1928.     <TextView
  1929.         android:id="@+id/mainword"
  1930.         android:layout_width="fill_parent"
  1931.         android:layout_height="fill_parent"
  1932.         android:gravity="center"
  1933.         android:textSize="22dp"
  1934.         tools:ignore="MissingConstraints" />
  1935. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1936. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1937.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1938.     xmlns:tools="http://schemas.android.com/tools"
  1939.     android:layout_width="match_parent"
  1940.     android:layout_height="match_parent"
  1941.     tools:context=".Welcome">
  1942.     <TextView
  1943.         android:id="@+id/mainword"
  1944.         android:layout_width="fill_parent"
  1945.         android:layout_height="fill_parent"
  1946.         android:gravity="center"
  1947.         android:textSize="22dp"
  1948.         tools:ignore="MissingConstraints" />
  1949. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1950. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1951.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1952.     xmlns:tools="http://schemas.android.com/tools"
  1953.     android:layout_width="match_parent"
  1954.     android:layout_height="match_parent"
  1955.     tools:context=".Welcome">
  1956.     <TextView
  1957.         android:id="@+id/mainword"
  1958.         android:layout_width="fill_parent"
  1959.         android:layout_height="fill_parent"
  1960.         android:gravity="center"
  1961.         android:textSize="22dp"
  1962.         tools:ignore="MissingConstraints" />
  1963. </androidx.constraintlayout.widget.ConstraintLayout>String loginname = cursor.getString(0);
  1964. <?xml version="1.0" encoding="utf-8"?>
  1965. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1966.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1967.     xmlns:tools="http://schemas.android.com/tools"
  1968.     android:layout_width="match_parent"
  1969.     android:layout_height="match_parent"
  1970.     tools:context=".Welcome">
  1971.     <TextView
  1972.         android:id="@+id/mainword"
  1973.         android:layout_width="fill_parent"
  1974.         android:layout_height="fill_parent"
  1975.         android:gravity="center"
  1976.         android:textSize="22dp"
  1977.         tools:ignore="MissingConstraints" />
  1978. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1979. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1980.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1981.     xmlns:tools="http://schemas.android.com/tools"
  1982.     android:layout_width="match_parent"
  1983.     android:layout_height="match_parent"
  1984.     tools:context=".Welcome">
  1985.     <TextView
  1986.         android:id="@+id/mainword"
  1987.         android:layout_width="fill_parent"
  1988.         android:layout_height="fill_parent"
  1989.         android:gravity="center"
  1990.         android:textSize="22dp"
  1991.         tools:ignore="MissingConstraints" />
  1992. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1993. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1994.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1995.     xmlns:tools="http://schemas.android.com/tools"
  1996.     android:layout_width="match_parent"
  1997.     android:layout_height="match_parent"
  1998.     tools:context=".Welcome">
  1999.     <TextView
  2000.         android:id="@+id/mainword"
  2001.         android:layout_width="fill_parent"
  2002.         android:layout_height="fill_parent"
  2003.         android:gravity="center"
  2004.         android:textSize="22dp"
  2005.         tools:ignore="MissingConstraints" />
  2006. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2007. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2008.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2009.     xmlns:tools="http://schemas.android.com/tools"
  2010.     android:layout_width="match_parent"
  2011.     android:layout_height="match_parent"
  2012.     tools:context=".Welcome">
  2013.     <TextView
  2014.         android:id="@+id/mainword"
  2015.         android:layout_width="fill_parent"
  2016.         android:layout_height="fill_parent"
  2017.         android:gravity="center"
  2018.         android:textSize="22dp"
  2019.         tools:ignore="MissingConstraints" />
  2020. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2021. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2022.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2023.     xmlns:tools="http://schemas.android.com/tools"
  2024.     android:layout_width="match_parent"
  2025.     android:layout_height="match_parent"
  2026.     tools:context=".Welcome">
  2027.     <TextView
  2028.         android:id="@+id/mainword"
  2029.         android:layout_width="fill_parent"
  2030.         android:layout_height="fill_parent"
  2031.         android:gravity="center"
  2032.         android:textSize="22dp"
  2033.         tools:ignore="MissingConstraints" />
  2034. </androidx.constraintlayout.widget.ConstraintLayout>editor.putString("Loginname",loginname);
  2035. <?xml version="1.0" encoding="utf-8"?>
  2036. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2037.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2038.     xmlns:tools="http://schemas.android.com/tools"
  2039.     android:layout_width="match_parent"
  2040.     android:layout_height="match_parent"
  2041.     tools:context=".Welcome">
  2042.     <TextView
  2043.         android:id="@+id/mainword"
  2044.         android:layout_width="fill_parent"
  2045.         android:layout_height="fill_parent"
  2046.         android:gravity="center"
  2047.         android:textSize="22dp"
  2048.         tools:ignore="MissingConstraints" />
  2049. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2050. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2051.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2052.     xmlns:tools="http://schemas.android.com/tools"
  2053.     android:layout_width="match_parent"
  2054.     android:layout_height="match_parent"
  2055.     tools:context=".Welcome">
  2056.     <TextView
  2057.         android:id="@+id/mainword"
  2058.         android:layout_width="fill_parent"
  2059.         android:layout_height="fill_parent"
  2060.         android:gravity="center"
  2061.         android:textSize="22dp"
  2062.         tools:ignore="MissingConstraints" />
  2063. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2064. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2065.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2066.     xmlns:tools="http://schemas.android.com/tools"
  2067.     android:layout_width="match_parent"
  2068.     android:layout_height="match_parent"
  2069.     tools:context=".Welcome">
  2070.     <TextView
  2071.         android:id="@+id/mainword"
  2072.         android:layout_width="fill_parent"
  2073.         android:layout_height="fill_parent"
  2074.         android:gravity="center"
  2075.         android:textSize="22dp"
  2076.         tools:ignore="MissingConstraints" />
  2077. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2078. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2079.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2080.     xmlns:tools="http://schemas.android.com/tools"
  2081.     android:layout_width="match_parent"
  2082.     android:layout_height="match_parent"
  2083.     tools:context=".Welcome">
  2084.     <TextView
  2085.         android:id="@+id/mainword"
  2086.         android:layout_width="fill_parent"
  2087.         android:layout_height="fill_parent"
  2088.         android:gravity="center"
  2089.         android:textSize="22dp"
  2090.         tools:ignore="MissingConstraints" />
  2091. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2092. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2093.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2094.     xmlns:tools="http://schemas.android.com/tools"
  2095.     android:layout_width="match_parent"
  2096.     android:layout_height="match_parent"
  2097.     tools:context=".Welcome">
  2098.     <TextView
  2099.         android:id="@+id/mainword"
  2100.         android:layout_width="fill_parent"
  2101.         android:layout_height="fill_parent"
  2102.         android:gravity="center"
  2103.         android:textSize="22dp"
  2104.         tools:ignore="MissingConstraints" />
  2105. </androidx.constraintlayout.widget.ConstraintLayout>editor.commit();<?xml version="1.0" encoding="utf-8"?>
  2106. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2107.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2108.     xmlns:tools="http://schemas.android.com/tools"
  2109.     android:layout_width="match_parent"
  2110.     android:layout_height="match_parent"
  2111.     tools:context=".Welcome">
  2112.     <TextView
  2113.         android:id="@+id/mainword"
  2114.         android:layout_width="fill_parent"
  2115.         android:layout_height="fill_parent"
  2116.         android:gravity="center"
  2117.         android:textSize="22dp"
  2118.         tools:ignore="MissingConstraints" />
  2119. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2120. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2121.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2122.     xmlns:tools="http://schemas.android.com/tools"
  2123.     android:layout_width="match_parent"
  2124.     android:layout_height="match_parent"
  2125.     tools:context=".Welcome">
  2126.     <TextView
  2127.         android:id="@+id/mainword"
  2128.         android:layout_width="fill_parent"
  2129.         android:layout_height="fill_parent"
  2130.         android:gravity="center"
  2131.         android:textSize="22dp"
  2132.         tools:ignore="MissingConstraints" />
  2133. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2134. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2135.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2136.     xmlns:tools="http://schemas.android.com/tools"
  2137.     android:layout_width="match_parent"
  2138.     android:layout_height="match_parent"
  2139.     tools:context=".Welcome">
  2140.     <TextView
  2141.         android:id="@+id/mainword"
  2142.         android:layout_width="fill_parent"
  2143.         android:layout_height="fill_parent"
  2144.         android:gravity="center"
  2145.         android:textSize="22dp"
  2146.         tools:ignore="MissingConstraints" />
  2147. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2148. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2149.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2150.     xmlns:tools="http://schemas.android.com/tools"
  2151.     android:layout_width="match_parent"
  2152.     android:layout_height="match_parent"
  2153.     tools:context=".Welcome">
  2154.     <TextView
  2155.         android:id="@+id/mainword"
  2156.         android:layout_width="fill_parent"
  2157.         android:layout_height="fill_parent"
  2158.         android:gravity="center"
  2159.         android:textSize="22dp"
  2160.         tools:ignore="MissingConstraints" />
  2161. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2162. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2163.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2164.     xmlns:tools="http://schemas.android.com/tools"
  2165.     android:layout_width="match_parent"
  2166.     android:layout_height="match_parent"
  2167.     tools:context=".Welcome">
  2168.     <TextView
  2169.         android:id="@+id/mainword"
  2170.         android:layout_width="fill_parent"
  2171.         android:layout_height="fill_parent"
  2172.         android:gravity="center"
  2173.         android:textSize="22dp"
  2174.         tools:ignore="MissingConstraints" />
  2175. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2176. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2177.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2178.     xmlns:tools="http://schemas.android.com/tools"
  2179.     android:layout_width="match_parent"
  2180.     android:layout_height="match_parent"
  2181.     tools:context=".Welcome">
  2182.     <TextView
  2183.         android:id="@+id/mainword"
  2184.         android:layout_width="fill_parent"
  2185.         android:layout_height="fill_parent"
  2186.         android:gravity="center"
  2187.         android:textSize="22dp"
  2188.         tools:ignore="MissingConstraints" />
  2189. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2190. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2191.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2192.     xmlns:tools="http://schemas.android.com/tools"
  2193.     android:layout_width="match_parent"
  2194.     android:layout_height="match_parent"
  2195.     tools:context=".Welcome">
  2196.     <TextView
  2197.         android:id="@+id/mainword"
  2198.         android:layout_width="fill_parent"
  2199.         android:layout_height="fill_parent"
  2200.         android:gravity="center"
  2201.         android:textSize="22dp"
  2202.         tools:ignore="MissingConstraints" />
  2203. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2204. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2205.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2206.     xmlns:tools="http://schemas.android.com/tools"
  2207.     android:layout_width="match_parent"
  2208.     android:layout_height="match_parent"
  2209.     tools:context=".Welcome">
  2210.     <TextView
  2211.         android:id="@+id/mainword"
  2212.         android:layout_width="fill_parent"
  2213.         android:layout_height="fill_parent"
  2214.         android:gravity="center"
  2215.         android:textSize="22dp"
  2216.         tools:ignore="MissingConstraints" />
  2217. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2218. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2219.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2220.     xmlns:tools="http://schemas.android.com/tools"
  2221.     android:layout_width="match_parent"
  2222.     android:layout_height="match_parent"
  2223.     tools:context=".Welcome">
  2224.     <TextView
  2225.         android:id="@+id/mainword"
  2226.         android:layout_width="fill_parent"
  2227.         android:layout_height="fill_parent"
  2228.         android:gravity="center"
  2229.         android:textSize="22dp"
  2230.         tools:ignore="MissingConstraints" />
  2231. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2232. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2233.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2234.     xmlns:tools="http://schemas.android.com/tools"
  2235.     android:layout_width="match_parent"
  2236.     android:layout_height="match_parent"
  2237.     tools:context=".Welcome">
  2238.     <TextView
  2239.         android:id="@+id/mainword"
  2240.         android:layout_width="fill_parent"
  2241.         android:layout_height="fill_parent"
  2242.         android:gravity="center"
  2243.         android:textSize="22dp"
  2244.         tools:ignore="MissingConstraints" />
  2245. </androidx.constraintlayout.widget.ConstraintLayout>//将用户名存到SharedPreferences中
  2246. <?xml version="1.0" encoding="utf-8"?>
  2247. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2248.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2249.     xmlns:tools="http://schemas.android.com/tools"
  2250.     android:layout_width="match_parent"
  2251.     android:layout_height="match_parent"
  2252.     tools:context=".Welcome">
  2253.     <TextView
  2254.         android:id="@+id/mainword"
  2255.         android:layout_width="fill_parent"
  2256.         android:layout_height="fill_parent"
  2257.         android:gravity="center"
  2258.         android:textSize="22dp"
  2259.         tools:ignore="MissingConstraints" />
  2260. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2261. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2262.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2263.     xmlns:tools="http://schemas.android.com/tools"
  2264.     android:layout_width="match_parent"
  2265.     android:layout_height="match_parent"
  2266.     tools:context=".Welcome">
  2267.     <TextView
  2268.         android:id="@+id/mainword"
  2269.         android:layout_width="fill_parent"
  2270.         android:layout_height="fill_parent"
  2271.         android:gravity="center"
  2272.         android:textSize="22dp"
  2273.         tools:ignore="MissingConstraints" />
  2274. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2275. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2276.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2277.     xmlns:tools="http://schemas.android.com/tools"
  2278.     android:layout_width="match_parent"
  2279.     android:layout_height="match_parent"
  2280.     tools:context=".Welcome">
  2281.     <TextView
  2282.         android:id="@+id/mainword"
  2283.         android:layout_width="fill_parent"
  2284.         android:layout_height="fill_parent"
  2285.         android:gravity="center"
  2286.         android:textSize="22dp"
  2287.         tools:ignore="MissingConstraints" />
  2288. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2289. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2290.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2291.     xmlns:tools="http://schemas.android.com/tools"
  2292.     android:layout_width="match_parent"
  2293.     android:layout_height="match_parent"
  2294.     tools:context=".Welcome">
  2295.     <TextView
  2296.         android:id="@+id/mainword"
  2297.         android:layout_width="fill_parent"
  2298.         android:layout_height="fill_parent"
  2299.         android:gravity="center"
  2300.         android:textSize="22dp"
  2301.         tools:ignore="MissingConstraints" />
  2302. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2303. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2304.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2305.     xmlns:tools="http://schemas.android.com/tools"
  2306.     android:layout_width="match_parent"
  2307.     android:layout_height="match_parent"
  2308.     tools:context=".Welcome">
  2309.     <TextView
  2310.         android:id="@+id/mainword"
  2311.         android:layout_width="fill_parent"
  2312.         android:layout_height="fill_parent"
  2313.         android:gravity="center"
  2314.         android:textSize="22dp"
  2315.         tools:ignore="MissingConstraints" />
  2316. </androidx.constraintlayout.widget.ConstraintLayout>startActivity(intent);
  2317. <?xml version="1.0" encoding="utf-8"?>
  2318. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2319.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2320.     xmlns:tools="http://schemas.android.com/tools"
  2321.     android:layout_width="match_parent"
  2322.     android:layout_height="match_parent"
  2323.     tools:context=".Welcome">
  2324.     <TextView
  2325.         android:id="@+id/mainword"
  2326.         android:layout_width="fill_parent"
  2327.         android:layout_height="fill_parent"
  2328.         android:gravity="center"
  2329.         android:textSize="22dp"
  2330.         tools:ignore="MissingConstraints" />
  2331. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2332. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2333.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2334.     xmlns:tools="http://schemas.android.com/tools"
  2335.     android:layout_width="match_parent"
  2336.     android:layout_height="match_parent"
  2337.     tools:context=".Welcome">
  2338.     <TextView
  2339.         android:id="@+id/mainword"
  2340.         android:layout_width="fill_parent"
  2341.         android:layout_height="fill_parent"
  2342.         android:gravity="center"
  2343.         android:textSize="22dp"
  2344.         tools:ignore="MissingConstraints" />
  2345. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2346. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2347.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2348.     xmlns:tools="http://schemas.android.com/tools"
  2349.     android:layout_width="match_parent"
  2350.     android:layout_height="match_parent"
  2351.     tools:context=".Welcome">
  2352.     <TextView
  2353.         android:id="@+id/mainword"
  2354.         android:layout_width="fill_parent"
  2355.         android:layout_height="fill_parent"
  2356.         android:gravity="center"
  2357.         android:textSize="22dp"
  2358.         tools:ignore="MissingConstraints" />
  2359. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2360. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2361.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2362.     xmlns:tools="http://schemas.android.com/tools"
  2363.     android:layout_width="match_parent"
  2364.     android:layout_height="match_parent"
  2365.     tools:context=".Welcome">
  2366.     <TextView
  2367.         android:id="@+id/mainword"
  2368.         android:layout_width="fill_parent"
  2369.         android:layout_height="fill_parent"
  2370.         android:gravity="center"
  2371.         android:textSize="22dp"
  2372.         tools:ignore="MissingConstraints" />
  2373. </androidx.constraintlayout.widget.ConstraintLayout>}
  2374. <?xml version="1.0" encoding="utf-8"?>
  2375. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2376.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2377.     xmlns:tools="http://schemas.android.com/tools"
  2378.     android:layout_width="match_parent"
  2379.     android:layout_height="match_parent"
  2380.     tools:context=".Welcome">
  2381.     <TextView
  2382.         android:id="@+id/mainword"
  2383.         android:layout_width="fill_parent"
  2384.         android:layout_height="fill_parent"
  2385.         android:gravity="center"
  2386.         android:textSize="22dp"
  2387.         tools:ignore="MissingConstraints" />
  2388. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2389. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2390.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2391.     xmlns:tools="http://schemas.android.com/tools"
  2392.     android:layout_width="match_parent"
  2393.     android:layout_height="match_parent"
  2394.     tools:context=".Welcome">
  2395.     <TextView
  2396.         android:id="@+id/mainword"
  2397.         android:layout_width="fill_parent"
  2398.         android:layout_height="fill_parent"
  2399.         android:gravity="center"
  2400.         android:textSize="22dp"
  2401.         tools:ignore="MissingConstraints" />
  2402. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2403. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2404.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2405.     xmlns:tools="http://schemas.android.com/tools"
  2406.     android:layout_width="match_parent"
  2407.     android:layout_height="match_parent"
  2408.     tools:context=".Welcome">
  2409.     <TextView
  2410.         android:id="@+id/mainword"
  2411.         android:layout_width="fill_parent"
  2412.         android:layout_height="fill_parent"
  2413.         android:gravity="center"
  2414.         android:textSize="22dp"
  2415.         tools:ignore="MissingConstraints" />
  2416. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2417. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2418.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2419.     xmlns:tools="http://schemas.android.com/tools"
  2420.     android:layout_width="match_parent"
  2421.     android:layout_height="match_parent"
  2422.     tools:context=".Welcome">
  2423.     <TextView
  2424.         android:id="@+id/mainword"
  2425.         android:layout_width="fill_parent"
  2426.         android:layout_height="fill_parent"
  2427.         android:gravity="center"
  2428.         android:textSize="22dp"
  2429.         tools:ignore="MissingConstraints" />
  2430. </androidx.constraintlayout.widget.ConstraintLayout>else{
  2431. <?xml version="1.0" encoding="utf-8"?>
  2432. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2433.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2434.     xmlns:tools="http://schemas.android.com/tools"
  2435.     android:layout_width="match_parent"
  2436.     android:layout_height="match_parent"
  2437.     tools:context=".Welcome">
  2438.     <TextView
  2439.         android:id="@+id/mainword"
  2440.         android:layout_width="fill_parent"
  2441.         android:layout_height="fill_parent"
  2442.         android:gravity="center"
  2443.         android:textSize="22dp"
  2444.         tools:ignore="MissingConstraints" />
  2445. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2446. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2447.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2448.     xmlns:tools="http://schemas.android.com/tools"
  2449.     android:layout_width="match_parent"
  2450.     android:layout_height="match_parent"
  2451.     tools:context=".Welcome">
  2452.     <TextView
  2453.         android:id="@+id/mainword"
  2454.         android:layout_width="fill_parent"
  2455.         android:layout_height="fill_parent"
  2456.         android:gravity="center"
  2457.         android:textSize="22dp"
  2458.         tools:ignore="MissingConstraints" />
  2459. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2460. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2461.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2462.     xmlns:tools="http://schemas.android.com/tools"
  2463.     android:layout_width="match_parent"
  2464.     android:layout_height="match_parent"
  2465.     tools:context=".Welcome">
  2466.     <TextView
  2467.         android:id="@+id/mainword"
  2468.         android:layout_width="fill_parent"
  2469.         android:layout_height="fill_parent"
  2470.         android:gravity="center"
  2471.         android:textSize="22dp"
  2472.         tools:ignore="MissingConstraints" />
  2473. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2474. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2475.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2476.     xmlns:tools="http://schemas.android.com/tools"
  2477.     android:layout_width="match_parent"
  2478.     android:layout_height="match_parent"
  2479.     tools:context=".Welcome">
  2480.     <TextView
  2481.         android:id="@+id/mainword"
  2482.         android:layout_width="fill_parent"
  2483.         android:layout_height="fill_parent"
  2484.         android:gravity="center"
  2485.         android:textSize="22dp"
  2486.         tools:ignore="MissingConstraints" />
  2487. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2488. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2489.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2490.     xmlns:tools="http://schemas.android.com/tools"
  2491.     android:layout_width="match_parent"
  2492.     android:layout_height="match_parent"
  2493.     tools:context=".Welcome">
  2494.     <TextView
  2495.         android:id="@+id/mainword"
  2496.         android:layout_width="fill_parent"
  2497.         android:layout_height="fill_parent"
  2498.         android:gravity="center"
  2499.         android:textSize="22dp"
  2500.         tools:ignore="MissingConstraints" />
  2501. </androidx.constraintlayout.widget.ConstraintLayout>Toast.makeText(MainActivity.this,"用户名或密码错误!",Toast.LENGTH_LONG).show();<?xml version="1.0" encoding="utf-8"?>
  2502. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2503.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2504.     xmlns:tools="http://schemas.android.com/tools"
  2505.     android:layout_width="match_parent"
  2506.     android:layout_height="match_parent"
  2507.     tools:context=".Welcome">
  2508.     <TextView
  2509.         android:id="@+id/mainword"
  2510.         android:layout_width="fill_parent"
  2511.         android:layout_height="fill_parent"
  2512.         android:gravity="center"
  2513.         android:textSize="22dp"
  2514.         tools:ignore="MissingConstraints" />
  2515. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2516. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2517.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2518.     xmlns:tools="http://schemas.android.com/tools"
  2519.     android:layout_width="match_parent"
  2520.     android:layout_height="match_parent"
  2521.     tools:context=".Welcome">
  2522.     <TextView
  2523.         android:id="@+id/mainword"
  2524.         android:layout_width="fill_parent"
  2525.         android:layout_height="fill_parent"
  2526.         android:gravity="center"
  2527.         android:textSize="22dp"
  2528.         tools:ignore="MissingConstraints" />
  2529. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2530. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2531.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2532.     xmlns:tools="http://schemas.android.com/tools"
  2533.     android:layout_width="match_parent"
  2534.     android:layout_height="match_parent"
  2535.     tools:context=".Welcome">
  2536.     <TextView
  2537.         android:id="@+id/mainword"
  2538.         android:layout_width="fill_parent"
  2539.         android:layout_height="fill_parent"
  2540.         android:gravity="center"
  2541.         android:textSize="22dp"
  2542.         tools:ignore="MissingConstraints" />
  2543. </androidx.constraintlayout.widget.ConstraintLayout> //提示用户信息错误或没有账号
  2544. <?xml version="1.0" encoding="utf-8"?>
  2545. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2546.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2547.     xmlns:tools="http://schemas.android.com/tools"
  2548.     android:layout_width="match_parent"
  2549.     android:layout_height="match_parent"
  2550.     tools:context=".Welcome">
  2551.     <TextView
  2552.         android:id="@+id/mainword"
  2553.         android:layout_width="fill_parent"
  2554.         android:layout_height="fill_parent"
  2555.         android:gravity="center"
  2556.         android:textSize="22dp"
  2557.         tools:ignore="MissingConstraints" />
  2558. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2559. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2560.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2561.     xmlns:tools="http://schemas.android.com/tools"
  2562.     android:layout_width="match_parent"
  2563.     android:layout_height="match_parent"
  2564.     tools:context=".Welcome">
  2565.     <TextView
  2566.         android:id="@+id/mainword"
  2567.         android:layout_width="fill_parent"
  2568.         android:layout_height="fill_parent"
  2569.         android:gravity="center"
  2570.         android:textSize="22dp"
  2571.         tools:ignore="MissingConstraints" />
  2572. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2573. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2574.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2575.     xmlns:tools="http://schemas.android.com/tools"
  2576.     android:layout_width="match_parent"
  2577.     android:layout_height="match_parent"
  2578.     tools:context=".Welcome">
  2579.     <TextView
  2580.         android:id="@+id/mainword"
  2581.         android:layout_width="fill_parent"
  2582.         android:layout_height="fill_parent"
  2583.         android:gravity="center"
  2584.         android:textSize="22dp"
  2585.         tools:ignore="MissingConstraints" />
  2586. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2587. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2588.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2589.     xmlns:tools="http://schemas.android.com/tools"
  2590.     android:layout_width="match_parent"
  2591.     android:layout_height="match_parent"
  2592.     tools:context=".Welcome">
  2593.     <TextView
  2594.         android:id="@+id/mainword"
  2595.         android:layout_width="fill_parent"
  2596.         android:layout_height="fill_parent"
  2597.         android:gravity="center"
  2598.         android:textSize="22dp"
  2599.         tools:ignore="MissingConstraints" />
  2600. </androidx.constraintlayout.widget.ConstraintLayout>}
  2601. <?xml version="1.0" encoding="utf-8"?>
  2602. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2603.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2604.     xmlns:tools="http://schemas.android.com/tools"
  2605.     android:layout_width="match_parent"
  2606.     android:layout_height="match_parent"
  2607.     tools:context=".Welcome">
  2608.     <TextView
  2609.         android:id="@+id/mainword"
  2610.         android:layout_width="fill_parent"
  2611.         android:layout_height="fill_parent"
  2612.         android:gravity="center"
  2613.         android:textSize="22dp"
  2614.         tools:ignore="MissingConstraints" />
  2615. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2616. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2617.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2618.     xmlns:tools="http://schemas.android.com/tools"
  2619.     android:layout_width="match_parent"
  2620.     android:layout_height="match_parent"
  2621.     tools:context=".Welcome">
  2622.     <TextView
  2623.         android:id="@+id/mainword"
  2624.         android:layout_width="fill_parent"
  2625.         android:layout_height="fill_parent"
  2626.         android:gravity="center"
  2627.         android:textSize="22dp"
  2628.         tools:ignore="MissingConstraints" />
  2629. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2630. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2631.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2632.     xmlns:tools="http://schemas.android.com/tools"
  2633.     android:layout_width="match_parent"
  2634.     android:layout_height="match_parent"
  2635.     tools:context=".Welcome">
  2636.     <TextView
  2637.         android:id="@+id/mainword"
  2638.         android:layout_width="fill_parent"
  2639.         android:layout_height="fill_parent"
  2640.         android:gravity="center"
  2641.         android:textSize="22dp"
  2642.         tools:ignore="MissingConstraints" />
  2643. </androidx.constraintlayout.widget.ConstraintLayout>}
  2644. <?xml version="1.0" encoding="utf-8"?>
  2645. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2646.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2647.     xmlns:tools="http://schemas.android.com/tools"
  2648.     android:layout_width="match_parent"
  2649.     android:layout_height="match_parent"
  2650.     tools:context=".Welcome">
  2651.     <TextView
  2652.         android:id="@+id/mainword"
  2653.         android:layout_width="fill_parent"
  2654.         android:layout_height="fill_parent"
  2655.         android:gravity="center"
  2656.         android:textSize="22dp"
  2657.         tools:ignore="MissingConstraints" />
  2658. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2659. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2660.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2661.     xmlns:tools="http://schemas.android.com/tools"
  2662.     android:layout_width="match_parent"
  2663.     android:layout_height="match_parent"
  2664.     tools:context=".Welcome">
  2665.     <TextView
  2666.         android:id="@+id/mainword"
  2667.         android:layout_width="fill_parent"
  2668.         android:layout_height="fill_parent"
  2669.         android:gravity="center"
  2670.         android:textSize="22dp"
  2671.         tools:ignore="MissingConstraints" />
  2672. </androidx.constraintlayout.widget.ConstraintLayout>});
  2673. <?xml version="1.0" encoding="utf-8"?>
  2674. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2675.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2676.     xmlns:tools="http://schemas.android.com/tools"
  2677.     android:layout_width="match_parent"
  2678.     android:layout_height="match_parent"
  2679.     tools:context=".Welcome">
  2680.     <TextView
  2681.         android:id="@+id/mainword"
  2682.         android:layout_width="fill_parent"
  2683.         android:layout_height="fill_parent"
  2684.         android:gravity="center"
  2685.         android:textSize="22dp"
  2686.         tools:ignore="MissingConstraints" />
  2687. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2688. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2689.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2690.     xmlns:tools="http://schemas.android.com/tools"
  2691.     android:layout_width="match_parent"
  2692.     android:layout_height="match_parent"
  2693.     tools:context=".Welcome">
  2694.     <TextView
  2695.         android:id="@+id/mainword"
  2696.         android:layout_width="fill_parent"
  2697.         android:layout_height="fill_parent"
  2698.         android:gravity="center"
  2699.         android:textSize="22dp"
  2700.         tools:ignore="MissingConstraints" />
  2701. </androidx.constraintlayout.widget.ConstraintLayout>btnreg.setOnClickListener(new View.OnClickListener() {<?xml version="1.0" encoding="utf-8"?>
  2702. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2703.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2704.     xmlns:tools="http://schemas.android.com/tools"
  2705.     android:layout_width="match_parent"
  2706.     android:layout_height="match_parent"
  2707.     tools:context=".Welcome">
  2708.     <TextView
  2709.         android:id="@+id/mainword"
  2710.         android:layout_width="fill_parent"
  2711.         android:layout_height="fill_parent"
  2712.         android:gravity="center"
  2713.         android:textSize="22dp"
  2714.         tools:ignore="MissingConstraints" />
  2715. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2716. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2717.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2718.     xmlns:tools="http://schemas.android.com/tools"
  2719.     android:layout_width="match_parent"
  2720.     android:layout_height="match_parent"
  2721.     tools:context=".Welcome">
  2722.     <TextView
  2723.         android:id="@+id/mainword"
  2724.         android:layout_width="fill_parent"
  2725.         android:layout_height="fill_parent"
  2726.         android:gravity="center"
  2727.         android:textSize="22dp"
  2728.         tools:ignore="MissingConstraints" />
  2729. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2730. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2731.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2732.     xmlns:tools="http://schemas.android.com/tools"
  2733.     android:layout_width="match_parent"
  2734.     android:layout_height="match_parent"
  2735.     tools:context=".Welcome">
  2736.     <TextView
  2737.         android:id="@+id/mainword"
  2738.         android:layout_width="fill_parent"
  2739.         android:layout_height="fill_parent"
  2740.         android:gravity="center"
  2741.         android:textSize="22dp"
  2742.         tools:ignore="MissingConstraints" />
  2743. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2744. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2745.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2746.     xmlns:tools="http://schemas.android.com/tools"
  2747.     android:layout_width="match_parent"
  2748.     android:layout_height="match_parent"
  2749.     tools:context=".Welcome">
  2750.     <TextView
  2751.         android:id="@+id/mainword"
  2752.         android:layout_width="fill_parent"
  2753.         android:layout_height="fill_parent"
  2754.         android:gravity="center"
  2755.         android:textSize="22dp"
  2756.         tools:ignore="MissingConstraints" />
  2757. </androidx.constraintlayout.widget.ConstraintLayout>  //注册事件
  2758. <?xml version="1.0" encoding="utf-8"?>
  2759. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2760.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2761.     xmlns:tools="http://schemas.android.com/tools"
  2762.     android:layout_width="match_parent"
  2763.     android:layout_height="match_parent"
  2764.     tools:context=".Welcome">
  2765.     <TextView
  2766.         android:id="@+id/mainword"
  2767.         android:layout_width="fill_parent"
  2768.         android:layout_height="fill_parent"
  2769.         android:gravity="center"
  2770.         android:textSize="22dp"
  2771.         tools:ignore="MissingConstraints" />
  2772. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2773. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2774.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2775.     xmlns:tools="http://schemas.android.com/tools"
  2776.     android:layout_width="match_parent"
  2777.     android:layout_height="match_parent"
  2778.     tools:context=".Welcome">
  2779.     <TextView
  2780.         android:id="@+id/mainword"
  2781.         android:layout_width="fill_parent"
  2782.         android:layout_height="fill_parent"
  2783.         android:gravity="center"
  2784.         android:textSize="22dp"
  2785.         tools:ignore="MissingConstraints" />
  2786. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2787. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2788.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2789.     xmlns:tools="http://schemas.android.com/tools"
  2790.     android:layout_width="match_parent"
  2791.     android:layout_height="match_parent"
  2792.     tools:context=".Welcome">
  2793.     <TextView
  2794.         android:id="@+id/mainword"
  2795.         android:layout_width="fill_parent"
  2796.         android:layout_height="fill_parent"
  2797.         android:gravity="center"
  2798.         android:textSize="22dp"
  2799.         tools:ignore="MissingConstraints" />
  2800. </androidx.constraintlayout.widget.ConstraintLayout>@Override
  2801. <?xml version="1.0" encoding="utf-8"?>
  2802. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2803.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2804.     xmlns:tools="http://schemas.android.com/tools"
  2805.     android:layout_width="match_parent"
  2806.     android:layout_height="match_parent"
  2807.     tools:context=".Welcome">
  2808.     <TextView
  2809.         android:id="@+id/mainword"
  2810.         android:layout_width="fill_parent"
  2811.         android:layout_height="fill_parent"
  2812.         android:gravity="center"
  2813.         android:textSize="22dp"
  2814.         tools:ignore="MissingConstraints" />
  2815. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2816. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2817.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2818.     xmlns:tools="http://schemas.android.com/tools"
  2819.     android:layout_width="match_parent"
  2820.     android:layout_height="match_parent"
  2821.     tools:context=".Welcome">
  2822.     <TextView
  2823.         android:id="@+id/mainword"
  2824.         android:layout_width="fill_parent"
  2825.         android:layout_height="fill_parent"
  2826.         android:gravity="center"
  2827.         android:textSize="22dp"
  2828.         tools:ignore="MissingConstraints" />
  2829. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2830. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2831.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2832.     xmlns:tools="http://schemas.android.com/tools"
  2833.     android:layout_width="match_parent"
  2834.     android:layout_height="match_parent"
  2835.     tools:context=".Welcome">
  2836.     <TextView
  2837.         android:id="@+id/mainword"
  2838.         android:layout_width="fill_parent"
  2839.         android:layout_height="fill_parent"
  2840.         android:gravity="center"
  2841.         android:textSize="22dp"
  2842.         tools:ignore="MissingConstraints" />
  2843. </androidx.constraintlayout.widget.ConstraintLayout>public void onClick(View v) {
  2844. <?xml version="1.0" encoding="utf-8"?>
  2845. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2846.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2847.     xmlns:tools="http://schemas.android.com/tools"
  2848.     android:layout_width="match_parent"
  2849.     android:layout_height="match_parent"
  2850.     tools:context=".Welcome">
  2851.     <TextView
  2852.         android:id="@+id/mainword"
  2853.         android:layout_width="fill_parent"
  2854.         android:layout_height="fill_parent"
  2855.         android:gravity="center"
  2856.         android:textSize="22dp"
  2857.         tools:ignore="MissingConstraints" />
  2858. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2859. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2860.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2861.     xmlns:tools="http://schemas.android.com/tools"
  2862.     android:layout_width="match_parent"
  2863.     android:layout_height="match_parent"
  2864.     tools:context=".Welcome">
  2865.     <TextView
  2866.         android:id="@+id/mainword"
  2867.         android:layout_width="fill_parent"
  2868.         android:layout_height="fill_parent"
  2869.         android:gravity="center"
  2870.         android:textSize="22dp"
  2871.         tools:ignore="MissingConstraints" />
  2872. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2873. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2874.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2875.     xmlns:tools="http://schemas.android.com/tools"
  2876.     android:layout_width="match_parent"
  2877.     android:layout_height="match_parent"
  2878.     tools:context=".Welcome">
  2879.     <TextView
  2880.         android:id="@+id/mainword"
  2881.         android:layout_width="fill_parent"
  2882.         android:layout_height="fill_parent"
  2883.         android:gravity="center"
  2884.         android:textSize="22dp"
  2885.         tools:ignore="MissingConstraints" />
  2886. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2887. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2888.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2889.     xmlns:tools="http://schemas.android.com/tools"
  2890.     android:layout_width="match_parent"
  2891.     android:layout_height="match_parent"
  2892.     tools:context=".Welcome">
  2893.     <TextView
  2894.         android:id="@+id/mainword"
  2895.         android:layout_width="fill_parent"
  2896.         android:layout_height="fill_parent"
  2897.         android:gravity="center"
  2898.         android:textSize="22dp"
  2899.         tools:ignore="MissingConstraints" />
  2900. </androidx.constraintlayout.widget.ConstraintLayout>Intent intent = new Intent();
  2901. <?xml version="1.0" encoding="utf-8"?>
  2902. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2903.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2904.     xmlns:tools="http://schemas.android.com/tools"
  2905.     android:layout_width="match_parent"
  2906.     android:layout_height="match_parent"
  2907.     tools:context=".Welcome">
  2908.     <TextView
  2909.         android:id="@+id/mainword"
  2910.         android:layout_width="fill_parent"
  2911.         android:layout_height="fill_parent"
  2912.         android:gravity="center"
  2913.         android:textSize="22dp"
  2914.         tools:ignore="MissingConstraints" />
  2915. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2916. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2917.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2918.     xmlns:tools="http://schemas.android.com/tools"
  2919.     android:layout_width="match_parent"
  2920.     android:layout_height="match_parent"
  2921.     tools:context=".Welcome">
  2922.     <TextView
  2923.         android:id="@+id/mainword"
  2924.         android:layout_width="fill_parent"
  2925.         android:layout_height="fill_parent"
  2926.         android:gravity="center"
  2927.         android:textSize="22dp"
  2928.         tools:ignore="MissingConstraints" />
  2929. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2930. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2931.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2932.     xmlns:tools="http://schemas.android.com/tools"
  2933.     android:layout_width="match_parent"
  2934.     android:layout_height="match_parent"
  2935.     tools:context=".Welcome">
  2936.     <TextView
  2937.         android:id="@+id/mainword"
  2938.         android:layout_width="fill_parent"
  2939.         android:layout_height="fill_parent"
  2940.         android:gravity="center"
  2941.         android:textSize="22dp"
  2942.         tools:ignore="MissingConstraints" />
  2943. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2944. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2945.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2946.     xmlns:tools="http://schemas.android.com/tools"
  2947.     android:layout_width="match_parent"
  2948.     android:layout_height="match_parent"
  2949.     tools:context=".Welcome">
  2950.     <TextView
  2951.         android:id="@+id/mainword"
  2952.         android:layout_width="fill_parent"
  2953.         android:layout_height="fill_parent"
  2954.         android:gravity="center"
  2955.         android:textSize="22dp"
  2956.         tools:ignore="MissingConstraints" />
  2957. </androidx.constraintlayout.widget.ConstraintLayout>intent.setClass(MainActivity.this,Register.class);<?xml version="1.0" encoding="utf-8"?>
  2958. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2959.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2960.     xmlns:tools="http://schemas.android.com/tools"
  2961.     android:layout_width="match_parent"
  2962.     android:layout_height="match_parent"
  2963.     tools:context=".Welcome">
  2964.     <TextView
  2965.         android:id="@+id/mainword"
  2966.         android:layout_width="fill_parent"
  2967.         android:layout_height="fill_parent"
  2968.         android:gravity="center"
  2969.         android:textSize="22dp"
  2970.         tools:ignore="MissingConstraints" />
  2971. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2972. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2973.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2974.     xmlns:tools="http://schemas.android.com/tools"
  2975.     android:layout_width="match_parent"
  2976.     android:layout_height="match_parent"
  2977.     tools:context=".Welcome">
  2978.     <TextView
  2979.         android:id="@+id/mainword"
  2980.         android:layout_width="fill_parent"
  2981.         android:layout_height="fill_parent"
  2982.         android:gravity="center"
  2983.         android:textSize="22dp"
  2984.         tools:ignore="MissingConstraints" />
  2985. </androidx.constraintlayout.widget.ConstraintLayout>  //跳转到注册页面
  2986. <?xml version="1.0" encoding="utf-8"?>
  2987. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2988.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2989.     xmlns:tools="http://schemas.android.com/tools"
  2990.     android:layout_width="match_parent"
  2991.     android:layout_height="match_parent"
  2992.     tools:context=".Welcome">
  2993.     <TextView
  2994.         android:id="@+id/mainword"
  2995.         android:layout_width="fill_parent"
  2996.         android:layout_height="fill_parent"
  2997.         android:gravity="center"
  2998.         android:textSize="22dp"
  2999.         tools:ignore="MissingConstraints" />
  3000. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3001. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3002.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3003.     xmlns:tools="http://schemas.android.com/tools"
  3004.     android:layout_width="match_parent"
  3005.     android:layout_height="match_parent"
  3006.     tools:context=".Welcome">
  3007.     <TextView
  3008.         android:id="@+id/mainword"
  3009.         android:layout_width="fill_parent"
  3010.         android:layout_height="fill_parent"
  3011.         android:gravity="center"
  3012.         android:textSize="22dp"
  3013.         tools:ignore="MissingConstraints" />
  3014. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3015. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3016.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3017.     xmlns:tools="http://schemas.android.com/tools"
  3018.     android:layout_width="match_parent"
  3019.     android:layout_height="match_parent"
  3020.     tools:context=".Welcome">
  3021.     <TextView
  3022.         android:id="@+id/mainword"
  3023.         android:layout_width="fill_parent"
  3024.         android:layout_height="fill_parent"
  3025.         android:gravity="center"
  3026.         android:textSize="22dp"
  3027.         tools:ignore="MissingConstraints" />
  3028. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3029. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3030.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3031.     xmlns:tools="http://schemas.android.com/tools"
  3032.     android:layout_width="match_parent"
  3033.     android:layout_height="match_parent"
  3034.     tools:context=".Welcome">
  3035.     <TextView
  3036.         android:id="@+id/mainword"
  3037.         android:layout_width="fill_parent"
  3038.         android:layout_height="fill_parent"
  3039.         android:gravity="center"
  3040.         android:textSize="22dp"
  3041.         tools:ignore="MissingConstraints" />
  3042. </androidx.constraintlayout.widget.ConstraintLayout>startActivity(intent);
  3043. <?xml version="1.0" encoding="utf-8"?>
  3044. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3045.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3046.     xmlns:tools="http://schemas.android.com/tools"
  3047.     android:layout_width="match_parent"
  3048.     android:layout_height="match_parent"
  3049.     tools:context=".Welcome">
  3050.     <TextView
  3051.         android:id="@+id/mainword"
  3052.         android:layout_width="fill_parent"
  3053.         android:layout_height="fill_parent"
  3054.         android:gravity="center"
  3055.         android:textSize="22dp"
  3056.         tools:ignore="MissingConstraints" />
  3057. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3058. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3059.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3060.     xmlns:tools="http://schemas.android.com/tools"
  3061.     android:layout_width="match_parent"
  3062.     android:layout_height="match_parent"
  3063.     tools:context=".Welcome">
  3064.     <TextView
  3065.         android:id="@+id/mainword"
  3066.         android:layout_width="fill_parent"
  3067.         android:layout_height="fill_parent"
  3068.         android:gravity="center"
  3069.         android:textSize="22dp"
  3070.         tools:ignore="MissingConstraints" />
  3071. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3072. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3073.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3074.     xmlns:tools="http://schemas.android.com/tools"
  3075.     android:layout_width="match_parent"
  3076.     android:layout_height="match_parent"
  3077.     tools:context=".Welcome">
  3078.     <TextView
  3079.         android:id="@+id/mainword"
  3080.         android:layout_width="fill_parent"
  3081.         android:layout_height="fill_parent"
  3082.         android:gravity="center"
  3083.         android:textSize="22dp"
  3084.         tools:ignore="MissingConstraints" />
  3085. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3086. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3087.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3088.     xmlns:tools="http://schemas.android.com/tools"
  3089.     android:layout_width="match_parent"
  3090.     android:layout_height="match_parent"
  3091.     tools:context=".Welcome">
  3092.     <TextView
  3093.         android:id="@+id/mainword"
  3094.         android:layout_width="fill_parent"
  3095.         android:layout_height="fill_parent"
  3096.         android:gravity="center"
  3097.         android:textSize="22dp"
  3098.         tools:ignore="MissingConstraints" />
  3099. </androidx.constraintlayout.widget.ConstraintLayout>Toast.makeText(MainActivity.this,"前往注册!",Toast.LENGTH_SHORT).show();
  3100. <?xml version="1.0" encoding="utf-8"?>
  3101. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3102.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3103.     xmlns:tools="http://schemas.android.com/tools"
  3104.     android:layout_width="match_parent"
  3105.     android:layout_height="match_parent"
  3106.     tools:context=".Welcome">
  3107.     <TextView
  3108.         android:id="@+id/mainword"
  3109.         android:layout_width="fill_parent"
  3110.         android:layout_height="fill_parent"
  3111.         android:gravity="center"
  3112.         android:textSize="22dp"
  3113.         tools:ignore="MissingConstraints" />
  3114. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3115. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3116.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3117.     xmlns:tools="http://schemas.android.com/tools"
  3118.     android:layout_width="match_parent"
  3119.     android:layout_height="match_parent"
  3120.     tools:context=".Welcome">
  3121.     <TextView
  3122.         android:id="@+id/mainword"
  3123.         android:layout_width="fill_parent"
  3124.         android:layout_height="fill_parent"
  3125.         android:gravity="center"
  3126.         android:textSize="22dp"
  3127.         tools:ignore="MissingConstraints" />
  3128. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3129. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3130.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3131.     xmlns:tools="http://schemas.android.com/tools"
  3132.     android:layout_width="match_parent"
  3133.     android:layout_height="match_parent"
  3134.     tools:context=".Welcome">
  3135.     <TextView
  3136.         android:id="@+id/mainword"
  3137.         android:layout_width="fill_parent"
  3138.         android:layout_height="fill_parent"
  3139.         android:gravity="center"
  3140.         android:textSize="22dp"
  3141.         tools:ignore="MissingConstraints" />
  3142. </androidx.constraintlayout.widget.ConstraintLayout>}
  3143. <?xml version="1.0" encoding="utf-8"?>
  3144. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3145.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3146.     xmlns:tools="http://schemas.android.com/tools"
  3147.     android:layout_width="match_parent"
  3148.     android:layout_height="match_parent"
  3149.     tools:context=".Welcome">
  3150.     <TextView
  3151.         android:id="@+id/mainword"
  3152.         android:layout_width="fill_parent"
  3153.         android:layout_height="fill_parent"
  3154.         android:gravity="center"
  3155.         android:textSize="22dp"
  3156.         tools:ignore="MissingConstraints" />
  3157. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3158. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3159.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3160.     xmlns:tools="http://schemas.android.com/tools"
  3161.     android:layout_width="match_parent"
  3162.     android:layout_height="match_parent"
  3163.     tools:context=".Welcome">
  3164.     <TextView
  3165.         android:id="@+id/mainword"
  3166.         android:layout_width="fill_parent"
  3167.         android:layout_height="fill_parent"
  3168.         android:gravity="center"
  3169.         android:textSize="22dp"
  3170.         tools:ignore="MissingConstraints" />
  3171. </androidx.constraintlayout.widget.ConstraintLayout>});
  3172. <?xml version="1.0" encoding="utf-8"?>
  3173. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3174.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3175.     xmlns:tools="http://schemas.android.com/tools"
  3176.     android:layout_width="match_parent"
  3177.     android:layout_height="match_parent"
  3178.     tools:context=".Welcome">
  3179.     <TextView
  3180.         android:id="@+id/mainword"
  3181.         android:layout_width="fill_parent"
  3182.         android:layout_height="fill_parent"
  3183.         android:gravity="center"
  3184.         android:textSize="22dp"
  3185.         tools:ignore="MissingConstraints" />
  3186. </androidx.constraintlayout.widget.ConstraintLayout>}
  3187. }
复制代码
这是对应的布局文件activity_main.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. <?xml version="1.0" encoding="utf-8"?>
  4. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  5.     xmlns:app="http://schemas.android.com/apk/res-auto"
  6.     xmlns:tools="http://schemas.android.com/tools"
  7.     android:layout_width="match_parent"
  8.     android:layout_height="match_parent"
  9.     tools:context=".Welcome">
  10.     <TextView
  11.         android:id="@+id/mainword"
  12.         android:layout_width="fill_parent"
  13.         android:layout_height="fill_parent"
  14.         android:gravity="center"
  15.         android:textSize="22dp"
  16.         tools:ignore="MissingConstraints" />
  17. </androidx.constraintlayout.widget.ConstraintLayout>xmlns:app="http://schemas.android.com/apk/res-auto"
  18. <?xml version="1.0" encoding="utf-8"?>
  19. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  20.     xmlns:app="http://schemas.android.com/apk/res-auto"
  21.     xmlns:tools="http://schemas.android.com/tools"
  22.     android:layout_width="match_parent"
  23.     android:layout_height="match_parent"
  24.     tools:context=".Welcome">
  25.     <TextView
  26.         android:id="@+id/mainword"
  27.         android:layout_width="fill_parent"
  28.         android:layout_height="fill_parent"
  29.         android:gravity="center"
  30.         android:textSize="22dp"
  31.         tools:ignore="MissingConstraints" />
  32. </androidx.constraintlayout.widget.ConstraintLayout>xmlns:tools="http://schemas.android.com/tools"
  33. <?xml version="1.0" encoding="utf-8"?>
  34. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  35.     xmlns:app="http://schemas.android.com/apk/res-auto"
  36.     xmlns:tools="http://schemas.android.com/tools"
  37.     android:layout_width="match_parent"
  38.     android:layout_height="match_parent"
  39.     tools:context=".Welcome">
  40.     <TextView
  41.         android:id="@+id/mainword"
  42.         android:layout_width="fill_parent"
  43.         android:layout_height="fill_parent"
  44.         android:gravity="center"
  45.         android:textSize="22dp"
  46.         tools:ignore="MissingConstraints" />
  47. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="match_parent"
  48. <?xml version="1.0" encoding="utf-8"?>
  49. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  50.     xmlns:app="http://schemas.android.com/apk/res-auto"
  51.     xmlns:tools="http://schemas.android.com/tools"
  52.     android:layout_width="match_parent"
  53.     android:layout_height="match_parent"
  54.     tools:context=".Welcome">
  55.     <TextView
  56.         android:id="@+id/mainword"
  57.         android:layout_width="fill_parent"
  58.         android:layout_height="fill_parent"
  59.         android:gravity="center"
  60.         android:textSize="22dp"
  61.         tools:ignore="MissingConstraints" />
  62. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="match_parent"
  63. <?xml version="1.0" encoding="utf-8"?>
  64. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  65.     xmlns:app="http://schemas.android.com/apk/res-auto"
  66.     xmlns:tools="http://schemas.android.com/tools"
  67.     android:layout_width="match_parent"
  68.     android:layout_height="match_parent"
  69.     tools:context=".Welcome">
  70.     <TextView
  71.         android:id="@+id/mainword"
  72.         android:layout_width="fill_parent"
  73.         android:layout_height="fill_parent"
  74.         android:gravity="center"
  75.         android:textSize="22dp"
  76.         tools:ignore="MissingConstraints" />
  77. </androidx.constraintlayout.widget.ConstraintLayout>tools:context=".MainActivity">
  78. <?xml version="1.0" encoding="utf-8"?>
  79. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  80.     xmlns:app="http://schemas.android.com/apk/res-auto"
  81.     xmlns:tools="http://schemas.android.com/tools"
  82.     android:layout_width="match_parent"
  83.     android:layout_height="match_parent"
  84.     tools:context=".Welcome">
  85.     <TextView
  86.         android:id="@+id/mainword"
  87.         android:layout_width="fill_parent"
  88.         android:layout_height="fill_parent"
  89.         android:gravity="center"
  90.         android:textSize="22dp"
  91.         tools:ignore="MissingConstraints" />
  92. </androidx.constraintlayout.widget.ConstraintLayout><LinearLayout
  93. <?xml version="1.0" encoding="utf-8"?>
  94. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  95.     xmlns:app="http://schemas.android.com/apk/res-auto"
  96.     xmlns:tools="http://schemas.android.com/tools"
  97.     android:layout_width="match_parent"
  98.     android:layout_height="match_parent"
  99.     tools:context=".Welcome">
  100.     <TextView
  101.         android:id="@+id/mainword"
  102.         android:layout_width="fill_parent"
  103.         android:layout_height="fill_parent"
  104.         android:gravity="center"
  105.         android:textSize="22dp"
  106.         tools:ignore="MissingConstraints" />
  107. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  108. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  109.     xmlns:app="http://schemas.android.com/apk/res-auto"
  110.     xmlns:tools="http://schemas.android.com/tools"
  111.     android:layout_width="match_parent"
  112.     android:layout_height="match_parent"
  113.     tools:context=".Welcome">
  114.     <TextView
  115.         android:id="@+id/mainword"
  116.         android:layout_width="fill_parent"
  117.         android:layout_height="fill_parent"
  118.         android:gravity="center"
  119.         android:textSize="22dp"
  120.         tools:ignore="MissingConstraints" />
  121. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="match_parent"
  122. <?xml version="1.0" encoding="utf-8"?>
  123. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  124.     xmlns:app="http://schemas.android.com/apk/res-auto"
  125.     xmlns:tools="http://schemas.android.com/tools"
  126.     android:layout_width="match_parent"
  127.     android:layout_height="match_parent"
  128.     tools:context=".Welcome">
  129.     <TextView
  130.         android:id="@+id/mainword"
  131.         android:layout_width="fill_parent"
  132.         android:layout_height="fill_parent"
  133.         android:gravity="center"
  134.         android:textSize="22dp"
  135.         tools:ignore="MissingConstraints" />
  136. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  137. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  138.     xmlns:app="http://schemas.android.com/apk/res-auto"
  139.     xmlns:tools="http://schemas.android.com/tools"
  140.     android:layout_width="match_parent"
  141.     android:layout_height="match_parent"
  142.     tools:context=".Welcome">
  143.     <TextView
  144.         android:id="@+id/mainword"
  145.         android:layout_width="fill_parent"
  146.         android:layout_height="fill_parent"
  147.         android:gravity="center"
  148.         android:textSize="22dp"
  149.         tools:ignore="MissingConstraints" />
  150. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="match_parent"
  151. <?xml version="1.0" encoding="utf-8"?>
  152. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  153.     xmlns:app="http://schemas.android.com/apk/res-auto"
  154.     xmlns:tools="http://schemas.android.com/tools"
  155.     android:layout_width="match_parent"
  156.     android:layout_height="match_parent"
  157.     tools:context=".Welcome">
  158.     <TextView
  159.         android:id="@+id/mainword"
  160.         android:layout_width="fill_parent"
  161.         android:layout_height="fill_parent"
  162.         android:gravity="center"
  163.         android:textSize="22dp"
  164.         tools:ignore="MissingConstraints" />
  165. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  166. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  167.     xmlns:app="http://schemas.android.com/apk/res-auto"
  168.     xmlns:tools="http://schemas.android.com/tools"
  169.     android:layout_width="match_parent"
  170.     android:layout_height="match_parent"
  171.     tools:context=".Welcome">
  172.     <TextView
  173.         android:id="@+id/mainword"
  174.         android:layout_width="fill_parent"
  175.         android:layout_height="fill_parent"
  176.         android:gravity="center"
  177.         android:textSize="22dp"
  178.         tools:ignore="MissingConstraints" />
  179. </androidx.constraintlayout.widget.ConstraintLayout>android:orientation="vertical">
  180. <?xml version="1.0" encoding="utf-8"?>
  181. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  182.     xmlns:app="http://schemas.android.com/apk/res-auto"
  183.     xmlns:tools="http://schemas.android.com/tools"
  184.     android:layout_width="match_parent"
  185.     android:layout_height="match_parent"
  186.     tools:context=".Welcome">
  187.     <TextView
  188.         android:id="@+id/mainword"
  189.         android:layout_width="fill_parent"
  190.         android:layout_height="fill_parent"
  191.         android:gravity="center"
  192.         android:textSize="22dp"
  193.         tools:ignore="MissingConstraints" />
  194. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  195. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  196.     xmlns:app="http://schemas.android.com/apk/res-auto"
  197.     xmlns:tools="http://schemas.android.com/tools"
  198.     android:layout_width="match_parent"
  199.     android:layout_height="match_parent"
  200.     tools:context=".Welcome">
  201.     <TextView
  202.         android:id="@+id/mainword"
  203.         android:layout_width="fill_parent"
  204.         android:layout_height="fill_parent"
  205.         android:gravity="center"
  206.         android:textSize="22dp"
  207.         tools:ignore="MissingConstraints" />
  208. </androidx.constraintlayout.widget.ConstraintLayout><LinearLayout
  209. <?xml version="1.0" encoding="utf-8"?>
  210. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  211.     xmlns:app="http://schemas.android.com/apk/res-auto"
  212.     xmlns:tools="http://schemas.android.com/tools"
  213.     android:layout_width="match_parent"
  214.     android:layout_height="match_parent"
  215.     tools:context=".Welcome">
  216.     <TextView
  217.         android:id="@+id/mainword"
  218.         android:layout_width="fill_parent"
  219.         android:layout_height="fill_parent"
  220.         android:gravity="center"
  221.         android:textSize="22dp"
  222.         tools:ignore="MissingConstraints" />
  223. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  224. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  225.     xmlns:app="http://schemas.android.com/apk/res-auto"
  226.     xmlns:tools="http://schemas.android.com/tools"
  227.     android:layout_width="match_parent"
  228.     android:layout_height="match_parent"
  229.     tools:context=".Welcome">
  230.     <TextView
  231.         android:id="@+id/mainword"
  232.         android:layout_width="fill_parent"
  233.         android:layout_height="fill_parent"
  234.         android:gravity="center"
  235.         android:textSize="22dp"
  236.         tools:ignore="MissingConstraints" />
  237. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  238. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  239.     xmlns:app="http://schemas.android.com/apk/res-auto"
  240.     xmlns:tools="http://schemas.android.com/tools"
  241.     android:layout_width="match_parent"
  242.     android:layout_height="match_parent"
  243.     tools:context=".Welcome">
  244.     <TextView
  245.         android:id="@+id/mainword"
  246.         android:layout_width="fill_parent"
  247.         android:layout_height="fill_parent"
  248.         android:gravity="center"
  249.         android:textSize="22dp"
  250.         tools:ignore="MissingConstraints" />
  251. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="match_parent"
  252. <?xml version="1.0" encoding="utf-8"?>
  253. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  254.     xmlns:app="http://schemas.android.com/apk/res-auto"
  255.     xmlns:tools="http://schemas.android.com/tools"
  256.     android:layout_width="match_parent"
  257.     android:layout_height="match_parent"
  258.     tools:context=".Welcome">
  259.     <TextView
  260.         android:id="@+id/mainword"
  261.         android:layout_width="fill_parent"
  262.         android:layout_height="fill_parent"
  263.         android:gravity="center"
  264.         android:textSize="22dp"
  265.         tools:ignore="MissingConstraints" />
  266. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  267. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  268.     xmlns:app="http://schemas.android.com/apk/res-auto"
  269.     xmlns:tools="http://schemas.android.com/tools"
  270.     android:layout_width="match_parent"
  271.     android:layout_height="match_parent"
  272.     tools:context=".Welcome">
  273.     <TextView
  274.         android:id="@+id/mainword"
  275.         android:layout_width="fill_parent"
  276.         android:layout_height="fill_parent"
  277.         android:gravity="center"
  278.         android:textSize="22dp"
  279.         tools:ignore="MissingConstraints" />
  280. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  281. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  282.     xmlns:app="http://schemas.android.com/apk/res-auto"
  283.     xmlns:tools="http://schemas.android.com/tools"
  284.     android:layout_width="match_parent"
  285.     android:layout_height="match_parent"
  286.     tools:context=".Welcome">
  287.     <TextView
  288.         android:id="@+id/mainword"
  289.         android:layout_width="fill_parent"
  290.         android:layout_height="fill_parent"
  291.         android:gravity="center"
  292.         android:textSize="22dp"
  293.         tools:ignore="MissingConstraints" />
  294. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  295. <?xml version="1.0" encoding="utf-8"?>
  296. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  297.     xmlns:app="http://schemas.android.com/apk/res-auto"
  298.     xmlns:tools="http://schemas.android.com/tools"
  299.     android:layout_width="match_parent"
  300.     android:layout_height="match_parent"
  301.     tools:context=".Welcome">
  302.     <TextView
  303.         android:id="@+id/mainword"
  304.         android:layout_width="fill_parent"
  305.         android:layout_height="fill_parent"
  306.         android:gravity="center"
  307.         android:textSize="22dp"
  308.         tools:ignore="MissingConstraints" />
  309. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  310. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  311.     xmlns:app="http://schemas.android.com/apk/res-auto"
  312.     xmlns:tools="http://schemas.android.com/tools"
  313.     android:layout_width="match_parent"
  314.     android:layout_height="match_parent"
  315.     tools:context=".Welcome">
  316.     <TextView
  317.         android:id="@+id/mainword"
  318.         android:layout_width="fill_parent"
  319.         android:layout_height="fill_parent"
  320.         android:gravity="center"
  321.         android:textSize="22dp"
  322.         tools:ignore="MissingConstraints" />
  323. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  324. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  325.     xmlns:app="http://schemas.android.com/apk/res-auto"
  326.     xmlns:tools="http://schemas.android.com/tools"
  327.     android:layout_width="match_parent"
  328.     android:layout_height="match_parent"
  329.     tools:context=".Welcome">
  330.     <TextView
  331.         android:id="@+id/mainword"
  332.         android:layout_width="fill_parent"
  333.         android:layout_height="fill_parent"
  334.         android:gravity="center"
  335.         android:textSize="22dp"
  336.         tools:ignore="MissingConstraints" />
  337. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_marginTop="10dp"
  338. <?xml version="1.0" encoding="utf-8"?>
  339. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  340.     xmlns:app="http://schemas.android.com/apk/res-auto"
  341.     xmlns:tools="http://schemas.android.com/tools"
  342.     android:layout_width="match_parent"
  343.     android:layout_height="match_parent"
  344.     tools:context=".Welcome">
  345.     <TextView
  346.         android:id="@+id/mainword"
  347.         android:layout_width="fill_parent"
  348.         android:layout_height="fill_parent"
  349.         android:gravity="center"
  350.         android:textSize="22dp"
  351.         tools:ignore="MissingConstraints" />
  352. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  353. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  354.     xmlns:app="http://schemas.android.com/apk/res-auto"
  355.     xmlns:tools="http://schemas.android.com/tools"
  356.     android:layout_width="match_parent"
  357.     android:layout_height="match_parent"
  358.     tools:context=".Welcome">
  359.     <TextView
  360.         android:id="@+id/mainword"
  361.         android:layout_width="fill_parent"
  362.         android:layout_height="fill_parent"
  363.         android:gravity="center"
  364.         android:textSize="22dp"
  365.         tools:ignore="MissingConstraints" />
  366. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  367. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  368.     xmlns:app="http://schemas.android.com/apk/res-auto"
  369.     xmlns:tools="http://schemas.android.com/tools"
  370.     android:layout_width="match_parent"
  371.     android:layout_height="match_parent"
  372.     tools:context=".Welcome">
  373.     <TextView
  374.         android:id="@+id/mainword"
  375.         android:layout_width="fill_parent"
  376.         android:layout_height="fill_parent"
  377.         android:gravity="center"
  378.         android:textSize="22dp"
  379.         tools:ignore="MissingConstraints" />
  380. </androidx.constraintlayout.widget.ConstraintLayout>android:orientation="horizontal">
  381. <?xml version="1.0" encoding="utf-8"?>
  382. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  383.     xmlns:app="http://schemas.android.com/apk/res-auto"
  384.     xmlns:tools="http://schemas.android.com/tools"
  385.     android:layout_width="match_parent"
  386.     android:layout_height="match_parent"
  387.     tools:context=".Welcome">
  388.     <TextView
  389.         android:id="@+id/mainword"
  390.         android:layout_width="fill_parent"
  391.         android:layout_height="fill_parent"
  392.         android:gravity="center"
  393.         android:textSize="22dp"
  394.         tools:ignore="MissingConstraints" />
  395. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  396. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  397.     xmlns:app="http://schemas.android.com/apk/res-auto"
  398.     xmlns:tools="http://schemas.android.com/tools"
  399.     android:layout_width="match_parent"
  400.     android:layout_height="match_parent"
  401.     tools:context=".Welcome">
  402.     <TextView
  403.         android:id="@+id/mainword"
  404.         android:layout_width="fill_parent"
  405.         android:layout_height="fill_parent"
  406.         android:gravity="center"
  407.         android:textSize="22dp"
  408.         tools:ignore="MissingConstraints" />
  409. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  410. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  411.     xmlns:app="http://schemas.android.com/apk/res-auto"
  412.     xmlns:tools="http://schemas.android.com/tools"
  413.     android:layout_width="match_parent"
  414.     android:layout_height="match_parent"
  415.     tools:context=".Welcome">
  416.     <TextView
  417.         android:id="@+id/mainword"
  418.         android:layout_width="fill_parent"
  419.         android:layout_height="fill_parent"
  420.         android:gravity="center"
  421.         android:textSize="22dp"
  422.         tools:ignore="MissingConstraints" />
  423. </androidx.constraintlayout.widget.ConstraintLayout><TextView
  424. <?xml version="1.0" encoding="utf-8"?>
  425. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  426.     xmlns:app="http://schemas.android.com/apk/res-auto"
  427.     xmlns:tools="http://schemas.android.com/tools"
  428.     android:layout_width="match_parent"
  429.     android:layout_height="match_parent"
  430.     tools:context=".Welcome">
  431.     <TextView
  432.         android:id="@+id/mainword"
  433.         android:layout_width="fill_parent"
  434.         android:layout_height="fill_parent"
  435.         android:gravity="center"
  436.         android:textSize="22dp"
  437.         tools:ignore="MissingConstraints" />
  438. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  439. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  440.     xmlns:app="http://schemas.android.com/apk/res-auto"
  441.     xmlns:tools="http://schemas.android.com/tools"
  442.     android:layout_width="match_parent"
  443.     android:layout_height="match_parent"
  444.     tools:context=".Welcome">
  445.     <TextView
  446.         android:id="@+id/mainword"
  447.         android:layout_width="fill_parent"
  448.         android:layout_height="fill_parent"
  449.         android:gravity="center"
  450.         android:textSize="22dp"
  451.         tools:ignore="MissingConstraints" />
  452. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  453. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  454.     xmlns:app="http://schemas.android.com/apk/res-auto"
  455.     xmlns:tools="http://schemas.android.com/tools"
  456.     android:layout_width="match_parent"
  457.     android:layout_height="match_parent"
  458.     tools:context=".Welcome">
  459.     <TextView
  460.         android:id="@+id/mainword"
  461.         android:layout_width="fill_parent"
  462.         android:layout_height="fill_parent"
  463.         android:gravity="center"
  464.         android:textSize="22dp"
  465.         tools:ignore="MissingConstraints" />
  466. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  467. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  468.     xmlns:app="http://schemas.android.com/apk/res-auto"
  469.     xmlns:tools="http://schemas.android.com/tools"
  470.     android:layout_width="match_parent"
  471.     android:layout_height="match_parent"
  472.     tools:context=".Welcome">
  473.     <TextView
  474.         android:id="@+id/mainword"
  475.         android:layout_width="fill_parent"
  476.         android:layout_height="fill_parent"
  477.         android:gravity="center"
  478.         android:textSize="22dp"
  479.         tools:ignore="MissingConstraints" />
  480. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="0dp"
  481. <?xml version="1.0" encoding="utf-8"?>
  482. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  483.     xmlns:app="http://schemas.android.com/apk/res-auto"
  484.     xmlns:tools="http://schemas.android.com/tools"
  485.     android:layout_width="match_parent"
  486.     android:layout_height="match_parent"
  487.     tools:context=".Welcome">
  488.     <TextView
  489.         android:id="@+id/mainword"
  490.         android:layout_width="fill_parent"
  491.         android:layout_height="fill_parent"
  492.         android:gravity="center"
  493.         android:textSize="22dp"
  494.         tools:ignore="MissingConstraints" />
  495. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  496. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  497.     xmlns:app="http://schemas.android.com/apk/res-auto"
  498.     xmlns:tools="http://schemas.android.com/tools"
  499.     android:layout_width="match_parent"
  500.     android:layout_height="match_parent"
  501.     tools:context=".Welcome">
  502.     <TextView
  503.         android:id="@+id/mainword"
  504.         android:layout_width="fill_parent"
  505.         android:layout_height="fill_parent"
  506.         android:gravity="center"
  507.         android:textSize="22dp"
  508.         tools:ignore="MissingConstraints" />
  509. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  510. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  511.     xmlns:app="http://schemas.android.com/apk/res-auto"
  512.     xmlns:tools="http://schemas.android.com/tools"
  513.     android:layout_width="match_parent"
  514.     android:layout_height="match_parent"
  515.     tools:context=".Welcome">
  516.     <TextView
  517.         android:id="@+id/mainword"
  518.         android:layout_width="fill_parent"
  519.         android:layout_height="fill_parent"
  520.         android:gravity="center"
  521.         android:textSize="22dp"
  522.         tools:ignore="MissingConstraints" />
  523. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  524. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  525.     xmlns:app="http://schemas.android.com/apk/res-auto"
  526.     xmlns:tools="http://schemas.android.com/tools"
  527.     android:layout_width="match_parent"
  528.     android:layout_height="match_parent"
  529.     tools:context=".Welcome">
  530.     <TextView
  531.         android:id="@+id/mainword"
  532.         android:layout_width="fill_parent"
  533.         android:layout_height="fill_parent"
  534.         android:gravity="center"
  535.         android:textSize="22dp"
  536.         tools:ignore="MissingConstraints" />
  537. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  538. <?xml version="1.0" encoding="utf-8"?>
  539. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  540.     xmlns:app="http://schemas.android.com/apk/res-auto"
  541.     xmlns:tools="http://schemas.android.com/tools"
  542.     android:layout_width="match_parent"
  543.     android:layout_height="match_parent"
  544.     tools:context=".Welcome">
  545.     <TextView
  546.         android:id="@+id/mainword"
  547.         android:layout_width="fill_parent"
  548.         android:layout_height="fill_parent"
  549.         android:gravity="center"
  550.         android:textSize="22dp"
  551.         tools:ignore="MissingConstraints" />
  552. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  553. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  554.     xmlns:app="http://schemas.android.com/apk/res-auto"
  555.     xmlns:tools="http://schemas.android.com/tools"
  556.     android:layout_width="match_parent"
  557.     android:layout_height="match_parent"
  558.     tools:context=".Welcome">
  559.     <TextView
  560.         android:id="@+id/mainword"
  561.         android:layout_width="fill_parent"
  562.         android:layout_height="fill_parent"
  563.         android:gravity="center"
  564.         android:textSize="22dp"
  565.         tools:ignore="MissingConstraints" />
  566. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  567. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  568.     xmlns:app="http://schemas.android.com/apk/res-auto"
  569.     xmlns:tools="http://schemas.android.com/tools"
  570.     android:layout_width="match_parent"
  571.     android:layout_height="match_parent"
  572.     tools:context=".Welcome">
  573.     <TextView
  574.         android:id="@+id/mainword"
  575.         android:layout_width="fill_parent"
  576.         android:layout_height="fill_parent"
  577.         android:gravity="center"
  578.         android:textSize="22dp"
  579.         tools:ignore="MissingConstraints" />
  580. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  581. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  582.     xmlns:app="http://schemas.android.com/apk/res-auto"
  583.     xmlns:tools="http://schemas.android.com/tools"
  584.     android:layout_width="match_parent"
  585.     android:layout_height="match_parent"
  586.     tools:context=".Welcome">
  587.     <TextView
  588.         android:id="@+id/mainword"
  589.         android:layout_width="fill_parent"
  590.         android:layout_height="fill_parent"
  591.         android:gravity="center"
  592.         android:textSize="22dp"
  593.         tools:ignore="MissingConstraints" />
  594. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_weight="0.3"
  595. <?xml version="1.0" encoding="utf-8"?>
  596. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  597.     xmlns:app="http://schemas.android.com/apk/res-auto"
  598.     xmlns:tools="http://schemas.android.com/tools"
  599.     android:layout_width="match_parent"
  600.     android:layout_height="match_parent"
  601.     tools:context=".Welcome">
  602.     <TextView
  603.         android:id="@+id/mainword"
  604.         android:layout_width="fill_parent"
  605.         android:layout_height="fill_parent"
  606.         android:gravity="center"
  607.         android:textSize="22dp"
  608.         tools:ignore="MissingConstraints" />
  609. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  610. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  611.     xmlns:app="http://schemas.android.com/apk/res-auto"
  612.     xmlns:tools="http://schemas.android.com/tools"
  613.     android:layout_width="match_parent"
  614.     android:layout_height="match_parent"
  615.     tools:context=".Welcome">
  616.     <TextView
  617.         android:id="@+id/mainword"
  618.         android:layout_width="fill_parent"
  619.         android:layout_height="fill_parent"
  620.         android:gravity="center"
  621.         android:textSize="22dp"
  622.         tools:ignore="MissingConstraints" />
  623. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  624. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  625.     xmlns:app="http://schemas.android.com/apk/res-auto"
  626.     xmlns:tools="http://schemas.android.com/tools"
  627.     android:layout_width="match_parent"
  628.     android:layout_height="match_parent"
  629.     tools:context=".Welcome">
  630.     <TextView
  631.         android:id="@+id/mainword"
  632.         android:layout_width="fill_parent"
  633.         android:layout_height="fill_parent"
  634.         android:gravity="center"
  635.         android:textSize="22dp"
  636.         tools:ignore="MissingConstraints" />
  637. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  638. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  639.     xmlns:app="http://schemas.android.com/apk/res-auto"
  640.     xmlns:tools="http://schemas.android.com/tools"
  641.     android:layout_width="match_parent"
  642.     android:layout_height="match_parent"
  643.     tools:context=".Welcome">
  644.     <TextView
  645.         android:id="@+id/mainword"
  646.         android:layout_width="fill_parent"
  647.         android:layout_height="fill_parent"
  648.         android:gravity="center"
  649.         android:textSize="22dp"
  650.         tools:ignore="MissingConstraints" />
  651. </androidx.constraintlayout.widget.ConstraintLayout>android:gravity="center"
  652. <?xml version="1.0" encoding="utf-8"?>
  653. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  654.     xmlns:app="http://schemas.android.com/apk/res-auto"
  655.     xmlns:tools="http://schemas.android.com/tools"
  656.     android:layout_width="match_parent"
  657.     android:layout_height="match_parent"
  658.     tools:context=".Welcome">
  659.     <TextView
  660.         android:id="@+id/mainword"
  661.         android:layout_width="fill_parent"
  662.         android:layout_height="fill_parent"
  663.         android:gravity="center"
  664.         android:textSize="22dp"
  665.         tools:ignore="MissingConstraints" />
  666. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  667. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  668.     xmlns:app="http://schemas.android.com/apk/res-auto"
  669.     xmlns:tools="http://schemas.android.com/tools"
  670.     android:layout_width="match_parent"
  671.     android:layout_height="match_parent"
  672.     tools:context=".Welcome">
  673.     <TextView
  674.         android:id="@+id/mainword"
  675.         android:layout_width="fill_parent"
  676.         android:layout_height="fill_parent"
  677.         android:gravity="center"
  678.         android:textSize="22dp"
  679.         tools:ignore="MissingConstraints" />
  680. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  681. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  682.     xmlns:app="http://schemas.android.com/apk/res-auto"
  683.     xmlns:tools="http://schemas.android.com/tools"
  684.     android:layout_width="match_parent"
  685.     android:layout_height="match_parent"
  686.     tools:context=".Welcome">
  687.     <TextView
  688.         android:id="@+id/mainword"
  689.         android:layout_width="fill_parent"
  690.         android:layout_height="fill_parent"
  691.         android:gravity="center"
  692.         android:textSize="22dp"
  693.         tools:ignore="MissingConstraints" />
  694. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  695. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  696.     xmlns:app="http://schemas.android.com/apk/res-auto"
  697.     xmlns:tools="http://schemas.android.com/tools"
  698.     android:layout_width="match_parent"
  699.     android:layout_height="match_parent"
  700.     tools:context=".Welcome">
  701.     <TextView
  702.         android:id="@+id/mainword"
  703.         android:layout_width="fill_parent"
  704.         android:layout_height="fill_parent"
  705.         android:gravity="center"
  706.         android:textSize="22dp"
  707.         tools:ignore="MissingConstraints" />
  708. </androidx.constraintlayout.widget.ConstraintLayout>android:textSize="18dp"
  709. <?xml version="1.0" encoding="utf-8"?>
  710. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  711.     xmlns:app="http://schemas.android.com/apk/res-auto"
  712.     xmlns:tools="http://schemas.android.com/tools"
  713.     android:layout_width="match_parent"
  714.     android:layout_height="match_parent"
  715.     tools:context=".Welcome">
  716.     <TextView
  717.         android:id="@+id/mainword"
  718.         android:layout_width="fill_parent"
  719.         android:layout_height="fill_parent"
  720.         android:gravity="center"
  721.         android:textSize="22dp"
  722.         tools:ignore="MissingConstraints" />
  723. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  724. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  725.     xmlns:app="http://schemas.android.com/apk/res-auto"
  726.     xmlns:tools="http://schemas.android.com/tools"
  727.     android:layout_width="match_parent"
  728.     android:layout_height="match_parent"
  729.     tools:context=".Welcome">
  730.     <TextView
  731.         android:id="@+id/mainword"
  732.         android:layout_width="fill_parent"
  733.         android:layout_height="fill_parent"
  734.         android:gravity="center"
  735.         android:textSize="22dp"
  736.         tools:ignore="MissingConstraints" />
  737. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  738. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  739.     xmlns:app="http://schemas.android.com/apk/res-auto"
  740.     xmlns:tools="http://schemas.android.com/tools"
  741.     android:layout_width="match_parent"
  742.     android:layout_height="match_parent"
  743.     tools:context=".Welcome">
  744.     <TextView
  745.         android:id="@+id/mainword"
  746.         android:layout_width="fill_parent"
  747.         android:layout_height="fill_parent"
  748.         android:gravity="center"
  749.         android:textSize="22dp"
  750.         tools:ignore="MissingConstraints" />
  751. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  752. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  753.     xmlns:app="http://schemas.android.com/apk/res-auto"
  754.     xmlns:tools="http://schemas.android.com/tools"
  755.     android:layout_width="match_parent"
  756.     android:layout_height="match_parent"
  757.     tools:context=".Welcome">
  758.     <TextView
  759.         android:id="@+id/mainword"
  760.         android:layout_width="fill_parent"
  761.         android:layout_height="fill_parent"
  762.         android:gravity="center"
  763.         android:textSize="22dp"
  764.         tools:ignore="MissingConstraints" />
  765. </androidx.constraintlayout.widget.ConstraintLayout>android:text="用户名:"/>
  766. <?xml version="1.0" encoding="utf-8"?>
  767. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  768.     xmlns:app="http://schemas.android.com/apk/res-auto"
  769.     xmlns:tools="http://schemas.android.com/tools"
  770.     android:layout_width="match_parent"
  771.     android:layout_height="match_parent"
  772.     tools:context=".Welcome">
  773.     <TextView
  774.         android:id="@+id/mainword"
  775.         android:layout_width="fill_parent"
  776.         android:layout_height="fill_parent"
  777.         android:gravity="center"
  778.         android:textSize="22dp"
  779.         tools:ignore="MissingConstraints" />
  780. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  781. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  782.     xmlns:app="http://schemas.android.com/apk/res-auto"
  783.     xmlns:tools="http://schemas.android.com/tools"
  784.     android:layout_width="match_parent"
  785.     android:layout_height="match_parent"
  786.     tools:context=".Welcome">
  787.     <TextView
  788.         android:id="@+id/mainword"
  789.         android:layout_width="fill_parent"
  790.         android:layout_height="fill_parent"
  791.         android:gravity="center"
  792.         android:textSize="22dp"
  793.         tools:ignore="MissingConstraints" />
  794. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  795. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  796.     xmlns:app="http://schemas.android.com/apk/res-auto"
  797.     xmlns:tools="http://schemas.android.com/tools"
  798.     android:layout_width="match_parent"
  799.     android:layout_height="match_parent"
  800.     tools:context=".Welcome">
  801.     <TextView
  802.         android:id="@+id/mainword"
  803.         android:layout_width="fill_parent"
  804.         android:layout_height="fill_parent"
  805.         android:gravity="center"
  806.         android:textSize="22dp"
  807.         tools:ignore="MissingConstraints" />
  808. </androidx.constraintlayout.widget.ConstraintLayout><EditText
  809. <?xml version="1.0" encoding="utf-8"?>
  810. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  811.     xmlns:app="http://schemas.android.com/apk/res-auto"
  812.     xmlns:tools="http://schemas.android.com/tools"
  813.     android:layout_width="match_parent"
  814.     android:layout_height="match_parent"
  815.     tools:context=".Welcome">
  816.     <TextView
  817.         android:id="@+id/mainword"
  818.         android:layout_width="fill_parent"
  819.         android:layout_height="fill_parent"
  820.         android:gravity="center"
  821.         android:textSize="22dp"
  822.         tools:ignore="MissingConstraints" />
  823. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  824. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  825.     xmlns:app="http://schemas.android.com/apk/res-auto"
  826.     xmlns:tools="http://schemas.android.com/tools"
  827.     android:layout_width="match_parent"
  828.     android:layout_height="match_parent"
  829.     tools:context=".Welcome">
  830.     <TextView
  831.         android:id="@+id/mainword"
  832.         android:layout_width="fill_parent"
  833.         android:layout_height="fill_parent"
  834.         android:gravity="center"
  835.         android:textSize="22dp"
  836.         tools:ignore="MissingConstraints" />
  837. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  838. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  839.     xmlns:app="http://schemas.android.com/apk/res-auto"
  840.     xmlns:tools="http://schemas.android.com/tools"
  841.     android:layout_width="match_parent"
  842.     android:layout_height="match_parent"
  843.     tools:context=".Welcome">
  844.     <TextView
  845.         android:id="@+id/mainword"
  846.         android:layout_width="fill_parent"
  847.         android:layout_height="fill_parent"
  848.         android:gravity="center"
  849.         android:textSize="22dp"
  850.         tools:ignore="MissingConstraints" />
  851. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  852. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  853.     xmlns:app="http://schemas.android.com/apk/res-auto"
  854.     xmlns:tools="http://schemas.android.com/tools"
  855.     android:layout_width="match_parent"
  856.     android:layout_height="match_parent"
  857.     tools:context=".Welcome">
  858.     <TextView
  859.         android:id="@+id/mainword"
  860.         android:layout_width="fill_parent"
  861.         android:layout_height="fill_parent"
  862.         android:gravity="center"
  863.         android:textSize="22dp"
  864.         tools:ignore="MissingConstraints" />
  865. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/name"
  866. <?xml version="1.0" encoding="utf-8"?>
  867. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  868.     xmlns:app="http://schemas.android.com/apk/res-auto"
  869.     xmlns:tools="http://schemas.android.com/tools"
  870.     android:layout_width="match_parent"
  871.     android:layout_height="match_parent"
  872.     tools:context=".Welcome">
  873.     <TextView
  874.         android:id="@+id/mainword"
  875.         android:layout_width="fill_parent"
  876.         android:layout_height="fill_parent"
  877.         android:gravity="center"
  878.         android:textSize="22dp"
  879.         tools:ignore="MissingConstraints" />
  880. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  881. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  882.     xmlns:app="http://schemas.android.com/apk/res-auto"
  883.     xmlns:tools="http://schemas.android.com/tools"
  884.     android:layout_width="match_parent"
  885.     android:layout_height="match_parent"
  886.     tools:context=".Welcome">
  887.     <TextView
  888.         android:id="@+id/mainword"
  889.         android:layout_width="fill_parent"
  890.         android:layout_height="fill_parent"
  891.         android:gravity="center"
  892.         android:textSize="22dp"
  893.         tools:ignore="MissingConstraints" />
  894. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  895. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  896.     xmlns:app="http://schemas.android.com/apk/res-auto"
  897.     xmlns:tools="http://schemas.android.com/tools"
  898.     android:layout_width="match_parent"
  899.     android:layout_height="match_parent"
  900.     tools:context=".Welcome">
  901.     <TextView
  902.         android:id="@+id/mainword"
  903.         android:layout_width="fill_parent"
  904.         android:layout_height="fill_parent"
  905.         android:gravity="center"
  906.         android:textSize="22dp"
  907.         tools:ignore="MissingConstraints" />
  908. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  909. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  910.     xmlns:app="http://schemas.android.com/apk/res-auto"
  911.     xmlns:tools="http://schemas.android.com/tools"
  912.     android:layout_width="match_parent"
  913.     android:layout_height="match_parent"
  914.     tools:context=".Welcome">
  915.     <TextView
  916.         android:id="@+id/mainword"
  917.         android:layout_width="fill_parent"
  918.         android:layout_height="fill_parent"
  919.         android:gravity="center"
  920.         android:textSize="22dp"
  921.         tools:ignore="MissingConstraints" />
  922. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="0dp"
  923. <?xml version="1.0" encoding="utf-8"?>
  924. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  925.     xmlns:app="http://schemas.android.com/apk/res-auto"
  926.     xmlns:tools="http://schemas.android.com/tools"
  927.     android:layout_width="match_parent"
  928.     android:layout_height="match_parent"
  929.     tools:context=".Welcome">
  930.     <TextView
  931.         android:id="@+id/mainword"
  932.         android:layout_width="fill_parent"
  933.         android:layout_height="fill_parent"
  934.         android:gravity="center"
  935.         android:textSize="22dp"
  936.         tools:ignore="MissingConstraints" />
  937. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  938. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  939.     xmlns:app="http://schemas.android.com/apk/res-auto"
  940.     xmlns:tools="http://schemas.android.com/tools"
  941.     android:layout_width="match_parent"
  942.     android:layout_height="match_parent"
  943.     tools:context=".Welcome">
  944.     <TextView
  945.         android:id="@+id/mainword"
  946.         android:layout_width="fill_parent"
  947.         android:layout_height="fill_parent"
  948.         android:gravity="center"
  949.         android:textSize="22dp"
  950.         tools:ignore="MissingConstraints" />
  951. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  952. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  953.     xmlns:app="http://schemas.android.com/apk/res-auto"
  954.     xmlns:tools="http://schemas.android.com/tools"
  955.     android:layout_width="match_parent"
  956.     android:layout_height="match_parent"
  957.     tools:context=".Welcome">
  958.     <TextView
  959.         android:id="@+id/mainword"
  960.         android:layout_width="fill_parent"
  961.         android:layout_height="fill_parent"
  962.         android:gravity="center"
  963.         android:textSize="22dp"
  964.         tools:ignore="MissingConstraints" />
  965. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  966. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  967.     xmlns:app="http://schemas.android.com/apk/res-auto"
  968.     xmlns:tools="http://schemas.android.com/tools"
  969.     android:layout_width="match_parent"
  970.     android:layout_height="match_parent"
  971.     tools:context=".Welcome">
  972.     <TextView
  973.         android:id="@+id/mainword"
  974.         android:layout_width="fill_parent"
  975.         android:layout_height="fill_parent"
  976.         android:gravity="center"
  977.         android:textSize="22dp"
  978.         tools:ignore="MissingConstraints" />
  979. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  980. <?xml version="1.0" encoding="utf-8"?>
  981. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  982.     xmlns:app="http://schemas.android.com/apk/res-auto"
  983.     xmlns:tools="http://schemas.android.com/tools"
  984.     android:layout_width="match_parent"
  985.     android:layout_height="match_parent"
  986.     tools:context=".Welcome">
  987.     <TextView
  988.         android:id="@+id/mainword"
  989.         android:layout_width="fill_parent"
  990.         android:layout_height="fill_parent"
  991.         android:gravity="center"
  992.         android:textSize="22dp"
  993.         tools:ignore="MissingConstraints" />
  994. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  995. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  996.     xmlns:app="http://schemas.android.com/apk/res-auto"
  997.     xmlns:tools="http://schemas.android.com/tools"
  998.     android:layout_width="match_parent"
  999.     android:layout_height="match_parent"
  1000.     tools:context=".Welcome">
  1001.     <TextView
  1002.         android:id="@+id/mainword"
  1003.         android:layout_width="fill_parent"
  1004.         android:layout_height="fill_parent"
  1005.         android:gravity="center"
  1006.         android:textSize="22dp"
  1007.         tools:ignore="MissingConstraints" />
  1008. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1009. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1010.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1011.     xmlns:tools="http://schemas.android.com/tools"
  1012.     android:layout_width="match_parent"
  1013.     android:layout_height="match_parent"
  1014.     tools:context=".Welcome">
  1015.     <TextView
  1016.         android:id="@+id/mainword"
  1017.         android:layout_width="fill_parent"
  1018.         android:layout_height="fill_parent"
  1019.         android:gravity="center"
  1020.         android:textSize="22dp"
  1021.         tools:ignore="MissingConstraints" />
  1022. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1023. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1024.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1025.     xmlns:tools="http://schemas.android.com/tools"
  1026.     android:layout_width="match_parent"
  1027.     android:layout_height="match_parent"
  1028.     tools:context=".Welcome">
  1029.     <TextView
  1030.         android:id="@+id/mainword"
  1031.         android:layout_width="fill_parent"
  1032.         android:layout_height="fill_parent"
  1033.         android:gravity="center"
  1034.         android:textSize="22dp"
  1035.         tools:ignore="MissingConstraints" />
  1036. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_weight="1"
  1037. <?xml version="1.0" encoding="utf-8"?>
  1038. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1039.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1040.     xmlns:tools="http://schemas.android.com/tools"
  1041.     android:layout_width="match_parent"
  1042.     android:layout_height="match_parent"
  1043.     tools:context=".Welcome">
  1044.     <TextView
  1045.         android:id="@+id/mainword"
  1046.         android:layout_width="fill_parent"
  1047.         android:layout_height="fill_parent"
  1048.         android:gravity="center"
  1049.         android:textSize="22dp"
  1050.         tools:ignore="MissingConstraints" />
  1051. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1052. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1053.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1054.     xmlns:tools="http://schemas.android.com/tools"
  1055.     android:layout_width="match_parent"
  1056.     android:layout_height="match_parent"
  1057.     tools:context=".Welcome">
  1058.     <TextView
  1059.         android:id="@+id/mainword"
  1060.         android:layout_width="fill_parent"
  1061.         android:layout_height="fill_parent"
  1062.         android:gravity="center"
  1063.         android:textSize="22dp"
  1064.         tools:ignore="MissingConstraints" />
  1065. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1066. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1067.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1068.     xmlns:tools="http://schemas.android.com/tools"
  1069.     android:layout_width="match_parent"
  1070.     android:layout_height="match_parent"
  1071.     tools:context=".Welcome">
  1072.     <TextView
  1073.         android:id="@+id/mainword"
  1074.         android:layout_width="fill_parent"
  1075.         android:layout_height="fill_parent"
  1076.         android:gravity="center"
  1077.         android:textSize="22dp"
  1078.         tools:ignore="MissingConstraints" />
  1079. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1080. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1081.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1082.     xmlns:tools="http://schemas.android.com/tools"
  1083.     android:layout_width="match_parent"
  1084.     android:layout_height="match_parent"
  1085.     tools:context=".Welcome">
  1086.     <TextView
  1087.         android:id="@+id/mainword"
  1088.         android:layout_width="fill_parent"
  1089.         android:layout_height="fill_parent"
  1090.         android:gravity="center"
  1091.         android:textSize="22dp"
  1092.         tools:ignore="MissingConstraints" />
  1093. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_marginRight="20dp"/>
  1094. <?xml version="1.0" encoding="utf-8"?>
  1095. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1096.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1097.     xmlns:tools="http://schemas.android.com/tools"
  1098.     android:layout_width="match_parent"
  1099.     android:layout_height="match_parent"
  1100.     tools:context=".Welcome">
  1101.     <TextView
  1102.         android:id="@+id/mainword"
  1103.         android:layout_width="fill_parent"
  1104.         android:layout_height="fill_parent"
  1105.         android:gravity="center"
  1106.         android:textSize="22dp"
  1107.         tools:ignore="MissingConstraints" />
  1108. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1109. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1110.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1111.     xmlns:tools="http://schemas.android.com/tools"
  1112.     android:layout_width="match_parent"
  1113.     android:layout_height="match_parent"
  1114.     tools:context=".Welcome">
  1115.     <TextView
  1116.         android:id="@+id/mainword"
  1117.         android:layout_width="fill_parent"
  1118.         android:layout_height="fill_parent"
  1119.         android:gravity="center"
  1120.         android:textSize="22dp"
  1121.         tools:ignore="MissingConstraints" />
  1122. </androidx.constraintlayout.widget.ConstraintLayout></LinearLayout>
  1123. <?xml version="1.0" encoding="utf-8"?>
  1124. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1125.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1126.     xmlns:tools="http://schemas.android.com/tools"
  1127.     android:layout_width="match_parent"
  1128.     android:layout_height="match_parent"
  1129.     tools:context=".Welcome">
  1130.     <TextView
  1131.         android:id="@+id/mainword"
  1132.         android:layout_width="fill_parent"
  1133.         android:layout_height="fill_parent"
  1134.         android:gravity="center"
  1135.         android:textSize="22dp"
  1136.         tools:ignore="MissingConstraints" />
  1137. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1138. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1139.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1140.     xmlns:tools="http://schemas.android.com/tools"
  1141.     android:layout_width="match_parent"
  1142.     android:layout_height="match_parent"
  1143.     tools:context=".Welcome">
  1144.     <TextView
  1145.         android:id="@+id/mainword"
  1146.         android:layout_width="fill_parent"
  1147.         android:layout_height="fill_parent"
  1148.         android:gravity="center"
  1149.         android:textSize="22dp"
  1150.         tools:ignore="MissingConstraints" />
  1151. </androidx.constraintlayout.widget.ConstraintLayout><LinearLayout
  1152. <?xml version="1.0" encoding="utf-8"?>
  1153. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1154.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1155.     xmlns:tools="http://schemas.android.com/tools"
  1156.     android:layout_width="match_parent"
  1157.     android:layout_height="match_parent"
  1158.     tools:context=".Welcome">
  1159.     <TextView
  1160.         android:id="@+id/mainword"
  1161.         android:layout_width="fill_parent"
  1162.         android:layout_height="fill_parent"
  1163.         android:gravity="center"
  1164.         android:textSize="22dp"
  1165.         tools:ignore="MissingConstraints" />
  1166. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1167. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1168.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1169.     xmlns:tools="http://schemas.android.com/tools"
  1170.     android:layout_width="match_parent"
  1171.     android:layout_height="match_parent"
  1172.     tools:context=".Welcome">
  1173.     <TextView
  1174.         android:id="@+id/mainword"
  1175.         android:layout_width="fill_parent"
  1176.         android:layout_height="fill_parent"
  1177.         android:gravity="center"
  1178.         android:textSize="22dp"
  1179.         tools:ignore="MissingConstraints" />
  1180. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1181. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1182.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1183.     xmlns:tools="http://schemas.android.com/tools"
  1184.     android:layout_width="match_parent"
  1185.     android:layout_height="match_parent"
  1186.     tools:context=".Welcome">
  1187.     <TextView
  1188.         android:id="@+id/mainword"
  1189.         android:layout_width="fill_parent"
  1190.         android:layout_height="fill_parent"
  1191.         android:gravity="center"
  1192.         android:textSize="22dp"
  1193.         tools:ignore="MissingConstraints" />
  1194. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="match_parent"
  1195. <?xml version="1.0" encoding="utf-8"?>
  1196. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1197.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1198.     xmlns:tools="http://schemas.android.com/tools"
  1199.     android:layout_width="match_parent"
  1200.     android:layout_height="match_parent"
  1201.     tools:context=".Welcome">
  1202.     <TextView
  1203.         android:id="@+id/mainword"
  1204.         android:layout_width="fill_parent"
  1205.         android:layout_height="fill_parent"
  1206.         android:gravity="center"
  1207.         android:textSize="22dp"
  1208.         tools:ignore="MissingConstraints" />
  1209. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1210. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1211.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1212.     xmlns:tools="http://schemas.android.com/tools"
  1213.     android:layout_width="match_parent"
  1214.     android:layout_height="match_parent"
  1215.     tools:context=".Welcome">
  1216.     <TextView
  1217.         android:id="@+id/mainword"
  1218.         android:layout_width="fill_parent"
  1219.         android:layout_height="fill_parent"
  1220.         android:gravity="center"
  1221.         android:textSize="22dp"
  1222.         tools:ignore="MissingConstraints" />
  1223. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1224. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1225.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1226.     xmlns:tools="http://schemas.android.com/tools"
  1227.     android:layout_width="match_parent"
  1228.     android:layout_height="match_parent"
  1229.     tools:context=".Welcome">
  1230.     <TextView
  1231.         android:id="@+id/mainword"
  1232.         android:layout_width="fill_parent"
  1233.         android:layout_height="fill_parent"
  1234.         android:gravity="center"
  1235.         android:textSize="22dp"
  1236.         tools:ignore="MissingConstraints" />
  1237. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  1238. <?xml version="1.0" encoding="utf-8"?>
  1239. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1240.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1241.     xmlns:tools="http://schemas.android.com/tools"
  1242.     android:layout_width="match_parent"
  1243.     android:layout_height="match_parent"
  1244.     tools:context=".Welcome">
  1245.     <TextView
  1246.         android:id="@+id/mainword"
  1247.         android:layout_width="fill_parent"
  1248.         android:layout_height="fill_parent"
  1249.         android:gravity="center"
  1250.         android:textSize="22dp"
  1251.         tools:ignore="MissingConstraints" />
  1252. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1253. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1254.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1255.     xmlns:tools="http://schemas.android.com/tools"
  1256.     android:layout_width="match_parent"
  1257.     android:layout_height="match_parent"
  1258.     tools:context=".Welcome">
  1259.     <TextView
  1260.         android:id="@+id/mainword"
  1261.         android:layout_width="fill_parent"
  1262.         android:layout_height="fill_parent"
  1263.         android:gravity="center"
  1264.         android:textSize="22dp"
  1265.         tools:ignore="MissingConstraints" />
  1266. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1267. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1268.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1269.     xmlns:tools="http://schemas.android.com/tools"
  1270.     android:layout_width="match_parent"
  1271.     android:layout_height="match_parent"
  1272.     tools:context=".Welcome">
  1273.     <TextView
  1274.         android:id="@+id/mainword"
  1275.         android:layout_width="fill_parent"
  1276.         android:layout_height="fill_parent"
  1277.         android:gravity="center"
  1278.         android:textSize="22dp"
  1279.         tools:ignore="MissingConstraints" />
  1280. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_marginTop="10dp"
  1281. <?xml version="1.0" encoding="utf-8"?>
  1282. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1283.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1284.     xmlns:tools="http://schemas.android.com/tools"
  1285.     android:layout_width="match_parent"
  1286.     android:layout_height="match_parent"
  1287.     tools:context=".Welcome">
  1288.     <TextView
  1289.         android:id="@+id/mainword"
  1290.         android:layout_width="fill_parent"
  1291.         android:layout_height="fill_parent"
  1292.         android:gravity="center"
  1293.         android:textSize="22dp"
  1294.         tools:ignore="MissingConstraints" />
  1295. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1296. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1297.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1298.     xmlns:tools="http://schemas.android.com/tools"
  1299.     android:layout_width="match_parent"
  1300.     android:layout_height="match_parent"
  1301.     tools:context=".Welcome">
  1302.     <TextView
  1303.         android:id="@+id/mainword"
  1304.         android:layout_width="fill_parent"
  1305.         android:layout_height="fill_parent"
  1306.         android:gravity="center"
  1307.         android:textSize="22dp"
  1308.         tools:ignore="MissingConstraints" />
  1309. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1310. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1311.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1312.     xmlns:tools="http://schemas.android.com/tools"
  1313.     android:layout_width="match_parent"
  1314.     android:layout_height="match_parent"
  1315.     tools:context=".Welcome">
  1316.     <TextView
  1317.         android:id="@+id/mainword"
  1318.         android:layout_width="fill_parent"
  1319.         android:layout_height="fill_parent"
  1320.         android:gravity="center"
  1321.         android:textSize="22dp"
  1322.         tools:ignore="MissingConstraints" />
  1323. </androidx.constraintlayout.widget.ConstraintLayout>android:orientation="horizontal">
  1324. <?xml version="1.0" encoding="utf-8"?>
  1325. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1326.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1327.     xmlns:tools="http://schemas.android.com/tools"
  1328.     android:layout_width="match_parent"
  1329.     android:layout_height="match_parent"
  1330.     tools:context=".Welcome">
  1331.     <TextView
  1332.         android:id="@+id/mainword"
  1333.         android:layout_width="fill_parent"
  1334.         android:layout_height="fill_parent"
  1335.         android:gravity="center"
  1336.         android:textSize="22dp"
  1337.         tools:ignore="MissingConstraints" />
  1338. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1339. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1340.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1341.     xmlns:tools="http://schemas.android.com/tools"
  1342.     android:layout_width="match_parent"
  1343.     android:layout_height="match_parent"
  1344.     tools:context=".Welcome">
  1345.     <TextView
  1346.         android:id="@+id/mainword"
  1347.         android:layout_width="fill_parent"
  1348.         android:layout_height="fill_parent"
  1349.         android:gravity="center"
  1350.         android:textSize="22dp"
  1351.         tools:ignore="MissingConstraints" />
  1352. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1353. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1354.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1355.     xmlns:tools="http://schemas.android.com/tools"
  1356.     android:layout_width="match_parent"
  1357.     android:layout_height="match_parent"
  1358.     tools:context=".Welcome">
  1359.     <TextView
  1360.         android:id="@+id/mainword"
  1361.         android:layout_width="fill_parent"
  1362.         android:layout_height="fill_parent"
  1363.         android:gravity="center"
  1364.         android:textSize="22dp"
  1365.         tools:ignore="MissingConstraints" />
  1366. </androidx.constraintlayout.widget.ConstraintLayout><TextView
  1367. <?xml version="1.0" encoding="utf-8"?>
  1368. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1369.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1370.     xmlns:tools="http://schemas.android.com/tools"
  1371.     android:layout_width="match_parent"
  1372.     android:layout_height="match_parent"
  1373.     tools:context=".Welcome">
  1374.     <TextView
  1375.         android:id="@+id/mainword"
  1376.         android:layout_width="fill_parent"
  1377.         android:layout_height="fill_parent"
  1378.         android:gravity="center"
  1379.         android:textSize="22dp"
  1380.         tools:ignore="MissingConstraints" />
  1381. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1382. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1383.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1384.     xmlns:tools="http://schemas.android.com/tools"
  1385.     android:layout_width="match_parent"
  1386.     android:layout_height="match_parent"
  1387.     tools:context=".Welcome">
  1388.     <TextView
  1389.         android:id="@+id/mainword"
  1390.         android:layout_width="fill_parent"
  1391.         android:layout_height="fill_parent"
  1392.         android:gravity="center"
  1393.         android:textSize="22dp"
  1394.         tools:ignore="MissingConstraints" />
  1395. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1396. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1397.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1398.     xmlns:tools="http://schemas.android.com/tools"
  1399.     android:layout_width="match_parent"
  1400.     android:layout_height="match_parent"
  1401.     tools:context=".Welcome">
  1402.     <TextView
  1403.         android:id="@+id/mainword"
  1404.         android:layout_width="fill_parent"
  1405.         android:layout_height="fill_parent"
  1406.         android:gravity="center"
  1407.         android:textSize="22dp"
  1408.         tools:ignore="MissingConstraints" />
  1409. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1410. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1411.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1412.     xmlns:tools="http://schemas.android.com/tools"
  1413.     android:layout_width="match_parent"
  1414.     android:layout_height="match_parent"
  1415.     tools:context=".Welcome">
  1416.     <TextView
  1417.         android:id="@+id/mainword"
  1418.         android:layout_width="fill_parent"
  1419.         android:layout_height="fill_parent"
  1420.         android:gravity="center"
  1421.         android:textSize="22dp"
  1422.         tools:ignore="MissingConstraints" />
  1423. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="0dp"
  1424. <?xml version="1.0" encoding="utf-8"?>
  1425. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1426.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1427.     xmlns:tools="http://schemas.android.com/tools"
  1428.     android:layout_width="match_parent"
  1429.     android:layout_height="match_parent"
  1430.     tools:context=".Welcome">
  1431.     <TextView
  1432.         android:id="@+id/mainword"
  1433.         android:layout_width="fill_parent"
  1434.         android:layout_height="fill_parent"
  1435.         android:gravity="center"
  1436.         android:textSize="22dp"
  1437.         tools:ignore="MissingConstraints" />
  1438. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1439. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1440.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1441.     xmlns:tools="http://schemas.android.com/tools"
  1442.     android:layout_width="match_parent"
  1443.     android:layout_height="match_parent"
  1444.     tools:context=".Welcome">
  1445.     <TextView
  1446.         android:id="@+id/mainword"
  1447.         android:layout_width="fill_parent"
  1448.         android:layout_height="fill_parent"
  1449.         android:gravity="center"
  1450.         android:textSize="22dp"
  1451.         tools:ignore="MissingConstraints" />
  1452. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1453. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1454.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1455.     xmlns:tools="http://schemas.android.com/tools"
  1456.     android:layout_width="match_parent"
  1457.     android:layout_height="match_parent"
  1458.     tools:context=".Welcome">
  1459.     <TextView
  1460.         android:id="@+id/mainword"
  1461.         android:layout_width="fill_parent"
  1462.         android:layout_height="fill_parent"
  1463.         android:gravity="center"
  1464.         android:textSize="22dp"
  1465.         tools:ignore="MissingConstraints" />
  1466. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1467. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1468.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1469.     xmlns:tools="http://schemas.android.com/tools"
  1470.     android:layout_width="match_parent"
  1471.     android:layout_height="match_parent"
  1472.     tools:context=".Welcome">
  1473.     <TextView
  1474.         android:id="@+id/mainword"
  1475.         android:layout_width="fill_parent"
  1476.         android:layout_height="fill_parent"
  1477.         android:gravity="center"
  1478.         android:textSize="22dp"
  1479.         tools:ignore="MissingConstraints" />
  1480. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  1481. <?xml version="1.0" encoding="utf-8"?>
  1482. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1483.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1484.     xmlns:tools="http://schemas.android.com/tools"
  1485.     android:layout_width="match_parent"
  1486.     android:layout_height="match_parent"
  1487.     tools:context=".Welcome">
  1488.     <TextView
  1489.         android:id="@+id/mainword"
  1490.         android:layout_width="fill_parent"
  1491.         android:layout_height="fill_parent"
  1492.         android:gravity="center"
  1493.         android:textSize="22dp"
  1494.         tools:ignore="MissingConstraints" />
  1495. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1496. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1497.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1498.     xmlns:tools="http://schemas.android.com/tools"
  1499.     android:layout_width="match_parent"
  1500.     android:layout_height="match_parent"
  1501.     tools:context=".Welcome">
  1502.     <TextView
  1503.         android:id="@+id/mainword"
  1504.         android:layout_width="fill_parent"
  1505.         android:layout_height="fill_parent"
  1506.         android:gravity="center"
  1507.         android:textSize="22dp"
  1508.         tools:ignore="MissingConstraints" />
  1509. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1510. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1511.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1512.     xmlns:tools="http://schemas.android.com/tools"
  1513.     android:layout_width="match_parent"
  1514.     android:layout_height="match_parent"
  1515.     tools:context=".Welcome">
  1516.     <TextView
  1517.         android:id="@+id/mainword"
  1518.         android:layout_width="fill_parent"
  1519.         android:layout_height="fill_parent"
  1520.         android:gravity="center"
  1521.         android:textSize="22dp"
  1522.         tools:ignore="MissingConstraints" />
  1523. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1524. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1525.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1526.     xmlns:tools="http://schemas.android.com/tools"
  1527.     android:layout_width="match_parent"
  1528.     android:layout_height="match_parent"
  1529.     tools:context=".Welcome">
  1530.     <TextView
  1531.         android:id="@+id/mainword"
  1532.         android:layout_width="fill_parent"
  1533.         android:layout_height="fill_parent"
  1534.         android:gravity="center"
  1535.         android:textSize="22dp"
  1536.         tools:ignore="MissingConstraints" />
  1537. </androidx.constraintlayout.widget.ConstraintLayout>android:gravity="center"
  1538. <?xml version="1.0" encoding="utf-8"?>
  1539. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1540.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1541.     xmlns:tools="http://schemas.android.com/tools"
  1542.     android:layout_width="match_parent"
  1543.     android:layout_height="match_parent"
  1544.     tools:context=".Welcome">
  1545.     <TextView
  1546.         android:id="@+id/mainword"
  1547.         android:layout_width="fill_parent"
  1548.         android:layout_height="fill_parent"
  1549.         android:gravity="center"
  1550.         android:textSize="22dp"
  1551.         tools:ignore="MissingConstraints" />
  1552. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1553. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1554.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1555.     xmlns:tools="http://schemas.android.com/tools"
  1556.     android:layout_width="match_parent"
  1557.     android:layout_height="match_parent"
  1558.     tools:context=".Welcome">
  1559.     <TextView
  1560.         android:id="@+id/mainword"
  1561.         android:layout_width="fill_parent"
  1562.         android:layout_height="fill_parent"
  1563.         android:gravity="center"
  1564.         android:textSize="22dp"
  1565.         tools:ignore="MissingConstraints" />
  1566. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1567. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1568.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1569.     xmlns:tools="http://schemas.android.com/tools"
  1570.     android:layout_width="match_parent"
  1571.     android:layout_height="match_parent"
  1572.     tools:context=".Welcome">
  1573.     <TextView
  1574.         android:id="@+id/mainword"
  1575.         android:layout_width="fill_parent"
  1576.         android:layout_height="fill_parent"
  1577.         android:gravity="center"
  1578.         android:textSize="22dp"
  1579.         tools:ignore="MissingConstraints" />
  1580. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1581. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1582.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1583.     xmlns:tools="http://schemas.android.com/tools"
  1584.     android:layout_width="match_parent"
  1585.     android:layout_height="match_parent"
  1586.     tools:context=".Welcome">
  1587.     <TextView
  1588.         android:id="@+id/mainword"
  1589.         android:layout_width="fill_parent"
  1590.         android:layout_height="fill_parent"
  1591.         android:gravity="center"
  1592.         android:textSize="22dp"
  1593.         tools:ignore="MissingConstraints" />
  1594. </androidx.constraintlayout.widget.ConstraintLayout>android:textSize="18dp"
  1595. <?xml version="1.0" encoding="utf-8"?>
  1596. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1597.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1598.     xmlns:tools="http://schemas.android.com/tools"
  1599.     android:layout_width="match_parent"
  1600.     android:layout_height="match_parent"
  1601.     tools:context=".Welcome">
  1602.     <TextView
  1603.         android:id="@+id/mainword"
  1604.         android:layout_width="fill_parent"
  1605.         android:layout_height="fill_parent"
  1606.         android:gravity="center"
  1607.         android:textSize="22dp"
  1608.         tools:ignore="MissingConstraints" />
  1609. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1610. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1611.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1612.     xmlns:tools="http://schemas.android.com/tools"
  1613.     android:layout_width="match_parent"
  1614.     android:layout_height="match_parent"
  1615.     tools:context=".Welcome">
  1616.     <TextView
  1617.         android:id="@+id/mainword"
  1618.         android:layout_width="fill_parent"
  1619.         android:layout_height="fill_parent"
  1620.         android:gravity="center"
  1621.         android:textSize="22dp"
  1622.         tools:ignore="MissingConstraints" />
  1623. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1624. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1625.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1626.     xmlns:tools="http://schemas.android.com/tools"
  1627.     android:layout_width="match_parent"
  1628.     android:layout_height="match_parent"
  1629.     tools:context=".Welcome">
  1630.     <TextView
  1631.         android:id="@+id/mainword"
  1632.         android:layout_width="fill_parent"
  1633.         android:layout_height="fill_parent"
  1634.         android:gravity="center"
  1635.         android:textSize="22dp"
  1636.         tools:ignore="MissingConstraints" />
  1637. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1638. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1639.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1640.     xmlns:tools="http://schemas.android.com/tools"
  1641.     android:layout_width="match_parent"
  1642.     android:layout_height="match_parent"
  1643.     tools:context=".Welcome">
  1644.     <TextView
  1645.         android:id="@+id/mainword"
  1646.         android:layout_width="fill_parent"
  1647.         android:layout_height="fill_parent"
  1648.         android:gravity="center"
  1649.         android:textSize="22dp"
  1650.         tools:ignore="MissingConstraints" />
  1651. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_weight="0.3"
  1652. <?xml version="1.0" encoding="utf-8"?>
  1653. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1654.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1655.     xmlns:tools="http://schemas.android.com/tools"
  1656.     android:layout_width="match_parent"
  1657.     android:layout_height="match_parent"
  1658.     tools:context=".Welcome">
  1659.     <TextView
  1660.         android:id="@+id/mainword"
  1661.         android:layout_width="fill_parent"
  1662.         android:layout_height="fill_parent"
  1663.         android:gravity="center"
  1664.         android:textSize="22dp"
  1665.         tools:ignore="MissingConstraints" />
  1666. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1667. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1668.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1669.     xmlns:tools="http://schemas.android.com/tools"
  1670.     android:layout_width="match_parent"
  1671.     android:layout_height="match_parent"
  1672.     tools:context=".Welcome">
  1673.     <TextView
  1674.         android:id="@+id/mainword"
  1675.         android:layout_width="fill_parent"
  1676.         android:layout_height="fill_parent"
  1677.         android:gravity="center"
  1678.         android:textSize="22dp"
  1679.         tools:ignore="MissingConstraints" />
  1680. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1681. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1682.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1683.     xmlns:tools="http://schemas.android.com/tools"
  1684.     android:layout_width="match_parent"
  1685.     android:layout_height="match_parent"
  1686.     tools:context=".Welcome">
  1687.     <TextView
  1688.         android:id="@+id/mainword"
  1689.         android:layout_width="fill_parent"
  1690.         android:layout_height="fill_parent"
  1691.         android:gravity="center"
  1692.         android:textSize="22dp"
  1693.         tools:ignore="MissingConstraints" />
  1694. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1695. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1696.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1697.     xmlns:tools="http://schemas.android.com/tools"
  1698.     android:layout_width="match_parent"
  1699.     android:layout_height="match_parent"
  1700.     tools:context=".Welcome">
  1701.     <TextView
  1702.         android:id="@+id/mainword"
  1703.         android:layout_width="fill_parent"
  1704.         android:layout_height="fill_parent"
  1705.         android:gravity="center"
  1706.         android:textSize="22dp"
  1707.         tools:ignore="MissingConstraints" />
  1708. </androidx.constraintlayout.widget.ConstraintLayout>android:text="密<?xml version="1.0" encoding="utf-8"?>
  1709. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1710.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1711.     xmlns:tools="http://schemas.android.com/tools"
  1712.     android:layout_width="match_parent"
  1713.     android:layout_height="match_parent"
  1714.     tools:context=".Welcome">
  1715.     <TextView
  1716.         android:id="@+id/mainword"
  1717.         android:layout_width="fill_parent"
  1718.         android:layout_height="fill_parent"
  1719.         android:gravity="center"
  1720.         android:textSize="22dp"
  1721.         tools:ignore="MissingConstraints" />
  1722. </androidx.constraintlayout.widget.ConstraintLayout>码:"/>
  1723. <?xml version="1.0" encoding="utf-8"?>
  1724. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1725.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1726.     xmlns:tools="http://schemas.android.com/tools"
  1727.     android:layout_width="match_parent"
  1728.     android:layout_height="match_parent"
  1729.     tools:context=".Welcome">
  1730.     <TextView
  1731.         android:id="@+id/mainword"
  1732.         android:layout_width="fill_parent"
  1733.         android:layout_height="fill_parent"
  1734.         android:gravity="center"
  1735.         android:textSize="22dp"
  1736.         tools:ignore="MissingConstraints" />
  1737. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1738. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1739.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1740.     xmlns:tools="http://schemas.android.com/tools"
  1741.     android:layout_width="match_parent"
  1742.     android:layout_height="match_parent"
  1743.     tools:context=".Welcome">
  1744.     <TextView
  1745.         android:id="@+id/mainword"
  1746.         android:layout_width="fill_parent"
  1747.         android:layout_height="fill_parent"
  1748.         android:gravity="center"
  1749.         android:textSize="22dp"
  1750.         tools:ignore="MissingConstraints" />
  1751. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1752. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1753.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1754.     xmlns:tools="http://schemas.android.com/tools"
  1755.     android:layout_width="match_parent"
  1756.     android:layout_height="match_parent"
  1757.     tools:context=".Welcome">
  1758.     <TextView
  1759.         android:id="@+id/mainword"
  1760.         android:layout_width="fill_parent"
  1761.         android:layout_height="fill_parent"
  1762.         android:gravity="center"
  1763.         android:textSize="22dp"
  1764.         tools:ignore="MissingConstraints" />
  1765. </androidx.constraintlayout.widget.ConstraintLayout><EditText
  1766. <?xml version="1.0" encoding="utf-8"?>
  1767. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1768.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1769.     xmlns:tools="http://schemas.android.com/tools"
  1770.     android:layout_width="match_parent"
  1771.     android:layout_height="match_parent"
  1772.     tools:context=".Welcome">
  1773.     <TextView
  1774.         android:id="@+id/mainword"
  1775.         android:layout_width="fill_parent"
  1776.         android:layout_height="fill_parent"
  1777.         android:gravity="center"
  1778.         android:textSize="22dp"
  1779.         tools:ignore="MissingConstraints" />
  1780. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1781. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1782.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1783.     xmlns:tools="http://schemas.android.com/tools"
  1784.     android:layout_width="match_parent"
  1785.     android:layout_height="match_parent"
  1786.     tools:context=".Welcome">
  1787.     <TextView
  1788.         android:id="@+id/mainword"
  1789.         android:layout_width="fill_parent"
  1790.         android:layout_height="fill_parent"
  1791.         android:gravity="center"
  1792.         android:textSize="22dp"
  1793.         tools:ignore="MissingConstraints" />
  1794. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1795. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1796.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1797.     xmlns:tools="http://schemas.android.com/tools"
  1798.     android:layout_width="match_parent"
  1799.     android:layout_height="match_parent"
  1800.     tools:context=".Welcome">
  1801.     <TextView
  1802.         android:id="@+id/mainword"
  1803.         android:layout_width="fill_parent"
  1804.         android:layout_height="fill_parent"
  1805.         android:gravity="center"
  1806.         android:textSize="22dp"
  1807.         tools:ignore="MissingConstraints" />
  1808. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1809. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1810.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1811.     xmlns:tools="http://schemas.android.com/tools"
  1812.     android:layout_width="match_parent"
  1813.     android:layout_height="match_parent"
  1814.     tools:context=".Welcome">
  1815.     <TextView
  1816.         android:id="@+id/mainword"
  1817.         android:layout_width="fill_parent"
  1818.         android:layout_height="fill_parent"
  1819.         android:gravity="center"
  1820.         android:textSize="22dp"
  1821.         tools:ignore="MissingConstraints" />
  1822. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/pwd"
  1823. <?xml version="1.0" encoding="utf-8"?>
  1824. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1825.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1826.     xmlns:tools="http://schemas.android.com/tools"
  1827.     android:layout_width="match_parent"
  1828.     android:layout_height="match_parent"
  1829.     tools:context=".Welcome">
  1830.     <TextView
  1831.         android:id="@+id/mainword"
  1832.         android:layout_width="fill_parent"
  1833.         android:layout_height="fill_parent"
  1834.         android:gravity="center"
  1835.         android:textSize="22dp"
  1836.         tools:ignore="MissingConstraints" />
  1837. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1838. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1839.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1840.     xmlns:tools="http://schemas.android.com/tools"
  1841.     android:layout_width="match_parent"
  1842.     android:layout_height="match_parent"
  1843.     tools:context=".Welcome">
  1844.     <TextView
  1845.         android:id="@+id/mainword"
  1846.         android:layout_width="fill_parent"
  1847.         android:layout_height="fill_parent"
  1848.         android:gravity="center"
  1849.         android:textSize="22dp"
  1850.         tools:ignore="MissingConstraints" />
  1851. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1852. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1853.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1854.     xmlns:tools="http://schemas.android.com/tools"
  1855.     android:layout_width="match_parent"
  1856.     android:layout_height="match_parent"
  1857.     tools:context=".Welcome">
  1858.     <TextView
  1859.         android:id="@+id/mainword"
  1860.         android:layout_width="fill_parent"
  1861.         android:layout_height="fill_parent"
  1862.         android:gravity="center"
  1863.         android:textSize="22dp"
  1864.         tools:ignore="MissingConstraints" />
  1865. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1866. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1867.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1868.     xmlns:tools="http://schemas.android.com/tools"
  1869.     android:layout_width="match_parent"
  1870.     android:layout_height="match_parent"
  1871.     tools:context=".Welcome">
  1872.     <TextView
  1873.         android:id="@+id/mainword"
  1874.         android:layout_width="fill_parent"
  1875.         android:layout_height="fill_parent"
  1876.         android:gravity="center"
  1877.         android:textSize="22dp"
  1878.         tools:ignore="MissingConstraints" />
  1879. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="0dp"
  1880. <?xml version="1.0" encoding="utf-8"?>
  1881. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1882.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1883.     xmlns:tools="http://schemas.android.com/tools"
  1884.     android:layout_width="match_parent"
  1885.     android:layout_height="match_parent"
  1886.     tools:context=".Welcome">
  1887.     <TextView
  1888.         android:id="@+id/mainword"
  1889.         android:layout_width="fill_parent"
  1890.         android:layout_height="fill_parent"
  1891.         android:gravity="center"
  1892.         android:textSize="22dp"
  1893.         tools:ignore="MissingConstraints" />
  1894. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1895. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1896.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1897.     xmlns:tools="http://schemas.android.com/tools"
  1898.     android:layout_width="match_parent"
  1899.     android:layout_height="match_parent"
  1900.     tools:context=".Welcome">
  1901.     <TextView
  1902.         android:id="@+id/mainword"
  1903.         android:layout_width="fill_parent"
  1904.         android:layout_height="fill_parent"
  1905.         android:gravity="center"
  1906.         android:textSize="22dp"
  1907.         tools:ignore="MissingConstraints" />
  1908. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1909. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1910.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1911.     xmlns:tools="http://schemas.android.com/tools"
  1912.     android:layout_width="match_parent"
  1913.     android:layout_height="match_parent"
  1914.     tools:context=".Welcome">
  1915.     <TextView
  1916.         android:id="@+id/mainword"
  1917.         android:layout_width="fill_parent"
  1918.         android:layout_height="fill_parent"
  1919.         android:gravity="center"
  1920.         android:textSize="22dp"
  1921.         tools:ignore="MissingConstraints" />
  1922. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1923. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1924.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1925.     xmlns:tools="http://schemas.android.com/tools"
  1926.     android:layout_width="match_parent"
  1927.     android:layout_height="match_parent"
  1928.     tools:context=".Welcome">
  1929.     <TextView
  1930.         android:id="@+id/mainword"
  1931.         android:layout_width="fill_parent"
  1932.         android:layout_height="fill_parent"
  1933.         android:gravity="center"
  1934.         android:textSize="22dp"
  1935.         tools:ignore="MissingConstraints" />
  1936. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  1937. <?xml version="1.0" encoding="utf-8"?>
  1938. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1939.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1940.     xmlns:tools="http://schemas.android.com/tools"
  1941.     android:layout_width="match_parent"
  1942.     android:layout_height="match_parent"
  1943.     tools:context=".Welcome">
  1944.     <TextView
  1945.         android:id="@+id/mainword"
  1946.         android:layout_width="fill_parent"
  1947.         android:layout_height="fill_parent"
  1948.         android:gravity="center"
  1949.         android:textSize="22dp"
  1950.         tools:ignore="MissingConstraints" />
  1951. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1952. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1953.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1954.     xmlns:tools="http://schemas.android.com/tools"
  1955.     android:layout_width="match_parent"
  1956.     android:layout_height="match_parent"
  1957.     tools:context=".Welcome">
  1958.     <TextView
  1959.         android:id="@+id/mainword"
  1960.         android:layout_width="fill_parent"
  1961.         android:layout_height="fill_parent"
  1962.         android:gravity="center"
  1963.         android:textSize="22dp"
  1964.         tools:ignore="MissingConstraints" />
  1965. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1966. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1967.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1968.     xmlns:tools="http://schemas.android.com/tools"
  1969.     android:layout_width="match_parent"
  1970.     android:layout_height="match_parent"
  1971.     tools:context=".Welcome">
  1972.     <TextView
  1973.         android:id="@+id/mainword"
  1974.         android:layout_width="fill_parent"
  1975.         android:layout_height="fill_parent"
  1976.         android:gravity="center"
  1977.         android:textSize="22dp"
  1978.         tools:ignore="MissingConstraints" />
  1979. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1980. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1981.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1982.     xmlns:tools="http://schemas.android.com/tools"
  1983.     android:layout_width="match_parent"
  1984.     android:layout_height="match_parent"
  1985.     tools:context=".Welcome">
  1986.     <TextView
  1987.         android:id="@+id/mainword"
  1988.         android:layout_width="fill_parent"
  1989.         android:layout_height="fill_parent"
  1990.         android:gravity="center"
  1991.         android:textSize="22dp"
  1992.         tools:ignore="MissingConstraints" />
  1993. </androidx.constraintlayout.widget.ConstraintLayout>android:inputType="textPassword"
  1994. <?xml version="1.0" encoding="utf-8"?>
  1995. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1996.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1997.     xmlns:tools="http://schemas.android.com/tools"
  1998.     android:layout_width="match_parent"
  1999.     android:layout_height="match_parent"
  2000.     tools:context=".Welcome">
  2001.     <TextView
  2002.         android:id="@+id/mainword"
  2003.         android:layout_width="fill_parent"
  2004.         android:layout_height="fill_parent"
  2005.         android:gravity="center"
  2006.         android:textSize="22dp"
  2007.         tools:ignore="MissingConstraints" />
  2008. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2009. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2010.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2011.     xmlns:tools="http://schemas.android.com/tools"
  2012.     android:layout_width="match_parent"
  2013.     android:layout_height="match_parent"
  2014.     tools:context=".Welcome">
  2015.     <TextView
  2016.         android:id="@+id/mainword"
  2017.         android:layout_width="fill_parent"
  2018.         android:layout_height="fill_parent"
  2019.         android:gravity="center"
  2020.         android:textSize="22dp"
  2021.         tools:ignore="MissingConstraints" />
  2022. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2023. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2024.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2025.     xmlns:tools="http://schemas.android.com/tools"
  2026.     android:layout_width="match_parent"
  2027.     android:layout_height="match_parent"
  2028.     tools:context=".Welcome">
  2029.     <TextView
  2030.         android:id="@+id/mainword"
  2031.         android:layout_width="fill_parent"
  2032.         android:layout_height="fill_parent"
  2033.         android:gravity="center"
  2034.         android:textSize="22dp"
  2035.         tools:ignore="MissingConstraints" />
  2036. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2037. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2038.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2039.     xmlns:tools="http://schemas.android.com/tools"
  2040.     android:layout_width="match_parent"
  2041.     android:layout_height="match_parent"
  2042.     tools:context=".Welcome">
  2043.     <TextView
  2044.         android:id="@+id/mainword"
  2045.         android:layout_width="fill_parent"
  2046.         android:layout_height="fill_parent"
  2047.         android:gravity="center"
  2048.         android:textSize="22dp"
  2049.         tools:ignore="MissingConstraints" />
  2050. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_weight="1"
  2051. <?xml version="1.0" encoding="utf-8"?>
  2052. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2053.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2054.     xmlns:tools="http://schemas.android.com/tools"
  2055.     android:layout_width="match_parent"
  2056.     android:layout_height="match_parent"
  2057.     tools:context=".Welcome">
  2058.     <TextView
  2059.         android:id="@+id/mainword"
  2060.         android:layout_width="fill_parent"
  2061.         android:layout_height="fill_parent"
  2062.         android:gravity="center"
  2063.         android:textSize="22dp"
  2064.         tools:ignore="MissingConstraints" />
  2065. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2066. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2067.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2068.     xmlns:tools="http://schemas.android.com/tools"
  2069.     android:layout_width="match_parent"
  2070.     android:layout_height="match_parent"
  2071.     tools:context=".Welcome">
  2072.     <TextView
  2073.         android:id="@+id/mainword"
  2074.         android:layout_width="fill_parent"
  2075.         android:layout_height="fill_parent"
  2076.         android:gravity="center"
  2077.         android:textSize="22dp"
  2078.         tools:ignore="MissingConstraints" />
  2079. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2080. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2081.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2082.     xmlns:tools="http://schemas.android.com/tools"
  2083.     android:layout_width="match_parent"
  2084.     android:layout_height="match_parent"
  2085.     tools:context=".Welcome">
  2086.     <TextView
  2087.         android:id="@+id/mainword"
  2088.         android:layout_width="fill_parent"
  2089.         android:layout_height="fill_parent"
  2090.         android:gravity="center"
  2091.         android:textSize="22dp"
  2092.         tools:ignore="MissingConstraints" />
  2093. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2094. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2095.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2096.     xmlns:tools="http://schemas.android.com/tools"
  2097.     android:layout_width="match_parent"
  2098.     android:layout_height="match_parent"
  2099.     tools:context=".Welcome">
  2100.     <TextView
  2101.         android:id="@+id/mainword"
  2102.         android:layout_width="fill_parent"
  2103.         android:layout_height="fill_parent"
  2104.         android:gravity="center"
  2105.         android:textSize="22dp"
  2106.         tools:ignore="MissingConstraints" />
  2107. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_marginRight="20dp"
  2108. <?xml version="1.0" encoding="utf-8"?>
  2109. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2110.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2111.     xmlns:tools="http://schemas.android.com/tools"
  2112.     android:layout_width="match_parent"
  2113.     android:layout_height="match_parent"
  2114.     tools:context=".Welcome">
  2115.     <TextView
  2116.         android:id="@+id/mainword"
  2117.         android:layout_width="fill_parent"
  2118.         android:layout_height="fill_parent"
  2119.         android:gravity="center"
  2120.         android:textSize="22dp"
  2121.         tools:ignore="MissingConstraints" />
  2122. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2123. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2124.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2125.     xmlns:tools="http://schemas.android.com/tools"
  2126.     android:layout_width="match_parent"
  2127.     android:layout_height="match_parent"
  2128.     tools:context=".Welcome">
  2129.     <TextView
  2130.         android:id="@+id/mainword"
  2131.         android:layout_width="fill_parent"
  2132.         android:layout_height="fill_parent"
  2133.         android:gravity="center"
  2134.         android:textSize="22dp"
  2135.         tools:ignore="MissingConstraints" />
  2136. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2137. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2138.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2139.     xmlns:tools="http://schemas.android.com/tools"
  2140.     android:layout_width="match_parent"
  2141.     android:layout_height="match_parent"
  2142.     tools:context=".Welcome">
  2143.     <TextView
  2144.         android:id="@+id/mainword"
  2145.         android:layout_width="fill_parent"
  2146.         android:layout_height="fill_parent"
  2147.         android:gravity="center"
  2148.         android:textSize="22dp"
  2149.         tools:ignore="MissingConstraints" />
  2150. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2151. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2152.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2153.     xmlns:tools="http://schemas.android.com/tools"
  2154.     android:layout_width="match_parent"
  2155.     android:layout_height="match_parent"
  2156.     tools:context=".Welcome">
  2157.     <TextView
  2158.         android:id="@+id/mainword"
  2159.         android:layout_width="fill_parent"
  2160.         android:layout_height="fill_parent"
  2161.         android:gravity="center"
  2162.         android:textSize="22dp"
  2163.         tools:ignore="MissingConstraints" />
  2164. </androidx.constraintlayout.widget.ConstraintLayout>/>
  2165. <?xml version="1.0" encoding="utf-8"?>
  2166. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2167.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2168.     xmlns:tools="http://schemas.android.com/tools"
  2169.     android:layout_width="match_parent"
  2170.     android:layout_height="match_parent"
  2171.     tools:context=".Welcome">
  2172.     <TextView
  2173.         android:id="@+id/mainword"
  2174.         android:layout_width="fill_parent"
  2175.         android:layout_height="fill_parent"
  2176.         android:gravity="center"
  2177.         android:textSize="22dp"
  2178.         tools:ignore="MissingConstraints" />
  2179. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2180. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2181.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2182.     xmlns:tools="http://schemas.android.com/tools"
  2183.     android:layout_width="match_parent"
  2184.     android:layout_height="match_parent"
  2185.     tools:context=".Welcome">
  2186.     <TextView
  2187.         android:id="@+id/mainword"
  2188.         android:layout_width="fill_parent"
  2189.         android:layout_height="fill_parent"
  2190.         android:gravity="center"
  2191.         android:textSize="22dp"
  2192.         tools:ignore="MissingConstraints" />
  2193. </androidx.constraintlayout.widget.ConstraintLayout></LinearLayout>
  2194. <?xml version="1.0" encoding="utf-8"?>
  2195. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2196.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2197.     xmlns:tools="http://schemas.android.com/tools"
  2198.     android:layout_width="match_parent"
  2199.     android:layout_height="match_parent"
  2200.     tools:context=".Welcome">
  2201.     <TextView
  2202.         android:id="@+id/mainword"
  2203.         android:layout_width="fill_parent"
  2204.         android:layout_height="fill_parent"
  2205.         android:gravity="center"
  2206.         android:textSize="22dp"
  2207.         tools:ignore="MissingConstraints" />
  2208. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2209. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2210.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2211.     xmlns:tools="http://schemas.android.com/tools"
  2212.     android:layout_width="match_parent"
  2213.     android:layout_height="match_parent"
  2214.     tools:context=".Welcome">
  2215.     <TextView
  2216.         android:id="@+id/mainword"
  2217.         android:layout_width="fill_parent"
  2218.         android:layout_height="fill_parent"
  2219.         android:gravity="center"
  2220.         android:textSize="22dp"
  2221.         tools:ignore="MissingConstraints" />
  2222. </androidx.constraintlayout.widget.ConstraintLayout><LinearLayout
  2223. <?xml version="1.0" encoding="utf-8"?>
  2224. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2225.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2226.     xmlns:tools="http://schemas.android.com/tools"
  2227.     android:layout_width="match_parent"
  2228.     android:layout_height="match_parent"
  2229.     tools:context=".Welcome">
  2230.     <TextView
  2231.         android:id="@+id/mainword"
  2232.         android:layout_width="fill_parent"
  2233.         android:layout_height="fill_parent"
  2234.         android:gravity="center"
  2235.         android:textSize="22dp"
  2236.         tools:ignore="MissingConstraints" />
  2237. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2238. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2239.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2240.     xmlns:tools="http://schemas.android.com/tools"
  2241.     android:layout_width="match_parent"
  2242.     android:layout_height="match_parent"
  2243.     tools:context=".Welcome">
  2244.     <TextView
  2245.         android:id="@+id/mainword"
  2246.         android:layout_width="fill_parent"
  2247.         android:layout_height="fill_parent"
  2248.         android:gravity="center"
  2249.         android:textSize="22dp"
  2250.         tools:ignore="MissingConstraints" />
  2251. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2252. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2253.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2254.     xmlns:tools="http://schemas.android.com/tools"
  2255.     android:layout_width="match_parent"
  2256.     android:layout_height="match_parent"
  2257.     tools:context=".Welcome">
  2258.     <TextView
  2259.         android:id="@+id/mainword"
  2260.         android:layout_width="fill_parent"
  2261.         android:layout_height="fill_parent"
  2262.         android:gravity="center"
  2263.         android:textSize="22dp"
  2264.         tools:ignore="MissingConstraints" />
  2265. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="match_parent"
  2266. <?xml version="1.0" encoding="utf-8"?>
  2267. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2268.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2269.     xmlns:tools="http://schemas.android.com/tools"
  2270.     android:layout_width="match_parent"
  2271.     android:layout_height="match_parent"
  2272.     tools:context=".Welcome">
  2273.     <TextView
  2274.         android:id="@+id/mainword"
  2275.         android:layout_width="fill_parent"
  2276.         android:layout_height="fill_parent"
  2277.         android:gravity="center"
  2278.         android:textSize="22dp"
  2279.         tools:ignore="MissingConstraints" />
  2280. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2281. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2282.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2283.     xmlns:tools="http://schemas.android.com/tools"
  2284.     android:layout_width="match_parent"
  2285.     android:layout_height="match_parent"
  2286.     tools:context=".Welcome">
  2287.     <TextView
  2288.         android:id="@+id/mainword"
  2289.         android:layout_width="fill_parent"
  2290.         android:layout_height="fill_parent"
  2291.         android:gravity="center"
  2292.         android:textSize="22dp"
  2293.         tools:ignore="MissingConstraints" />
  2294. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2295. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2296.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2297.     xmlns:tools="http://schemas.android.com/tools"
  2298.     android:layout_width="match_parent"
  2299.     android:layout_height="match_parent"
  2300.     tools:context=".Welcome">
  2301.     <TextView
  2302.         android:id="@+id/mainword"
  2303.         android:layout_width="fill_parent"
  2304.         android:layout_height="fill_parent"
  2305.         android:gravity="center"
  2306.         android:textSize="22dp"
  2307.         tools:ignore="MissingConstraints" />
  2308. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  2309. <?xml version="1.0" encoding="utf-8"?>
  2310. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2311.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2312.     xmlns:tools="http://schemas.android.com/tools"
  2313.     android:layout_width="match_parent"
  2314.     android:layout_height="match_parent"
  2315.     tools:context=".Welcome">
  2316.     <TextView
  2317.         android:id="@+id/mainword"
  2318.         android:layout_width="fill_parent"
  2319.         android:layout_height="fill_parent"
  2320.         android:gravity="center"
  2321.         android:textSize="22dp"
  2322.         tools:ignore="MissingConstraints" />
  2323. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2324. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2325.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2326.     xmlns:tools="http://schemas.android.com/tools"
  2327.     android:layout_width="match_parent"
  2328.     android:layout_height="match_parent"
  2329.     tools:context=".Welcome">
  2330.     <TextView
  2331.         android:id="@+id/mainword"
  2332.         android:layout_width="fill_parent"
  2333.         android:layout_height="fill_parent"
  2334.         android:gravity="center"
  2335.         android:textSize="22dp"
  2336.         tools:ignore="MissingConstraints" />
  2337. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2338. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2339.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2340.     xmlns:tools="http://schemas.android.com/tools"
  2341.     android:layout_width="match_parent"
  2342.     android:layout_height="match_parent"
  2343.     tools:context=".Welcome">
  2344.     <TextView
  2345.         android:id="@+id/mainword"
  2346.         android:layout_width="fill_parent"
  2347.         android:layout_height="fill_parent"
  2348.         android:gravity="center"
  2349.         android:textSize="22dp"
  2350.         tools:ignore="MissingConstraints" />
  2351. </androidx.constraintlayout.widget.ConstraintLayout>android:orientation="horizontal">
  2352. <?xml version="1.0" encoding="utf-8"?>
  2353. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2354.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2355.     xmlns:tools="http://schemas.android.com/tools"
  2356.     android:layout_width="match_parent"
  2357.     android:layout_height="match_parent"
  2358.     tools:context=".Welcome">
  2359.     <TextView
  2360.         android:id="@+id/mainword"
  2361.         android:layout_width="fill_parent"
  2362.         android:layout_height="fill_parent"
  2363.         android:gravity="center"
  2364.         android:textSize="22dp"
  2365.         tools:ignore="MissingConstraints" />
  2366. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2367. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2368.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2369.     xmlns:tools="http://schemas.android.com/tools"
  2370.     android:layout_width="match_parent"
  2371.     android:layout_height="match_parent"
  2372.     tools:context=".Welcome">
  2373.     <TextView
  2374.         android:id="@+id/mainword"
  2375.         android:layout_width="fill_parent"
  2376.         android:layout_height="fill_parent"
  2377.         android:gravity="center"
  2378.         android:textSize="22dp"
  2379.         tools:ignore="MissingConstraints" />
  2380. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2381. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2382.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2383.     xmlns:tools="http://schemas.android.com/tools"
  2384.     android:layout_width="match_parent"
  2385.     android:layout_height="match_parent"
  2386.     tools:context=".Welcome">
  2387.     <TextView
  2388.         android:id="@+id/mainword"
  2389.         android:layout_width="fill_parent"
  2390.         android:layout_height="fill_parent"
  2391.         android:gravity="center"
  2392.         android:textSize="22dp"
  2393.         tools:ignore="MissingConstraints" />
  2394. </androidx.constraintlayout.widget.ConstraintLayout><Button
  2395. <?xml version="1.0" encoding="utf-8"?>
  2396. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2397.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2398.     xmlns:tools="http://schemas.android.com/tools"
  2399.     android:layout_width="match_parent"
  2400.     android:layout_height="match_parent"
  2401.     tools:context=".Welcome">
  2402.     <TextView
  2403.         android:id="@+id/mainword"
  2404.         android:layout_width="fill_parent"
  2405.         android:layout_height="fill_parent"
  2406.         android:gravity="center"
  2407.         android:textSize="22dp"
  2408.         tools:ignore="MissingConstraints" />
  2409. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2410. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2411.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2412.     xmlns:tools="http://schemas.android.com/tools"
  2413.     android:layout_width="match_parent"
  2414.     android:layout_height="match_parent"
  2415.     tools:context=".Welcome">
  2416.     <TextView
  2417.         android:id="@+id/mainword"
  2418.         android:layout_width="fill_parent"
  2419.         android:layout_height="fill_parent"
  2420.         android:gravity="center"
  2421.         android:textSize="22dp"
  2422.         tools:ignore="MissingConstraints" />
  2423. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2424. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2425.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2426.     xmlns:tools="http://schemas.android.com/tools"
  2427.     android:layout_width="match_parent"
  2428.     android:layout_height="match_parent"
  2429.     tools:context=".Welcome">
  2430.     <TextView
  2431.         android:id="@+id/mainword"
  2432.         android:layout_width="fill_parent"
  2433.         android:layout_height="fill_parent"
  2434.         android:gravity="center"
  2435.         android:textSize="22dp"
  2436.         tools:ignore="MissingConstraints" />
  2437. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2438. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2439.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2440.     xmlns:tools="http://schemas.android.com/tools"
  2441.     android:layout_width="match_parent"
  2442.     android:layout_height="match_parent"
  2443.     tools:context=".Welcome">
  2444.     <TextView
  2445.         android:id="@+id/mainword"
  2446.         android:layout_width="fill_parent"
  2447.         android:layout_height="fill_parent"
  2448.         android:gravity="center"
  2449.         android:textSize="22dp"
  2450.         tools:ignore="MissingConstraints" />
  2451. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/login"
  2452. <?xml version="1.0" encoding="utf-8"?>
  2453. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2454.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2455.     xmlns:tools="http://schemas.android.com/tools"
  2456.     android:layout_width="match_parent"
  2457.     android:layout_height="match_parent"
  2458.     tools:context=".Welcome">
  2459.     <TextView
  2460.         android:id="@+id/mainword"
  2461.         android:layout_width="fill_parent"
  2462.         android:layout_height="fill_parent"
  2463.         android:gravity="center"
  2464.         android:textSize="22dp"
  2465.         tools:ignore="MissingConstraints" />
  2466. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2467. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2468.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2469.     xmlns:tools="http://schemas.android.com/tools"
  2470.     android:layout_width="match_parent"
  2471.     android:layout_height="match_parent"
  2472.     tools:context=".Welcome">
  2473.     <TextView
  2474.         android:id="@+id/mainword"
  2475.         android:layout_width="fill_parent"
  2476.         android:layout_height="fill_parent"
  2477.         android:gravity="center"
  2478.         android:textSize="22dp"
  2479.         tools:ignore="MissingConstraints" />
  2480. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2481. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2482.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2483.     xmlns:tools="http://schemas.android.com/tools"
  2484.     android:layout_width="match_parent"
  2485.     android:layout_height="match_parent"
  2486.     tools:context=".Welcome">
  2487.     <TextView
  2488.         android:id="@+id/mainword"
  2489.         android:layout_width="fill_parent"
  2490.         android:layout_height="fill_parent"
  2491.         android:gravity="center"
  2492.         android:textSize="22dp"
  2493.         tools:ignore="MissingConstraints" />
  2494. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2495. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2496.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2497.     xmlns:tools="http://schemas.android.com/tools"
  2498.     android:layout_width="match_parent"
  2499.     android:layout_height="match_parent"
  2500.     tools:context=".Welcome">
  2501.     <TextView
  2502.         android:id="@+id/mainword"
  2503.         android:layout_width="fill_parent"
  2504.         android:layout_height="fill_parent"
  2505.         android:gravity="center"
  2506.         android:textSize="22dp"
  2507.         tools:ignore="MissingConstraints" />
  2508. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="wrap_content"
  2509. <?xml version="1.0" encoding="utf-8"?>
  2510. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2511.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2512.     xmlns:tools="http://schemas.android.com/tools"
  2513.     android:layout_width="match_parent"
  2514.     android:layout_height="match_parent"
  2515.     tools:context=".Welcome">
  2516.     <TextView
  2517.         android:id="@+id/mainword"
  2518.         android:layout_width="fill_parent"
  2519.         android:layout_height="fill_parent"
  2520.         android:gravity="center"
  2521.         android:textSize="22dp"
  2522.         tools:ignore="MissingConstraints" />
  2523. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2524. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2525.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2526.     xmlns:tools="http://schemas.android.com/tools"
  2527.     android:layout_width="match_parent"
  2528.     android:layout_height="match_parent"
  2529.     tools:context=".Welcome">
  2530.     <TextView
  2531.         android:id="@+id/mainword"
  2532.         android:layout_width="fill_parent"
  2533.         android:layout_height="fill_parent"
  2534.         android:gravity="center"
  2535.         android:textSize="22dp"
  2536.         tools:ignore="MissingConstraints" />
  2537. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2538. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2539.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2540.     xmlns:tools="http://schemas.android.com/tools"
  2541.     android:layout_width="match_parent"
  2542.     android:layout_height="match_parent"
  2543.     tools:context=".Welcome">
  2544.     <TextView
  2545.         android:id="@+id/mainword"
  2546.         android:layout_width="fill_parent"
  2547.         android:layout_height="fill_parent"
  2548.         android:gravity="center"
  2549.         android:textSize="22dp"
  2550.         tools:ignore="MissingConstraints" />
  2551. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2552. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2553.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2554.     xmlns:tools="http://schemas.android.com/tools"
  2555.     android:layout_width="match_parent"
  2556.     android:layout_height="match_parent"
  2557.     tools:context=".Welcome">
  2558.     <TextView
  2559.         android:id="@+id/mainword"
  2560.         android:layout_width="fill_parent"
  2561.         android:layout_height="fill_parent"
  2562.         android:gravity="center"
  2563.         android:textSize="22dp"
  2564.         tools:ignore="MissingConstraints" />
  2565. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  2566. <?xml version="1.0" encoding="utf-8"?>
  2567. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2568.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2569.     xmlns:tools="http://schemas.android.com/tools"
  2570.     android:layout_width="match_parent"
  2571.     android:layout_height="match_parent"
  2572.     tools:context=".Welcome">
  2573.     <TextView
  2574.         android:id="@+id/mainword"
  2575.         android:layout_width="fill_parent"
  2576.         android:layout_height="fill_parent"
  2577.         android:gravity="center"
  2578.         android:textSize="22dp"
  2579.         tools:ignore="MissingConstraints" />
  2580. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2581. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2582.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2583.     xmlns:tools="http://schemas.android.com/tools"
  2584.     android:layout_width="match_parent"
  2585.     android:layout_height="match_parent"
  2586.     tools:context=".Welcome">
  2587.     <TextView
  2588.         android:id="@+id/mainword"
  2589.         android:layout_width="fill_parent"
  2590.         android:layout_height="fill_parent"
  2591.         android:gravity="center"
  2592.         android:textSize="22dp"
  2593.         tools:ignore="MissingConstraints" />
  2594. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2595. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2596.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2597.     xmlns:tools="http://schemas.android.com/tools"
  2598.     android:layout_width="match_parent"
  2599.     android:layout_height="match_parent"
  2600.     tools:context=".Welcome">
  2601.     <TextView
  2602.         android:id="@+id/mainword"
  2603.         android:layout_width="fill_parent"
  2604.         android:layout_height="fill_parent"
  2605.         android:gravity="center"
  2606.         android:textSize="22dp"
  2607.         tools:ignore="MissingConstraints" />
  2608. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2609. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2610.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2611.     xmlns:tools="http://schemas.android.com/tools"
  2612.     android:layout_width="match_parent"
  2613.     android:layout_height="match_parent"
  2614.     tools:context=".Welcome">
  2615.     <TextView
  2616.         android:id="@+id/mainword"
  2617.         android:layout_width="fill_parent"
  2618.         android:layout_height="fill_parent"
  2619.         android:gravity="center"
  2620.         android:textSize="22dp"
  2621.         tools:ignore="MissingConstraints" />
  2622. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_weight="1"
  2623. <?xml version="1.0" encoding="utf-8"?>
  2624. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2625.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2626.     xmlns:tools="http://schemas.android.com/tools"
  2627.     android:layout_width="match_parent"
  2628.     android:layout_height="match_parent"
  2629.     tools:context=".Welcome">
  2630.     <TextView
  2631.         android:id="@+id/mainword"
  2632.         android:layout_width="fill_parent"
  2633.         android:layout_height="fill_parent"
  2634.         android:gravity="center"
  2635.         android:textSize="22dp"
  2636.         tools:ignore="MissingConstraints" />
  2637. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2638. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2639.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2640.     xmlns:tools="http://schemas.android.com/tools"
  2641.     android:layout_width="match_parent"
  2642.     android:layout_height="match_parent"
  2643.     tools:context=".Welcome">
  2644.     <TextView
  2645.         android:id="@+id/mainword"
  2646.         android:layout_width="fill_parent"
  2647.         android:layout_height="fill_parent"
  2648.         android:gravity="center"
  2649.         android:textSize="22dp"
  2650.         tools:ignore="MissingConstraints" />
  2651. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2652. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2653.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2654.     xmlns:tools="http://schemas.android.com/tools"
  2655.     android:layout_width="match_parent"
  2656.     android:layout_height="match_parent"
  2657.     tools:context=".Welcome">
  2658.     <TextView
  2659.         android:id="@+id/mainword"
  2660.         android:layout_width="fill_parent"
  2661.         android:layout_height="fill_parent"
  2662.         android:gravity="center"
  2663.         android:textSize="22dp"
  2664.         tools:ignore="MissingConstraints" />
  2665. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2666. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2667.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2668.     xmlns:tools="http://schemas.android.com/tools"
  2669.     android:layout_width="match_parent"
  2670.     android:layout_height="match_parent"
  2671.     tools:context=".Welcome">
  2672.     <TextView
  2673.         android:id="@+id/mainword"
  2674.         android:layout_width="fill_parent"
  2675.         android:layout_height="fill_parent"
  2676.         android:gravity="center"
  2677.         android:textSize="22dp"
  2678.         tools:ignore="MissingConstraints" />
  2679. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_margin="5dp"
  2680. <?xml version="1.0" encoding="utf-8"?>
  2681. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2682.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2683.     xmlns:tools="http://schemas.android.com/tools"
  2684.     android:layout_width="match_parent"
  2685.     android:layout_height="match_parent"
  2686.     tools:context=".Welcome">
  2687.     <TextView
  2688.         android:id="@+id/mainword"
  2689.         android:layout_width="fill_parent"
  2690.         android:layout_height="fill_parent"
  2691.         android:gravity="center"
  2692.         android:textSize="22dp"
  2693.         tools:ignore="MissingConstraints" />
  2694. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2695. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2696.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2697.     xmlns:tools="http://schemas.android.com/tools"
  2698.     android:layout_width="match_parent"
  2699.     android:layout_height="match_parent"
  2700.     tools:context=".Welcome">
  2701.     <TextView
  2702.         android:id="@+id/mainword"
  2703.         android:layout_width="fill_parent"
  2704.         android:layout_height="fill_parent"
  2705.         android:gravity="center"
  2706.         android:textSize="22dp"
  2707.         tools:ignore="MissingConstraints" />
  2708. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2709. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2710.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2711.     xmlns:tools="http://schemas.android.com/tools"
  2712.     android:layout_width="match_parent"
  2713.     android:layout_height="match_parent"
  2714.     tools:context=".Welcome">
  2715.     <TextView
  2716.         android:id="@+id/mainword"
  2717.         android:layout_width="fill_parent"
  2718.         android:layout_height="fill_parent"
  2719.         android:gravity="center"
  2720.         android:textSize="22dp"
  2721.         tools:ignore="MissingConstraints" />
  2722. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2723. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2724.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2725.     xmlns:tools="http://schemas.android.com/tools"
  2726.     android:layout_width="match_parent"
  2727.     android:layout_height="match_parent"
  2728.     tools:context=".Welcome">
  2729.     <TextView
  2730.         android:id="@+id/mainword"
  2731.         android:layout_width="fill_parent"
  2732.         android:layout_height="fill_parent"
  2733.         android:gravity="center"
  2734.         android:textSize="22dp"
  2735.         tools:ignore="MissingConstraints" />
  2736. </androidx.constraintlayout.widget.ConstraintLayout>android:text="登录"
  2737. <?xml version="1.0" encoding="utf-8"?>
  2738. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2739.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2740.     xmlns:tools="http://schemas.android.com/tools"
  2741.     android:layout_width="match_parent"
  2742.     android:layout_height="match_parent"
  2743.     tools:context=".Welcome">
  2744.     <TextView
  2745.         android:id="@+id/mainword"
  2746.         android:layout_width="fill_parent"
  2747.         android:layout_height="fill_parent"
  2748.         android:gravity="center"
  2749.         android:textSize="22dp"
  2750.         tools:ignore="MissingConstraints" />
  2751. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2752. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2753.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2754.     xmlns:tools="http://schemas.android.com/tools"
  2755.     android:layout_width="match_parent"
  2756.     android:layout_height="match_parent"
  2757.     tools:context=".Welcome">
  2758.     <TextView
  2759.         android:id="@+id/mainword"
  2760.         android:layout_width="fill_parent"
  2761.         android:layout_height="fill_parent"
  2762.         android:gravity="center"
  2763.         android:textSize="22dp"
  2764.         tools:ignore="MissingConstraints" />
  2765. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2766. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2767.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2768.     xmlns:tools="http://schemas.android.com/tools"
  2769.     android:layout_width="match_parent"
  2770.     android:layout_height="match_parent"
  2771.     tools:context=".Welcome">
  2772.     <TextView
  2773.         android:id="@+id/mainword"
  2774.         android:layout_width="fill_parent"
  2775.         android:layout_height="fill_parent"
  2776.         android:gravity="center"
  2777.         android:textSize="22dp"
  2778.         tools:ignore="MissingConstraints" />
  2779. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2780. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2781.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2782.     xmlns:tools="http://schemas.android.com/tools"
  2783.     android:layout_width="match_parent"
  2784.     android:layout_height="match_parent"
  2785.     tools:context=".Welcome">
  2786.     <TextView
  2787.         android:id="@+id/mainword"
  2788.         android:layout_width="fill_parent"
  2789.         android:layout_height="fill_parent"
  2790.         android:gravity="center"
  2791.         android:textSize="22dp"
  2792.         tools:ignore="MissingConstraints" />
  2793. </androidx.constraintlayout.widget.ConstraintLayout>/>
  2794. <?xml version="1.0" encoding="utf-8"?>
  2795. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2796.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2797.     xmlns:tools="http://schemas.android.com/tools"
  2798.     android:layout_width="match_parent"
  2799.     android:layout_height="match_parent"
  2800.     tools:context=".Welcome">
  2801.     <TextView
  2802.         android:id="@+id/mainword"
  2803.         android:layout_width="fill_parent"
  2804.         android:layout_height="fill_parent"
  2805.         android:gravity="center"
  2806.         android:textSize="22dp"
  2807.         tools:ignore="MissingConstraints" />
  2808. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2809. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2810.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2811.     xmlns:tools="http://schemas.android.com/tools"
  2812.     android:layout_width="match_parent"
  2813.     android:layout_height="match_parent"
  2814.     tools:context=".Welcome">
  2815.     <TextView
  2816.         android:id="@+id/mainword"
  2817.         android:layout_width="fill_parent"
  2818.         android:layout_height="fill_parent"
  2819.         android:gravity="center"
  2820.         android:textSize="22dp"
  2821.         tools:ignore="MissingConstraints" />
  2822. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2823. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2824.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2825.     xmlns:tools="http://schemas.android.com/tools"
  2826.     android:layout_width="match_parent"
  2827.     android:layout_height="match_parent"
  2828.     tools:context=".Welcome">
  2829.     <TextView
  2830.         android:id="@+id/mainword"
  2831.         android:layout_width="fill_parent"
  2832.         android:layout_height="fill_parent"
  2833.         android:gravity="center"
  2834.         android:textSize="22dp"
  2835.         tools:ignore="MissingConstraints" />
  2836. </androidx.constraintlayout.widget.ConstraintLayout><Button
  2837. <?xml version="1.0" encoding="utf-8"?>
  2838. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2839.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2840.     xmlns:tools="http://schemas.android.com/tools"
  2841.     android:layout_width="match_parent"
  2842.     android:layout_height="match_parent"
  2843.     tools:context=".Welcome">
  2844.     <TextView
  2845.         android:id="@+id/mainword"
  2846.         android:layout_width="fill_parent"
  2847.         android:layout_height="fill_parent"
  2848.         android:gravity="center"
  2849.         android:textSize="22dp"
  2850.         tools:ignore="MissingConstraints" />
  2851. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2852. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2853.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2854.     xmlns:tools="http://schemas.android.com/tools"
  2855.     android:layout_width="match_parent"
  2856.     android:layout_height="match_parent"
  2857.     tools:context=".Welcome">
  2858.     <TextView
  2859.         android:id="@+id/mainword"
  2860.         android:layout_width="fill_parent"
  2861.         android:layout_height="fill_parent"
  2862.         android:gravity="center"
  2863.         android:textSize="22dp"
  2864.         tools:ignore="MissingConstraints" />
  2865. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2866. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2867.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2868.     xmlns:tools="http://schemas.android.com/tools"
  2869.     android:layout_width="match_parent"
  2870.     android:layout_height="match_parent"
  2871.     tools:context=".Welcome">
  2872.     <TextView
  2873.         android:id="@+id/mainword"
  2874.         android:layout_width="fill_parent"
  2875.         android:layout_height="fill_parent"
  2876.         android:gravity="center"
  2877.         android:textSize="22dp"
  2878.         tools:ignore="MissingConstraints" />
  2879. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2880. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2881.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2882.     xmlns:tools="http://schemas.android.com/tools"
  2883.     android:layout_width="match_parent"
  2884.     android:layout_height="match_parent"
  2885.     tools:context=".Welcome">
  2886.     <TextView
  2887.         android:id="@+id/mainword"
  2888.         android:layout_width="fill_parent"
  2889.         android:layout_height="fill_parent"
  2890.         android:gravity="center"
  2891.         android:textSize="22dp"
  2892.         tools:ignore="MissingConstraints" />
  2893. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/reg"
  2894. <?xml version="1.0" encoding="utf-8"?>
  2895. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2896.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2897.     xmlns:tools="http://schemas.android.com/tools"
  2898.     android:layout_width="match_parent"
  2899.     android:layout_height="match_parent"
  2900.     tools:context=".Welcome">
  2901.     <TextView
  2902.         android:id="@+id/mainword"
  2903.         android:layout_width="fill_parent"
  2904.         android:layout_height="fill_parent"
  2905.         android:gravity="center"
  2906.         android:textSize="22dp"
  2907.         tools:ignore="MissingConstraints" />
  2908. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2909. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2910.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2911.     xmlns:tools="http://schemas.android.com/tools"
  2912.     android:layout_width="match_parent"
  2913.     android:layout_height="match_parent"
  2914.     tools:context=".Welcome">
  2915.     <TextView
  2916.         android:id="@+id/mainword"
  2917.         android:layout_width="fill_parent"
  2918.         android:layout_height="fill_parent"
  2919.         android:gravity="center"
  2920.         android:textSize="22dp"
  2921.         tools:ignore="MissingConstraints" />
  2922. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2923. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2924.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2925.     xmlns:tools="http://schemas.android.com/tools"
  2926.     android:layout_width="match_parent"
  2927.     android:layout_height="match_parent"
  2928.     tools:context=".Welcome">
  2929.     <TextView
  2930.         android:id="@+id/mainword"
  2931.         android:layout_width="fill_parent"
  2932.         android:layout_height="fill_parent"
  2933.         android:gravity="center"
  2934.         android:textSize="22dp"
  2935.         tools:ignore="MissingConstraints" />
  2936. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2937. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2938.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2939.     xmlns:tools="http://schemas.android.com/tools"
  2940.     android:layout_width="match_parent"
  2941.     android:layout_height="match_parent"
  2942.     tools:context=".Welcome">
  2943.     <TextView
  2944.         android:id="@+id/mainword"
  2945.         android:layout_width="fill_parent"
  2946.         android:layout_height="fill_parent"
  2947.         android:gravity="center"
  2948.         android:textSize="22dp"
  2949.         tools:ignore="MissingConstraints" />
  2950. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="wrap_content"
  2951. <?xml version="1.0" encoding="utf-8"?>
  2952. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2953.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2954.     xmlns:tools="http://schemas.android.com/tools"
  2955.     android:layout_width="match_parent"
  2956.     android:layout_height="match_parent"
  2957.     tools:context=".Welcome">
  2958.     <TextView
  2959.         android:id="@+id/mainword"
  2960.         android:layout_width="fill_parent"
  2961.         android:layout_height="fill_parent"
  2962.         android:gravity="center"
  2963.         android:textSize="22dp"
  2964.         tools:ignore="MissingConstraints" />
  2965. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2966. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2967.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2968.     xmlns:tools="http://schemas.android.com/tools"
  2969.     android:layout_width="match_parent"
  2970.     android:layout_height="match_parent"
  2971.     tools:context=".Welcome">
  2972.     <TextView
  2973.         android:id="@+id/mainword"
  2974.         android:layout_width="fill_parent"
  2975.         android:layout_height="fill_parent"
  2976.         android:gravity="center"
  2977.         android:textSize="22dp"
  2978.         tools:ignore="MissingConstraints" />
  2979. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2980. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2981.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2982.     xmlns:tools="http://schemas.android.com/tools"
  2983.     android:layout_width="match_parent"
  2984.     android:layout_height="match_parent"
  2985.     tools:context=".Welcome">
  2986.     <TextView
  2987.         android:id="@+id/mainword"
  2988.         android:layout_width="fill_parent"
  2989.         android:layout_height="fill_parent"
  2990.         android:gravity="center"
  2991.         android:textSize="22dp"
  2992.         tools:ignore="MissingConstraints" />
  2993. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2994. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2995.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2996.     xmlns:tools="http://schemas.android.com/tools"
  2997.     android:layout_width="match_parent"
  2998.     android:layout_height="match_parent"
  2999.     tools:context=".Welcome">
  3000.     <TextView
  3001.         android:id="@+id/mainword"
  3002.         android:layout_width="fill_parent"
  3003.         android:layout_height="fill_parent"
  3004.         android:gravity="center"
  3005.         android:textSize="22dp"
  3006.         tools:ignore="MissingConstraints" />
  3007. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  3008. <?xml version="1.0" encoding="utf-8"?>
  3009. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3010.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3011.     xmlns:tools="http://schemas.android.com/tools"
  3012.     android:layout_width="match_parent"
  3013.     android:layout_height="match_parent"
  3014.     tools:context=".Welcome">
  3015.     <TextView
  3016.         android:id="@+id/mainword"
  3017.         android:layout_width="fill_parent"
  3018.         android:layout_height="fill_parent"
  3019.         android:gravity="center"
  3020.         android:textSize="22dp"
  3021.         tools:ignore="MissingConstraints" />
  3022. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3023. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3024.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3025.     xmlns:tools="http://schemas.android.com/tools"
  3026.     android:layout_width="match_parent"
  3027.     android:layout_height="match_parent"
  3028.     tools:context=".Welcome">
  3029.     <TextView
  3030.         android:id="@+id/mainword"
  3031.         android:layout_width="fill_parent"
  3032.         android:layout_height="fill_parent"
  3033.         android:gravity="center"
  3034.         android:textSize="22dp"
  3035.         tools:ignore="MissingConstraints" />
  3036. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3037. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3038.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3039.     xmlns:tools="http://schemas.android.com/tools"
  3040.     android:layout_width="match_parent"
  3041.     android:layout_height="match_parent"
  3042.     tools:context=".Welcome">
  3043.     <TextView
  3044.         android:id="@+id/mainword"
  3045.         android:layout_width="fill_parent"
  3046.         android:layout_height="fill_parent"
  3047.         android:gravity="center"
  3048.         android:textSize="22dp"
  3049.         tools:ignore="MissingConstraints" />
  3050. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3051. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3052.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3053.     xmlns:tools="http://schemas.android.com/tools"
  3054.     android:layout_width="match_parent"
  3055.     android:layout_height="match_parent"
  3056.     tools:context=".Welcome">
  3057.     <TextView
  3058.         android:id="@+id/mainword"
  3059.         android:layout_width="fill_parent"
  3060.         android:layout_height="fill_parent"
  3061.         android:gravity="center"
  3062.         android:textSize="22dp"
  3063.         tools:ignore="MissingConstraints" />
  3064. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_weight="1"
  3065. <?xml version="1.0" encoding="utf-8"?>
  3066. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3067.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3068.     xmlns:tools="http://schemas.android.com/tools"
  3069.     android:layout_width="match_parent"
  3070.     android:layout_height="match_parent"
  3071.     tools:context=".Welcome">
  3072.     <TextView
  3073.         android:id="@+id/mainword"
  3074.         android:layout_width="fill_parent"
  3075.         android:layout_height="fill_parent"
  3076.         android:gravity="center"
  3077.         android:textSize="22dp"
  3078.         tools:ignore="MissingConstraints" />
  3079. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3080. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3081.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3082.     xmlns:tools="http://schemas.android.com/tools"
  3083.     android:layout_width="match_parent"
  3084.     android:layout_height="match_parent"
  3085.     tools:context=".Welcome">
  3086.     <TextView
  3087.         android:id="@+id/mainword"
  3088.         android:layout_width="fill_parent"
  3089.         android:layout_height="fill_parent"
  3090.         android:gravity="center"
  3091.         android:textSize="22dp"
  3092.         tools:ignore="MissingConstraints" />
  3093. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3094. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3095.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3096.     xmlns:tools="http://schemas.android.com/tools"
  3097.     android:layout_width="match_parent"
  3098.     android:layout_height="match_parent"
  3099.     tools:context=".Welcome">
  3100.     <TextView
  3101.         android:id="@+id/mainword"
  3102.         android:layout_width="fill_parent"
  3103.         android:layout_height="fill_parent"
  3104.         android:gravity="center"
  3105.         android:textSize="22dp"
  3106.         tools:ignore="MissingConstraints" />
  3107. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3108. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3109.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3110.     xmlns:tools="http://schemas.android.com/tools"
  3111.     android:layout_width="match_parent"
  3112.     android:layout_height="match_parent"
  3113.     tools:context=".Welcome">
  3114.     <TextView
  3115.         android:id="@+id/mainword"
  3116.         android:layout_width="fill_parent"
  3117.         android:layout_height="fill_parent"
  3118.         android:gravity="center"
  3119.         android:textSize="22dp"
  3120.         tools:ignore="MissingConstraints" />
  3121. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_margin="5dp"
  3122. <?xml version="1.0" encoding="utf-8"?>
  3123. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3124.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3125.     xmlns:tools="http://schemas.android.com/tools"
  3126.     android:layout_width="match_parent"
  3127.     android:layout_height="match_parent"
  3128.     tools:context=".Welcome">
  3129.     <TextView
  3130.         android:id="@+id/mainword"
  3131.         android:layout_width="fill_parent"
  3132.         android:layout_height="fill_parent"
  3133.         android:gravity="center"
  3134.         android:textSize="22dp"
  3135.         tools:ignore="MissingConstraints" />
  3136. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3137. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3138.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3139.     xmlns:tools="http://schemas.android.com/tools"
  3140.     android:layout_width="match_parent"
  3141.     android:layout_height="match_parent"
  3142.     tools:context=".Welcome">
  3143.     <TextView
  3144.         android:id="@+id/mainword"
  3145.         android:layout_width="fill_parent"
  3146.         android:layout_height="fill_parent"
  3147.         android:gravity="center"
  3148.         android:textSize="22dp"
  3149.         tools:ignore="MissingConstraints" />
  3150. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3151. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3152.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3153.     xmlns:tools="http://schemas.android.com/tools"
  3154.     android:layout_width="match_parent"
  3155.     android:layout_height="match_parent"
  3156.     tools:context=".Welcome">
  3157.     <TextView
  3158.         android:id="@+id/mainword"
  3159.         android:layout_width="fill_parent"
  3160.         android:layout_height="fill_parent"
  3161.         android:gravity="center"
  3162.         android:textSize="22dp"
  3163.         tools:ignore="MissingConstraints" />
  3164. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3165. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3166.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3167.     xmlns:tools="http://schemas.android.com/tools"
  3168.     android:layout_width="match_parent"
  3169.     android:layout_height="match_parent"
  3170.     tools:context=".Welcome">
  3171.     <TextView
  3172.         android:id="@+id/mainword"
  3173.         android:layout_width="fill_parent"
  3174.         android:layout_height="fill_parent"
  3175.         android:gravity="center"
  3176.         android:textSize="22dp"
  3177.         tools:ignore="MissingConstraints" />
  3178. </androidx.constraintlayout.widget.ConstraintLayout>android:text="注册"
  3179. <?xml version="1.0" encoding="utf-8"?>
  3180. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3181.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3182.     xmlns:tools="http://schemas.android.com/tools"
  3183.     android:layout_width="match_parent"
  3184.     android:layout_height="match_parent"
  3185.     tools:context=".Welcome">
  3186.     <TextView
  3187.         android:id="@+id/mainword"
  3188.         android:layout_width="fill_parent"
  3189.         android:layout_height="fill_parent"
  3190.         android:gravity="center"
  3191.         android:textSize="22dp"
  3192.         tools:ignore="MissingConstraints" />
  3193. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3194. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3195.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3196.     xmlns:tools="http://schemas.android.com/tools"
  3197.     android:layout_width="match_parent"
  3198.     android:layout_height="match_parent"
  3199.     tools:context=".Welcome">
  3200.     <TextView
  3201.         android:id="@+id/mainword"
  3202.         android:layout_width="fill_parent"
  3203.         android:layout_height="fill_parent"
  3204.         android:gravity="center"
  3205.         android:textSize="22dp"
  3206.         tools:ignore="MissingConstraints" />
  3207. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3208. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3209.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3210.     xmlns:tools="http://schemas.android.com/tools"
  3211.     android:layout_width="match_parent"
  3212.     android:layout_height="match_parent"
  3213.     tools:context=".Welcome">
  3214.     <TextView
  3215.         android:id="@+id/mainword"
  3216.         android:layout_width="fill_parent"
  3217.         android:layout_height="fill_parent"
  3218.         android:gravity="center"
  3219.         android:textSize="22dp"
  3220.         tools:ignore="MissingConstraints" />
  3221. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3222. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3223.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3224.     xmlns:tools="http://schemas.android.com/tools"
  3225.     android:layout_width="match_parent"
  3226.     android:layout_height="match_parent"
  3227.     tools:context=".Welcome">
  3228.     <TextView
  3229.         android:id="@+id/mainword"
  3230.         android:layout_width="fill_parent"
  3231.         android:layout_height="fill_parent"
  3232.         android:gravity="center"
  3233.         android:textSize="22dp"
  3234.         tools:ignore="MissingConstraints" />
  3235. </androidx.constraintlayout.widget.ConstraintLayout>/>
  3236. <?xml version="1.0" encoding="utf-8"?>
  3237. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3238.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3239.     xmlns:tools="http://schemas.android.com/tools"
  3240.     android:layout_width="match_parent"
  3241.     android:layout_height="match_parent"
  3242.     tools:context=".Welcome">
  3243.     <TextView
  3244.         android:id="@+id/mainword"
  3245.         android:layout_width="fill_parent"
  3246.         android:layout_height="fill_parent"
  3247.         android:gravity="center"
  3248.         android:textSize="22dp"
  3249.         tools:ignore="MissingConstraints" />
  3250. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3251. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3252.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3253.     xmlns:tools="http://schemas.android.com/tools"
  3254.     android:layout_width="match_parent"
  3255.     android:layout_height="match_parent"
  3256.     tools:context=".Welcome">
  3257.     <TextView
  3258.         android:id="@+id/mainword"
  3259.         android:layout_width="fill_parent"
  3260.         android:layout_height="fill_parent"
  3261.         android:gravity="center"
  3262.         android:textSize="22dp"
  3263.         tools:ignore="MissingConstraints" />
  3264. </androidx.constraintlayout.widget.ConstraintLayout></LinearLayout>
  3265. <?xml version="1.0" encoding="utf-8"?>
  3266. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3267.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3268.     xmlns:tools="http://schemas.android.com/tools"
  3269.     android:layout_width="match_parent"
  3270.     android:layout_height="match_parent"
  3271.     tools:context=".Welcome">
  3272.     <TextView
  3273.         android:id="@+id/mainword"
  3274.         android:layout_width="fill_parent"
  3275.         android:layout_height="fill_parent"
  3276.         android:gravity="center"
  3277.         android:textSize="22dp"
  3278.         tools:ignore="MissingConstraints" />
  3279. </androidx.constraintlayout.widget.ConstraintLayout></LinearLayout>
  3280. </androidx.constraintlayout.widget.ConstraintLayout>
复制代码
2.注册界面——Register.java

       注册时,会先对用户名进行比对,若用户名存在则提醒用户名已存在。设置密码会比对两次输入的密码是否相同,不相同则发出提醒。
  1. package com.example.test06;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.content.ContentValues;
  4. import android.content.Intent;
  5. import android.content.SharedPreferences;
  6. import android.database.Cursor;
  7. import android.database.sqlite.SQLiteDatabase;
  8. import android.os.Bundle;
  9. import android.view.View;
  10. import android.widget.Button;
  11. import android.widget.EditText;
  12. import android.widget.Toast;
  13. public class Register extends AppCompatActivity {
  14. <?xml version="1.0" encoding="utf-8"?>
  15. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  16.     xmlns:app="http://schemas.android.com/apk/res-auto"
  17.     xmlns:tools="http://schemas.android.com/tools"
  18.     android:layout_width="match_parent"
  19.     android:layout_height="match_parent"
  20.     tools:context=".Welcome">
  21.     <TextView
  22.         android:id="@+id/mainword"
  23.         android:layout_width="fill_parent"
  24.         android:layout_height="fill_parent"
  25.         android:gravity="center"
  26.         android:textSize="22dp"
  27.         tools:ignore="MissingConstraints" />
  28. </androidx.constraintlayout.widget.ConstraintLayout>EditText usename,usepwd,usepwd2;
  29. <?xml version="1.0" encoding="utf-8"?>
  30. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  31.     xmlns:app="http://schemas.android.com/apk/res-auto"
  32.     xmlns:tools="http://schemas.android.com/tools"
  33.     android:layout_width="match_parent"
  34.     android:layout_height="match_parent"
  35.     tools:context=".Welcome">
  36.     <TextView
  37.         android:id="@+id/mainword"
  38.         android:layout_width="fill_parent"
  39.         android:layout_height="fill_parent"
  40.         android:gravity="center"
  41.         android:textSize="22dp"
  42.         tools:ignore="MissingConstraints" />
  43. </androidx.constraintlayout.widget.ConstraintLayout>Button submit;
  44. <?xml version="1.0" encoding="utf-8"?>
  45. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  46.     xmlns:app="http://schemas.android.com/apk/res-auto"
  47.     xmlns:tools="http://schemas.android.com/tools"
  48.     android:layout_width="match_parent"
  49.     android:layout_height="match_parent"
  50.     tools:context=".Welcome">
  51.     <TextView
  52.         android:id="@+id/mainword"
  53.         android:layout_width="fill_parent"
  54.         android:layout_height="fill_parent"
  55.         android:gravity="center"
  56.         android:textSize="22dp"
  57.         tools:ignore="MissingConstraints" />
  58. </androidx.constraintlayout.widget.ConstraintLayout>Mysql mysql;
  59. <?xml version="1.0" encoding="utf-8"?>
  60. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  61.     xmlns:app="http://schemas.android.com/apk/res-auto"
  62.     xmlns:tools="http://schemas.android.com/tools"
  63.     android:layout_width="match_parent"
  64.     android:layout_height="match_parent"
  65.     tools:context=".Welcome">
  66.     <TextView
  67.         android:id="@+id/mainword"
  68.         android:layout_width="fill_parent"
  69.         android:layout_height="fill_parent"
  70.         android:gravity="center"
  71.         android:textSize="22dp"
  72.         tools:ignore="MissingConstraints" />
  73. </androidx.constraintlayout.widget.ConstraintLayout>SQLiteDatabase db;
  74. <?xml version="1.0" encoding="utf-8"?>
  75. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  76.     xmlns:app="http://schemas.android.com/apk/res-auto"
  77.     xmlns:tools="http://schemas.android.com/tools"
  78.     android:layout_width="match_parent"
  79.     android:layout_height="match_parent"
  80.     tools:context=".Welcome">
  81.     <TextView
  82.         android:id="@+id/mainword"
  83.         android:layout_width="fill_parent"
  84.         android:layout_height="fill_parent"
  85.         android:gravity="center"
  86.         android:textSize="22dp"
  87.         tools:ignore="MissingConstraints" />
  88. </androidx.constraintlayout.widget.ConstraintLayout>SharedPreferences sp;
  89. <?xml version="1.0" encoding="utf-8"?>
  90. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  91.     xmlns:app="http://schemas.android.com/apk/res-auto"
  92.     xmlns:tools="http://schemas.android.com/tools"
  93.     android:layout_width="match_parent"
  94.     android:layout_height="match_parent"
  95.     tools:context=".Welcome">
  96.     <TextView
  97.         android:id="@+id/mainword"
  98.         android:layout_width="fill_parent"
  99.         android:layout_height="fill_parent"
  100.         android:gravity="center"
  101.         android:textSize="22dp"
  102.         tools:ignore="MissingConstraints" />
  103. </androidx.constraintlayout.widget.ConstraintLayout>@Override
  104. <?xml version="1.0" encoding="utf-8"?>
  105. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  106.     xmlns:app="http://schemas.android.com/apk/res-auto"
  107.     xmlns:tools="http://schemas.android.com/tools"
  108.     android:layout_width="match_parent"
  109.     android:layout_height="match_parent"
  110.     tools:context=".Welcome">
  111.     <TextView
  112.         android:id="@+id/mainword"
  113.         android:layout_width="fill_parent"
  114.         android:layout_height="fill_parent"
  115.         android:gravity="center"
  116.         android:textSize="22dp"
  117.         tools:ignore="MissingConstraints" />
  118. </androidx.constraintlayout.widget.ConstraintLayout>protected void onCreate(Bundle savedInstanceState) {
  119. <?xml version="1.0" encoding="utf-8"?>
  120. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  121.     xmlns:app="http://schemas.android.com/apk/res-auto"
  122.     xmlns:tools="http://schemas.android.com/tools"
  123.     android:layout_width="match_parent"
  124.     android:layout_height="match_parent"
  125.     tools:context=".Welcome">
  126.     <TextView
  127.         android:id="@+id/mainword"
  128.         android:layout_width="fill_parent"
  129.         android:layout_height="fill_parent"
  130.         android:gravity="center"
  131.         android:textSize="22dp"
  132.         tools:ignore="MissingConstraints" />
  133. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  134. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  135.     xmlns:app="http://schemas.android.com/apk/res-auto"
  136.     xmlns:tools="http://schemas.android.com/tools"
  137.     android:layout_width="match_parent"
  138.     android:layout_height="match_parent"
  139.     tools:context=".Welcome">
  140.     <TextView
  141.         android:id="@+id/mainword"
  142.         android:layout_width="fill_parent"
  143.         android:layout_height="fill_parent"
  144.         android:gravity="center"
  145.         android:textSize="22dp"
  146.         tools:ignore="MissingConstraints" />
  147. </androidx.constraintlayout.widget.ConstraintLayout>super.onCreate(savedInstanceState);
  148. <?xml version="1.0" encoding="utf-8"?>
  149. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  150.     xmlns:app="http://schemas.android.com/apk/res-auto"
  151.     xmlns:tools="http://schemas.android.com/tools"
  152.     android:layout_width="match_parent"
  153.     android:layout_height="match_parent"
  154.     tools:context=".Welcome">
  155.     <TextView
  156.         android:id="@+id/mainword"
  157.         android:layout_width="fill_parent"
  158.         android:layout_height="fill_parent"
  159.         android:gravity="center"
  160.         android:textSize="22dp"
  161.         tools:ignore="MissingConstraints" />
  162. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  163. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  164.     xmlns:app="http://schemas.android.com/apk/res-auto"
  165.     xmlns:tools="http://schemas.android.com/tools"
  166.     android:layout_width="match_parent"
  167.     android:layout_height="match_parent"
  168.     tools:context=".Welcome">
  169.     <TextView
  170.         android:id="@+id/mainword"
  171.         android:layout_width="fill_parent"
  172.         android:layout_height="fill_parent"
  173.         android:gravity="center"
  174.         android:textSize="22dp"
  175.         tools:ignore="MissingConstraints" />
  176. </androidx.constraintlayout.widget.ConstraintLayout>setContentView(R.layout.activity_register);
  177. <?xml version="1.0" encoding="utf-8"?>
  178. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  179.     xmlns:app="http://schemas.android.com/apk/res-auto"
  180.     xmlns:tools="http://schemas.android.com/tools"
  181.     android:layout_width="match_parent"
  182.     android:layout_height="match_parent"
  183.     tools:context=".Welcome">
  184.     <TextView
  185.         android:id="@+id/mainword"
  186.         android:layout_width="fill_parent"
  187.         android:layout_height="fill_parent"
  188.         android:gravity="center"
  189.         android:textSize="22dp"
  190.         tools:ignore="MissingConstraints" />
  191. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  192. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  193.     xmlns:app="http://schemas.android.com/apk/res-auto"
  194.     xmlns:tools="http://schemas.android.com/tools"
  195.     android:layout_width="match_parent"
  196.     android:layout_height="match_parent"
  197.     tools:context=".Welcome">
  198.     <TextView
  199.         android:id="@+id/mainword"
  200.         android:layout_width="fill_parent"
  201.         android:layout_height="fill_parent"
  202.         android:gravity="center"
  203.         android:textSize="22dp"
  204.         tools:ignore="MissingConstraints" />
  205. </androidx.constraintlayout.widget.ConstraintLayout>usename = this.findViewById(R.id.usename);                        <?xml version="1.0" encoding="utf-8"?>
  206. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  207.     xmlns:app="http://schemas.android.com/apk/res-auto"
  208.     xmlns:tools="http://schemas.android.com/tools"
  209.     android:layout_width="match_parent"
  210.     android:layout_height="match_parent"
  211.     tools:context=".Welcome">
  212.     <TextView
  213.         android:id="@+id/mainword"
  214.         android:layout_width="fill_parent"
  215.         android:layout_height="fill_parent"
  216.         android:gravity="center"
  217.         android:textSize="22dp"
  218.         tools:ignore="MissingConstraints" />
  219. </androidx.constraintlayout.widget.ConstraintLayout>//用户名编辑框
  220. <?xml version="1.0" encoding="utf-8"?>
  221. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  222.     xmlns:app="http://schemas.android.com/apk/res-auto"
  223.     xmlns:tools="http://schemas.android.com/tools"
  224.     android:layout_width="match_parent"
  225.     android:layout_height="match_parent"
  226.     tools:context=".Welcome">
  227.     <TextView
  228.         android:id="@+id/mainword"
  229.         android:layout_width="fill_parent"
  230.         android:layout_height="fill_parent"
  231.         android:gravity="center"
  232.         android:textSize="22dp"
  233.         tools:ignore="MissingConstraints" />
  234. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  235. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  236.     xmlns:app="http://schemas.android.com/apk/res-auto"
  237.     xmlns:tools="http://schemas.android.com/tools"
  238.     android:layout_width="match_parent"
  239.     android:layout_height="match_parent"
  240.     tools:context=".Welcome">
  241.     <TextView
  242.         android:id="@+id/mainword"
  243.         android:layout_width="fill_parent"
  244.         android:layout_height="fill_parent"
  245.         android:gravity="center"
  246.         android:textSize="22dp"
  247.         tools:ignore="MissingConstraints" />
  248. </androidx.constraintlayout.widget.ConstraintLayout>usepwd =  this.findViewById(R.id.usepwd);                                //设置初始密码编辑框
  249. <?xml version="1.0" encoding="utf-8"?>
  250. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  251.     xmlns:app="http://schemas.android.com/apk/res-auto"
  252.     xmlns:tools="http://schemas.android.com/tools"
  253.     android:layout_width="match_parent"
  254.     android:layout_height="match_parent"
  255.     tools:context=".Welcome">
  256.     <TextView
  257.         android:id="@+id/mainword"
  258.         android:layout_width="fill_parent"
  259.         android:layout_height="fill_parent"
  260.         android:gravity="center"
  261.         android:textSize="22dp"
  262.         tools:ignore="MissingConstraints" />
  263. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  264. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  265.     xmlns:app="http://schemas.android.com/apk/res-auto"
  266.     xmlns:tools="http://schemas.android.com/tools"
  267.     android:layout_width="match_parent"
  268.     android:layout_height="match_parent"
  269.     tools:context=".Welcome">
  270.     <TextView
  271.         android:id="@+id/mainword"
  272.         android:layout_width="fill_parent"
  273.         android:layout_height="fill_parent"
  274.         android:gravity="center"
  275.         android:textSize="22dp"
  276.         tools:ignore="MissingConstraints" />
  277. </androidx.constraintlayout.widget.ConstraintLayout>usepwd2 = this.findViewById(R.id.usepwd2);                        <?xml version="1.0" encoding="utf-8"?>
  278. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  279.     xmlns:app="http://schemas.android.com/apk/res-auto"
  280.     xmlns:tools="http://schemas.android.com/tools"
  281.     android:layout_width="match_parent"
  282.     android:layout_height="match_parent"
  283.     tools:context=".Welcome">
  284.     <TextView
  285.         android:id="@+id/mainword"
  286.         android:layout_width="fill_parent"
  287.         android:layout_height="fill_parent"
  288.         android:gravity="center"
  289.         android:textSize="22dp"
  290.         tools:ignore="MissingConstraints" />
  291. </androidx.constraintlayout.widget.ConstraintLayout>//二次输入密码编辑框
  292. <?xml version="1.0" encoding="utf-8"?>
  293. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  294.     xmlns:app="http://schemas.android.com/apk/res-auto"
  295.     xmlns:tools="http://schemas.android.com/tools"
  296.     android:layout_width="match_parent"
  297.     android:layout_height="match_parent"
  298.     tools:context=".Welcome">
  299.     <TextView
  300.         android:id="@+id/mainword"
  301.         android:layout_width="fill_parent"
  302.         android:layout_height="fill_parent"
  303.         android:gravity="center"
  304.         android:textSize="22dp"
  305.         tools:ignore="MissingConstraints" />
  306. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  307. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  308.     xmlns:app="http://schemas.android.com/apk/res-auto"
  309.     xmlns:tools="http://schemas.android.com/tools"
  310.     android:layout_width="match_parent"
  311.     android:layout_height="match_parent"
  312.     tools:context=".Welcome">
  313.     <TextView
  314.         android:id="@+id/mainword"
  315.         android:layout_width="fill_parent"
  316.         android:layout_height="fill_parent"
  317.         android:gravity="center"
  318.         android:textSize="22dp"
  319.         tools:ignore="MissingConstraints" />
  320. </androidx.constraintlayout.widget.ConstraintLayout>submit =   this.findViewById(R.id.submit);                                //注册按钮
  321. <?xml version="1.0" encoding="utf-8"?>
  322. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  323.     xmlns:app="http://schemas.android.com/apk/res-auto"
  324.     xmlns:tools="http://schemas.android.com/tools"
  325.     android:layout_width="match_parent"
  326.     android:layout_height="match_parent"
  327.     tools:context=".Welcome">
  328.     <TextView
  329.         android:id="@+id/mainword"
  330.         android:layout_width="fill_parent"
  331.         android:layout_height="fill_parent"
  332.         android:gravity="center"
  333.         android:textSize="22dp"
  334.         tools:ignore="MissingConstraints" />
  335. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  336. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  337.     xmlns:app="http://schemas.android.com/apk/res-auto"
  338.     xmlns:tools="http://schemas.android.com/tools"
  339.     android:layout_width="match_parent"
  340.     android:layout_height="match_parent"
  341.     tools:context=".Welcome">
  342.     <TextView
  343.         android:id="@+id/mainword"
  344.         android:layout_width="fill_parent"
  345.         android:layout_height="fill_parent"
  346.         android:gravity="center"
  347.         android:textSize="22dp"
  348.         tools:ignore="MissingConstraints" />
  349. </androidx.constraintlayout.widget.ConstraintLayout>mysql = new Mysql(this,"Userinfo",null,1);<?xml version="1.0" encoding="utf-8"?>
  350. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  351.     xmlns:app="http://schemas.android.com/apk/res-auto"
  352.     xmlns:tools="http://schemas.android.com/tools"
  353.     android:layout_width="match_parent"
  354.     android:layout_height="match_parent"
  355.     tools:context=".Welcome">
  356.     <TextView
  357.         android:id="@+id/mainword"
  358.         android:layout_width="fill_parent"
  359.         android:layout_height="fill_parent"
  360.         android:gravity="center"
  361.         android:textSize="22dp"
  362.         tools:ignore="MissingConstraints" />
  363. </androidx.constraintlayout.widget.ConstraintLayout>  //建数据库
  364. <?xml version="1.0" encoding="utf-8"?>
  365. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  366.     xmlns:app="http://schemas.android.com/apk/res-auto"
  367.     xmlns:tools="http://schemas.android.com/tools"
  368.     android:layout_width="match_parent"
  369.     android:layout_height="match_parent"
  370.     tools:context=".Welcome">
  371.     <TextView
  372.         android:id="@+id/mainword"
  373.         android:layout_width="fill_parent"
  374.         android:layout_height="fill_parent"
  375.         android:gravity="center"
  376.         android:textSize="22dp"
  377.         tools:ignore="MissingConstraints" />
  378. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  379. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  380.     xmlns:app="http://schemas.android.com/apk/res-auto"
  381.     xmlns:tools="http://schemas.android.com/tools"
  382.     android:layout_width="match_parent"
  383.     android:layout_height="match_parent"
  384.     tools:context=".Welcome">
  385.     <TextView
  386.         android:id="@+id/mainword"
  387.         android:layout_width="fill_parent"
  388.         android:layout_height="fill_parent"
  389.         android:gravity="center"
  390.         android:textSize="22dp"
  391.         tools:ignore="MissingConstraints" />
  392. </androidx.constraintlayout.widget.ConstraintLayout>db = mysql.getReadableDatabase();
  393. <?xml version="1.0" encoding="utf-8"?>
  394. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  395.     xmlns:app="http://schemas.android.com/apk/res-auto"
  396.     xmlns:tools="http://schemas.android.com/tools"
  397.     android:layout_width="match_parent"
  398.     android:layout_height="match_parent"
  399.     tools:context=".Welcome">
  400.     <TextView
  401.         android:id="@+id/mainword"
  402.         android:layout_width="fill_parent"
  403.         android:layout_height="fill_parent"
  404.         android:gravity="center"
  405.         android:textSize="22dp"
  406.         tools:ignore="MissingConstraints" />
  407. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  408. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  409.     xmlns:app="http://schemas.android.com/apk/res-auto"
  410.     xmlns:tools="http://schemas.android.com/tools"
  411.     android:layout_width="match_parent"
  412.     android:layout_height="match_parent"
  413.     tools:context=".Welcome">
  414.     <TextView
  415.         android:id="@+id/mainword"
  416.         android:layout_width="fill_parent"
  417.         android:layout_height="fill_parent"
  418.         android:gravity="center"
  419.         android:textSize="22dp"
  420.         tools:ignore="MissingConstraints" />
  421. </androidx.constraintlayout.widget.ConstraintLayout>sp = this.getSharedPreferences("useinfo",this.MODE_PRIVATE);
  422. <?xml version="1.0" encoding="utf-8"?>
  423. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  424.     xmlns:app="http://schemas.android.com/apk/res-auto"
  425.     xmlns:tools="http://schemas.android.com/tools"
  426.     android:layout_width="match_parent"
  427.     android:layout_height="match_parent"
  428.     tools:context=".Welcome">
  429.     <TextView
  430.         android:id="@+id/mainword"
  431.         android:layout_width="fill_parent"
  432.         android:layout_height="fill_parent"
  433.         android:gravity="center"
  434.         android:textSize="22dp"
  435.         tools:ignore="MissingConstraints" />
  436. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  437. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  438.     xmlns:app="http://schemas.android.com/apk/res-auto"
  439.     xmlns:tools="http://schemas.android.com/tools"
  440.     android:layout_width="match_parent"
  441.     android:layout_height="match_parent"
  442.     tools:context=".Welcome">
  443.     <TextView
  444.         android:id="@+id/mainword"
  445.         android:layout_width="fill_parent"
  446.         android:layout_height="fill_parent"
  447.         android:gravity="center"
  448.         android:textSize="22dp"
  449.         tools:ignore="MissingConstraints" />
  450. </androidx.constraintlayout.widget.ConstraintLayout>submit.setOnClickListener(new View.OnClickListener() {
  451. <?xml version="1.0" encoding="utf-8"?>
  452. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  453.     xmlns:app="http://schemas.android.com/apk/res-auto"
  454.     xmlns:tools="http://schemas.android.com/tools"
  455.     android:layout_width="match_parent"
  456.     android:layout_height="match_parent"
  457.     tools:context=".Welcome">
  458.     <TextView
  459.         android:id="@+id/mainword"
  460.         android:layout_width="fill_parent"
  461.         android:layout_height="fill_parent"
  462.         android:gravity="center"
  463.         android:textSize="22dp"
  464.         tools:ignore="MissingConstraints" />
  465. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  466. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  467.     xmlns:app="http://schemas.android.com/apk/res-auto"
  468.     xmlns:tools="http://schemas.android.com/tools"
  469.     android:layout_width="match_parent"
  470.     android:layout_height="match_parent"
  471.     tools:context=".Welcome">
  472.     <TextView
  473.         android:id="@+id/mainword"
  474.         android:layout_width="fill_parent"
  475.         android:layout_height="fill_parent"
  476.         android:gravity="center"
  477.         android:textSize="22dp"
  478.         tools:ignore="MissingConstraints" />
  479. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  480. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  481.     xmlns:app="http://schemas.android.com/apk/res-auto"
  482.     xmlns:tools="http://schemas.android.com/tools"
  483.     android:layout_width="match_parent"
  484.     android:layout_height="match_parent"
  485.     tools:context=".Welcome">
  486.     <TextView
  487.         android:id="@+id/mainword"
  488.         android:layout_width="fill_parent"
  489.         android:layout_height="fill_parent"
  490.         android:gravity="center"
  491.         android:textSize="22dp"
  492.         tools:ignore="MissingConstraints" />
  493. </androidx.constraintlayout.widget.ConstraintLayout>boolean flag = true;<?xml version="1.0" encoding="utf-8"?>
  494. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  495.     xmlns:app="http://schemas.android.com/apk/res-auto"
  496.     xmlns:tools="http://schemas.android.com/tools"
  497.     android:layout_width="match_parent"
  498.     android:layout_height="match_parent"
  499.     tools:context=".Welcome">
  500.     <TextView
  501.         android:id="@+id/mainword"
  502.         android:layout_width="fill_parent"
  503.         android:layout_height="fill_parent"
  504.         android:gravity="center"
  505.         android:textSize="22dp"
  506.         tools:ignore="MissingConstraints" />
  507. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  508. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  509.     xmlns:app="http://schemas.android.com/apk/res-auto"
  510.     xmlns:tools="http://schemas.android.com/tools"
  511.     android:layout_width="match_parent"
  512.     android:layout_height="match_parent"
  513.     tools:context=".Welcome">
  514.     <TextView
  515.         android:id="@+id/mainword"
  516.         android:layout_width="fill_parent"
  517.         android:layout_height="fill_parent"
  518.         android:gravity="center"
  519.         android:textSize="22dp"
  520.         tools:ignore="MissingConstraints" />
  521. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  522. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  523.     xmlns:app="http://schemas.android.com/apk/res-auto"
  524.     xmlns:tools="http://schemas.android.com/tools"
  525.     android:layout_width="match_parent"
  526.     android:layout_height="match_parent"
  527.     tools:context=".Welcome">
  528.     <TextView
  529.         android:id="@+id/mainword"
  530.         android:layout_width="fill_parent"
  531.         android:layout_height="fill_parent"
  532.         android:gravity="center"
  533.         android:textSize="22dp"
  534.         tools:ignore="MissingConstraints" />
  535. </androidx.constraintlayout.widget.ConstraintLayout>//判断用户是否已存在的标志位
  536. <?xml version="1.0" encoding="utf-8"?>
  537. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  538.     xmlns:app="http://schemas.android.com/apk/res-auto"
  539.     xmlns:tools="http://schemas.android.com/tools"
  540.     android:layout_width="match_parent"
  541.     android:layout_height="match_parent"
  542.     tools:context=".Welcome">
  543.     <TextView
  544.         android:id="@+id/mainword"
  545.         android:layout_width="fill_parent"
  546.         android:layout_height="fill_parent"
  547.         android:gravity="center"
  548.         android:textSize="22dp"
  549.         tools:ignore="MissingConstraints" />
  550. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  551. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  552.     xmlns:app="http://schemas.android.com/apk/res-auto"
  553.     xmlns:tools="http://schemas.android.com/tools"
  554.     android:layout_width="match_parent"
  555.     android:layout_height="match_parent"
  556.     tools:context=".Welcome">
  557.     <TextView
  558.         android:id="@+id/mainword"
  559.         android:layout_width="fill_parent"
  560.         android:layout_height="fill_parent"
  561.         android:gravity="center"
  562.         android:textSize="22dp"
  563.         tools:ignore="MissingConstraints" />
  564. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  565. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  566.     xmlns:app="http://schemas.android.com/apk/res-auto"
  567.     xmlns:tools="http://schemas.android.com/tools"
  568.     android:layout_width="match_parent"
  569.     android:layout_height="match_parent"
  570.     tools:context=".Welcome">
  571.     <TextView
  572.         android:id="@+id/mainword"
  573.         android:layout_width="fill_parent"
  574.         android:layout_height="fill_parent"
  575.         android:gravity="center"
  576.         android:textSize="22dp"
  577.         tools:ignore="MissingConstraints" />
  578. </androidx.constraintlayout.widget.ConstraintLayout>@Override
  579. <?xml version="1.0" encoding="utf-8"?>
  580. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  581.     xmlns:app="http://schemas.android.com/apk/res-auto"
  582.     xmlns:tools="http://schemas.android.com/tools"
  583.     android:layout_width="match_parent"
  584.     android:layout_height="match_parent"
  585.     tools:context=".Welcome">
  586.     <TextView
  587.         android:id="@+id/mainword"
  588.         android:layout_width="fill_parent"
  589.         android:layout_height="fill_parent"
  590.         android:gravity="center"
  591.         android:textSize="22dp"
  592.         tools:ignore="MissingConstraints" />
  593. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  594. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  595.     xmlns:app="http://schemas.android.com/apk/res-auto"
  596.     xmlns:tools="http://schemas.android.com/tools"
  597.     android:layout_width="match_parent"
  598.     android:layout_height="match_parent"
  599.     tools:context=".Welcome">
  600.     <TextView
  601.         android:id="@+id/mainword"
  602.         android:layout_width="fill_parent"
  603.         android:layout_height="fill_parent"
  604.         android:gravity="center"
  605.         android:textSize="22dp"
  606.         tools:ignore="MissingConstraints" />
  607. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  608. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  609.     xmlns:app="http://schemas.android.com/apk/res-auto"
  610.     xmlns:tools="http://schemas.android.com/tools"
  611.     android:layout_width="match_parent"
  612.     android:layout_height="match_parent"
  613.     tools:context=".Welcome">
  614.     <TextView
  615.         android:id="@+id/mainword"
  616.         android:layout_width="fill_parent"
  617.         android:layout_height="fill_parent"
  618.         android:gravity="center"
  619.         android:textSize="22dp"
  620.         tools:ignore="MissingConstraints" />
  621. </androidx.constraintlayout.widget.ConstraintLayout>public void onClick(View v) {
  622. <?xml version="1.0" encoding="utf-8"?>
  623. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  624.     xmlns:app="http://schemas.android.com/apk/res-auto"
  625.     xmlns:tools="http://schemas.android.com/tools"
  626.     android:layout_width="match_parent"
  627.     android:layout_height="match_parent"
  628.     tools:context=".Welcome">
  629.     <TextView
  630.         android:id="@+id/mainword"
  631.         android:layout_width="fill_parent"
  632.         android:layout_height="fill_parent"
  633.         android:gravity="center"
  634.         android:textSize="22dp"
  635.         tools:ignore="MissingConstraints" />
  636. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  637. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  638.     xmlns:app="http://schemas.android.com/apk/res-auto"
  639.     xmlns:tools="http://schemas.android.com/tools"
  640.     android:layout_width="match_parent"
  641.     android:layout_height="match_parent"
  642.     tools:context=".Welcome">
  643.     <TextView
  644.         android:id="@+id/mainword"
  645.         android:layout_width="fill_parent"
  646.         android:layout_height="fill_parent"
  647.         android:gravity="center"
  648.         android:textSize="22dp"
  649.         tools:ignore="MissingConstraints" />
  650. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  651. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  652.     xmlns:app="http://schemas.android.com/apk/res-auto"
  653.     xmlns:tools="http://schemas.android.com/tools"
  654.     android:layout_width="match_parent"
  655.     android:layout_height="match_parent"
  656.     tools:context=".Welcome">
  657.     <TextView
  658.         android:id="@+id/mainword"
  659.         android:layout_width="fill_parent"
  660.         android:layout_height="fill_parent"
  661.         android:gravity="center"
  662.         android:textSize="22dp"
  663.         tools:ignore="MissingConstraints" />
  664. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  665. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  666.     xmlns:app="http://schemas.android.com/apk/res-auto"
  667.     xmlns:tools="http://schemas.android.com/tools"
  668.     android:layout_width="match_parent"
  669.     android:layout_height="match_parent"
  670.     tools:context=".Welcome">
  671.     <TextView
  672.         android:id="@+id/mainword"
  673.         android:layout_width="fill_parent"
  674.         android:layout_height="fill_parent"
  675.         android:gravity="center"
  676.         android:textSize="22dp"
  677.         tools:ignore="MissingConstraints" />
  678. </androidx.constraintlayout.widget.ConstraintLayout>String name = usename.getText().toString();                                //用户名
  679. <?xml version="1.0" encoding="utf-8"?>
  680. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  681.     xmlns:app="http://schemas.android.com/apk/res-auto"
  682.     xmlns:tools="http://schemas.android.com/tools"
  683.     android:layout_width="match_parent"
  684.     android:layout_height="match_parent"
  685.     tools:context=".Welcome">
  686.     <TextView
  687.         android:id="@+id/mainword"
  688.         android:layout_width="fill_parent"
  689.         android:layout_height="fill_parent"
  690.         android:gravity="center"
  691.         android:textSize="22dp"
  692.         tools:ignore="MissingConstraints" />
  693. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  694. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  695.     xmlns:app="http://schemas.android.com/apk/res-auto"
  696.     xmlns:tools="http://schemas.android.com/tools"
  697.     android:layout_width="match_parent"
  698.     android:layout_height="match_parent"
  699.     tools:context=".Welcome">
  700.     <TextView
  701.         android:id="@+id/mainword"
  702.         android:layout_width="fill_parent"
  703.         android:layout_height="fill_parent"
  704.         android:gravity="center"
  705.         android:textSize="22dp"
  706.         tools:ignore="MissingConstraints" />
  707. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  708. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  709.     xmlns:app="http://schemas.android.com/apk/res-auto"
  710.     xmlns:tools="http://schemas.android.com/tools"
  711.     android:layout_width="match_parent"
  712.     android:layout_height="match_parent"
  713.     tools:context=".Welcome">
  714.     <TextView
  715.         android:id="@+id/mainword"
  716.         android:layout_width="fill_parent"
  717.         android:layout_height="fill_parent"
  718.         android:gravity="center"
  719.         android:textSize="22dp"
  720.         tools:ignore="MissingConstraints" />
  721. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  722. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  723.     xmlns:app="http://schemas.android.com/apk/res-auto"
  724.     xmlns:tools="http://schemas.android.com/tools"
  725.     android:layout_width="match_parent"
  726.     android:layout_height="match_parent"
  727.     tools:context=".Welcome">
  728.     <TextView
  729.         android:id="@+id/mainword"
  730.         android:layout_width="fill_parent"
  731.         android:layout_height="fill_parent"
  732.         android:gravity="center"
  733.         android:textSize="22dp"
  734.         tools:ignore="MissingConstraints" />
  735. </androidx.constraintlayout.widget.ConstraintLayout>String pwd01 = usepwd.getText().toString();                                //密码
  736. <?xml version="1.0" encoding="utf-8"?>
  737. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  738.     xmlns:app="http://schemas.android.com/apk/res-auto"
  739.     xmlns:tools="http://schemas.android.com/tools"
  740.     android:layout_width="match_parent"
  741.     android:layout_height="match_parent"
  742.     tools:context=".Welcome">
  743.     <TextView
  744.         android:id="@+id/mainword"
  745.         android:layout_width="fill_parent"
  746.         android:layout_height="fill_parent"
  747.         android:gravity="center"
  748.         android:textSize="22dp"
  749.         tools:ignore="MissingConstraints" />
  750. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  751. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  752.     xmlns:app="http://schemas.android.com/apk/res-auto"
  753.     xmlns:tools="http://schemas.android.com/tools"
  754.     android:layout_width="match_parent"
  755.     android:layout_height="match_parent"
  756.     tools:context=".Welcome">
  757.     <TextView
  758.         android:id="@+id/mainword"
  759.         android:layout_width="fill_parent"
  760.         android:layout_height="fill_parent"
  761.         android:gravity="center"
  762.         android:textSize="22dp"
  763.         tools:ignore="MissingConstraints" />
  764. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  765. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  766.     xmlns:app="http://schemas.android.com/apk/res-auto"
  767.     xmlns:tools="http://schemas.android.com/tools"
  768.     android:layout_width="match_parent"
  769.     android:layout_height="match_parent"
  770.     tools:context=".Welcome">
  771.     <TextView
  772.         android:id="@+id/mainword"
  773.         android:layout_width="fill_parent"
  774.         android:layout_height="fill_parent"
  775.         android:gravity="center"
  776.         android:textSize="22dp"
  777.         tools:ignore="MissingConstraints" />
  778. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  779. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  780.     xmlns:app="http://schemas.android.com/apk/res-auto"
  781.     xmlns:tools="http://schemas.android.com/tools"
  782.     android:layout_width="match_parent"
  783.     android:layout_height="match_parent"
  784.     tools:context=".Welcome">
  785.     <TextView
  786.         android:id="@+id/mainword"
  787.         android:layout_width="fill_parent"
  788.         android:layout_height="fill_parent"
  789.         android:gravity="center"
  790.         android:textSize="22dp"
  791.         tools:ignore="MissingConstraints" />
  792. </androidx.constraintlayout.widget.ConstraintLayout>String pwd02 = usepwd2.getText().toString();                        //二次输入的密码
  793. <?xml version="1.0" encoding="utf-8"?>
  794. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  795.     xmlns:app="http://schemas.android.com/apk/res-auto"
  796.     xmlns:tools="http://schemas.android.com/tools"
  797.     android:layout_width="match_parent"
  798.     android:layout_height="match_parent"
  799.     tools:context=".Welcome">
  800.     <TextView
  801.         android:id="@+id/mainword"
  802.         android:layout_width="fill_parent"
  803.         android:layout_height="fill_parent"
  804.         android:gravity="center"
  805.         android:textSize="22dp"
  806.         tools:ignore="MissingConstraints" />
  807. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  808. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  809.     xmlns:app="http://schemas.android.com/apk/res-auto"
  810.     xmlns:tools="http://schemas.android.com/tools"
  811.     android:layout_width="match_parent"
  812.     android:layout_height="match_parent"
  813.     tools:context=".Welcome">
  814.     <TextView
  815.         android:id="@+id/mainword"
  816.         android:layout_width="fill_parent"
  817.         android:layout_height="fill_parent"
  818.         android:gravity="center"
  819.         android:textSize="22dp"
  820.         tools:ignore="MissingConstraints" />
  821. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  822. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  823.     xmlns:app="http://schemas.android.com/apk/res-auto"
  824.     xmlns:tools="http://schemas.android.com/tools"
  825.     android:layout_width="match_parent"
  826.     android:layout_height="match_parent"
  827.     tools:context=".Welcome">
  828.     <TextView
  829.         android:id="@+id/mainword"
  830.         android:layout_width="fill_parent"
  831.         android:layout_height="fill_parent"
  832.         android:gravity="center"
  833.         android:textSize="22dp"
  834.         tools:ignore="MissingConstraints" />
  835. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  836. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  837.     xmlns:app="http://schemas.android.com/apk/res-auto"
  838.     xmlns:tools="http://schemas.android.com/tools"
  839.     android:layout_width="match_parent"
  840.     android:layout_height="match_parent"
  841.     tools:context=".Welcome">
  842.     <TextView
  843.         android:id="@+id/mainword"
  844.         android:layout_width="fill_parent"
  845.         android:layout_height="fill_parent"
  846.         android:gravity="center"
  847.         android:textSize="22dp"
  848.         tools:ignore="MissingConstraints" />
  849. </androidx.constraintlayout.widget.ConstraintLayout>String sex = "";                                                                                //性别
  850. <?xml version="1.0" encoding="utf-8"?>
  851. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  852.     xmlns:app="http://schemas.android.com/apk/res-auto"
  853.     xmlns:tools="http://schemas.android.com/tools"
  854.     android:layout_width="match_parent"
  855.     android:layout_height="match_parent"
  856.     tools:context=".Welcome">
  857.     <TextView
  858.         android:id="@+id/mainword"
  859.         android:layout_width="fill_parent"
  860.         android:layout_height="fill_parent"
  861.         android:gravity="center"
  862.         android:textSize="22dp"
  863.         tools:ignore="MissingConstraints" />
  864. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  865. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  866.     xmlns:app="http://schemas.android.com/apk/res-auto"
  867.     xmlns:tools="http://schemas.android.com/tools"
  868.     android:layout_width="match_parent"
  869.     android:layout_height="match_parent"
  870.     tools:context=".Welcome">
  871.     <TextView
  872.         android:id="@+id/mainword"
  873.         android:layout_width="fill_parent"
  874.         android:layout_height="fill_parent"
  875.         android:gravity="center"
  876.         android:textSize="22dp"
  877.         tools:ignore="MissingConstraints" />
  878. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  879. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  880.     xmlns:app="http://schemas.android.com/apk/res-auto"
  881.     xmlns:tools="http://schemas.android.com/tools"
  882.     android:layout_width="match_parent"
  883.     android:layout_height="match_parent"
  884.     tools:context=".Welcome">
  885.     <TextView
  886.         android:id="@+id/mainword"
  887.         android:layout_width="fill_parent"
  888.         android:layout_height="fill_parent"
  889.         android:gravity="center"
  890.         android:textSize="22dp"
  891.         tools:ignore="MissingConstraints" />
  892. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  893. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  894.     xmlns:app="http://schemas.android.com/apk/res-auto"
  895.     xmlns:tools="http://schemas.android.com/tools"
  896.     android:layout_width="match_parent"
  897.     android:layout_height="match_parent"
  898.     tools:context=".Welcome">
  899.     <TextView
  900.         android:id="@+id/mainword"
  901.         android:layout_width="fill_parent"
  902.         android:layout_height="fill_parent"
  903.         android:gravity="center"
  904.         android:textSize="22dp"
  905.         tools:ignore="MissingConstraints" />
  906. </androidx.constraintlayout.widget.ConstraintLayout>if(name.equals("")||pwd01 .equals("")||pwd02.equals("")){
  907. <?xml version="1.0" encoding="utf-8"?>
  908. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  909.     xmlns:app="http://schemas.android.com/apk/res-auto"
  910.     xmlns:tools="http://schemas.android.com/tools"
  911.     android:layout_width="match_parent"
  912.     android:layout_height="match_parent"
  913.     tools:context=".Welcome">
  914.     <TextView
  915.         android:id="@+id/mainword"
  916.         android:layout_width="fill_parent"
  917.         android:layout_height="fill_parent"
  918.         android:gravity="center"
  919.         android:textSize="22dp"
  920.         tools:ignore="MissingConstraints" />
  921. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  922. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  923.     xmlns:app="http://schemas.android.com/apk/res-auto"
  924.     xmlns:tools="http://schemas.android.com/tools"
  925.     android:layout_width="match_parent"
  926.     android:layout_height="match_parent"
  927.     tools:context=".Welcome">
  928.     <TextView
  929.         android:id="@+id/mainword"
  930.         android:layout_width="fill_parent"
  931.         android:layout_height="fill_parent"
  932.         android:gravity="center"
  933.         android:textSize="22dp"
  934.         tools:ignore="MissingConstraints" />
  935. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  936. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  937.     xmlns:app="http://schemas.android.com/apk/res-auto"
  938.     xmlns:tools="http://schemas.android.com/tools"
  939.     android:layout_width="match_parent"
  940.     android:layout_height="match_parent"
  941.     tools:context=".Welcome">
  942.     <TextView
  943.         android:id="@+id/mainword"
  944.         android:layout_width="fill_parent"
  945.         android:layout_height="fill_parent"
  946.         android:gravity="center"
  947.         android:textSize="22dp"
  948.         tools:ignore="MissingConstraints" />
  949. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  950. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  951.     xmlns:app="http://schemas.android.com/apk/res-auto"
  952.     xmlns:tools="http://schemas.android.com/tools"
  953.     android:layout_width="match_parent"
  954.     android:layout_height="match_parent"
  955.     tools:context=".Welcome">
  956.     <TextView
  957.         android:id="@+id/mainword"
  958.         android:layout_width="fill_parent"
  959.         android:layout_height="fill_parent"
  960.         android:gravity="center"
  961.         android:textSize="22dp"
  962.         tools:ignore="MissingConstraints" />
  963. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  964. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  965.     xmlns:app="http://schemas.android.com/apk/res-auto"
  966.     xmlns:tools="http://schemas.android.com/tools"
  967.     android:layout_width="match_parent"
  968.     android:layout_height="match_parent"
  969.     tools:context=".Welcome">
  970.     <TextView
  971.         android:id="@+id/mainword"
  972.         android:layout_width="fill_parent"
  973.         android:layout_height="fill_parent"
  974.         android:gravity="center"
  975.         android:textSize="22dp"
  976.         tools:ignore="MissingConstraints" />
  977. </androidx.constraintlayout.widget.ConstraintLayout>Toast.makeText(Register.this, "用户名或密码不能为空!!", Toast.LENGTH_LONG).show();
  978. <?xml version="1.0" encoding="utf-8"?>
  979. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  980.     xmlns:app="http://schemas.android.com/apk/res-auto"
  981.     xmlns:tools="http://schemas.android.com/tools"
  982.     android:layout_width="match_parent"
  983.     android:layout_height="match_parent"
  984.     tools:context=".Welcome">
  985.     <TextView
  986.         android:id="@+id/mainword"
  987.         android:layout_width="fill_parent"
  988.         android:layout_height="fill_parent"
  989.         android:gravity="center"
  990.         android:textSize="22dp"
  991.         tools:ignore="MissingConstraints" />
  992. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  993. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  994.     xmlns:app="http://schemas.android.com/apk/res-auto"
  995.     xmlns:tools="http://schemas.android.com/tools"
  996.     android:layout_width="match_parent"
  997.     android:layout_height="match_parent"
  998.     tools:context=".Welcome">
  999.     <TextView
  1000.         android:id="@+id/mainword"
  1001.         android:layout_width="fill_parent"
  1002.         android:layout_height="fill_parent"
  1003.         android:gravity="center"
  1004.         android:textSize="22dp"
  1005.         tools:ignore="MissingConstraints" />
  1006. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1007. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1008.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1009.     xmlns:tools="http://schemas.android.com/tools"
  1010.     android:layout_width="match_parent"
  1011.     android:layout_height="match_parent"
  1012.     tools:context=".Welcome">
  1013.     <TextView
  1014.         android:id="@+id/mainword"
  1015.         android:layout_width="fill_parent"
  1016.         android:layout_height="fill_parent"
  1017.         android:gravity="center"
  1018.         android:textSize="22dp"
  1019.         tools:ignore="MissingConstraints" />
  1020. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1021. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1022.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1023.     xmlns:tools="http://schemas.android.com/tools"
  1024.     android:layout_width="match_parent"
  1025.     android:layout_height="match_parent"
  1026.     tools:context=".Welcome">
  1027.     <TextView
  1028.         android:id="@+id/mainword"
  1029.         android:layout_width="fill_parent"
  1030.         android:layout_height="fill_parent"
  1031.         android:gravity="center"
  1032.         android:textSize="22dp"
  1033.         tools:ignore="MissingConstraints" />
  1034. </androidx.constraintlayout.widget.ConstraintLayout>}
  1035. <?xml version="1.0" encoding="utf-8"?>
  1036. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1037.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1038.     xmlns:tools="http://schemas.android.com/tools"
  1039.     android:layout_width="match_parent"
  1040.     android:layout_height="match_parent"
  1041.     tools:context=".Welcome">
  1042.     <TextView
  1043.         android:id="@+id/mainword"
  1044.         android:layout_width="fill_parent"
  1045.         android:layout_height="fill_parent"
  1046.         android:gravity="center"
  1047.         android:textSize="22dp"
  1048.         tools:ignore="MissingConstraints" />
  1049. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1050. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1051.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1052.     xmlns:tools="http://schemas.android.com/tools"
  1053.     android:layout_width="match_parent"
  1054.     android:layout_height="match_parent"
  1055.     tools:context=".Welcome">
  1056.     <TextView
  1057.         android:id="@+id/mainword"
  1058.         android:layout_width="fill_parent"
  1059.         android:layout_height="fill_parent"
  1060.         android:gravity="center"
  1061.         android:textSize="22dp"
  1062.         tools:ignore="MissingConstraints" />
  1063. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1064. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1065.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1066.     xmlns:tools="http://schemas.android.com/tools"
  1067.     android:layout_width="match_parent"
  1068.     android:layout_height="match_parent"
  1069.     tools:context=".Welcome">
  1070.     <TextView
  1071.         android:id="@+id/mainword"
  1072.         android:layout_width="fill_parent"
  1073.         android:layout_height="fill_parent"
  1074.         android:gravity="center"
  1075.         android:textSize="22dp"
  1076.         tools:ignore="MissingConstraints" />
  1077. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1078. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1079.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1080.     xmlns:tools="http://schemas.android.com/tools"
  1081.     android:layout_width="match_parent"
  1082.     android:layout_height="match_parent"
  1083.     tools:context=".Welcome">
  1084.     <TextView
  1085.         android:id="@+id/mainword"
  1086.         android:layout_width="fill_parent"
  1087.         android:layout_height="fill_parent"
  1088.         android:gravity="center"
  1089.         android:textSize="22dp"
  1090.         tools:ignore="MissingConstraints" />
  1091. </androidx.constraintlayout.widget.ConstraintLayout>else{
  1092. <?xml version="1.0" encoding="utf-8"?>
  1093. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1094.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1095.     xmlns:tools="http://schemas.android.com/tools"
  1096.     android:layout_width="match_parent"
  1097.     android:layout_height="match_parent"
  1098.     tools:context=".Welcome">
  1099.     <TextView
  1100.         android:id="@+id/mainword"
  1101.         android:layout_width="fill_parent"
  1102.         android:layout_height="fill_parent"
  1103.         android:gravity="center"
  1104.         android:textSize="22dp"
  1105.         tools:ignore="MissingConstraints" />
  1106. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1107. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1108.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1109.     xmlns:tools="http://schemas.android.com/tools"
  1110.     android:layout_width="match_parent"
  1111.     android:layout_height="match_parent"
  1112.     tools:context=".Welcome">
  1113.     <TextView
  1114.         android:id="@+id/mainword"
  1115.         android:layout_width="fill_parent"
  1116.         android:layout_height="fill_parent"
  1117.         android:gravity="center"
  1118.         android:textSize="22dp"
  1119.         tools:ignore="MissingConstraints" />
  1120. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1121. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1122.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1123.     xmlns:tools="http://schemas.android.com/tools"
  1124.     android:layout_width="match_parent"
  1125.     android:layout_height="match_parent"
  1126.     tools:context=".Welcome">
  1127.     <TextView
  1128.         android:id="@+id/mainword"
  1129.         android:layout_width="fill_parent"
  1130.         android:layout_height="fill_parent"
  1131.         android:gravity="center"
  1132.         android:textSize="22dp"
  1133.         tools:ignore="MissingConstraints" />
  1134. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1135. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1136.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1137.     xmlns:tools="http://schemas.android.com/tools"
  1138.     android:layout_width="match_parent"
  1139.     android:layout_height="match_parent"
  1140.     tools:context=".Welcome">
  1141.     <TextView
  1142.         android:id="@+id/mainword"
  1143.         android:layout_width="fill_parent"
  1144.         android:layout_height="fill_parent"
  1145.         android:gravity="center"
  1146.         android:textSize="22dp"
  1147.         tools:ignore="MissingConstraints" />
  1148. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1149. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1150.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1151.     xmlns:tools="http://schemas.android.com/tools"
  1152.     android:layout_width="match_parent"
  1153.     android:layout_height="match_parent"
  1154.     tools:context=".Welcome">
  1155.     <TextView
  1156.         android:id="@+id/mainword"
  1157.         android:layout_width="fill_parent"
  1158.         android:layout_height="fill_parent"
  1159.         android:gravity="center"
  1160.         android:textSize="22dp"
  1161.         tools:ignore="MissingConstraints" />
  1162. </androidx.constraintlayout.widget.ConstraintLayout>Cursor cursor = db.query("logins",new String[]{"usname"},null,null,null,null,null);
  1163. <?xml version="1.0" encoding="utf-8"?>
  1164. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1165.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1166.     xmlns:tools="http://schemas.android.com/tools"
  1167.     android:layout_width="match_parent"
  1168.     android:layout_height="match_parent"
  1169.     tools:context=".Welcome">
  1170.     <TextView
  1171.         android:id="@+id/mainword"
  1172.         android:layout_width="fill_parent"
  1173.         android:layout_height="fill_parent"
  1174.         android:gravity="center"
  1175.         android:textSize="22dp"
  1176.         tools:ignore="MissingConstraints" />
  1177. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1178. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1179.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1180.     xmlns:tools="http://schemas.android.com/tools"
  1181.     android:layout_width="match_parent"
  1182.     android:layout_height="match_parent"
  1183.     tools:context=".Welcome">
  1184.     <TextView
  1185.         android:id="@+id/mainword"
  1186.         android:layout_width="fill_parent"
  1187.         android:layout_height="fill_parent"
  1188.         android:gravity="center"
  1189.         android:textSize="22dp"
  1190.         tools:ignore="MissingConstraints" />
  1191. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1192. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1193.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1194.     xmlns:tools="http://schemas.android.com/tools"
  1195.     android:layout_width="match_parent"
  1196.     android:layout_height="match_parent"
  1197.     tools:context=".Welcome">
  1198.     <TextView
  1199.         android:id="@+id/mainword"
  1200.         android:layout_width="fill_parent"
  1201.         android:layout_height="fill_parent"
  1202.         android:gravity="center"
  1203.         android:textSize="22dp"
  1204.         tools:ignore="MissingConstraints" />
  1205. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1206. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1207.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1208.     xmlns:tools="http://schemas.android.com/tools"
  1209.     android:layout_width="match_parent"
  1210.     android:layout_height="match_parent"
  1211.     tools:context=".Welcome">
  1212.     <TextView
  1213.         android:id="@+id/mainword"
  1214.         android:layout_width="fill_parent"
  1215.         android:layout_height="fill_parent"
  1216.         android:gravity="center"
  1217.         android:textSize="22dp"
  1218.         tools:ignore="MissingConstraints" />
  1219. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1220. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1221.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1222.     xmlns:tools="http://schemas.android.com/tools"
  1223.     android:layout_width="match_parent"
  1224.     android:layout_height="match_parent"
  1225.     tools:context=".Welcome">
  1226.     <TextView
  1227.         android:id="@+id/mainword"
  1228.         android:layout_width="fill_parent"
  1229.         android:layout_height="fill_parent"
  1230.         android:gravity="center"
  1231.         android:textSize="22dp"
  1232.         tools:ignore="MissingConstraints" />
  1233. </androidx.constraintlayout.widget.ConstraintLayout>while (cursor.moveToNext()){
  1234. <?xml version="1.0" encoding="utf-8"?>
  1235. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1236.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1237.     xmlns:tools="http://schemas.android.com/tools"
  1238.     android:layout_width="match_parent"
  1239.     android:layout_height="match_parent"
  1240.     tools:context=".Welcome">
  1241.     <TextView
  1242.         android:id="@+id/mainword"
  1243.         android:layout_width="fill_parent"
  1244.         android:layout_height="fill_parent"
  1245.         android:gravity="center"
  1246.         android:textSize="22dp"
  1247.         tools:ignore="MissingConstraints" />
  1248. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1249. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1250.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1251.     xmlns:tools="http://schemas.android.com/tools"
  1252.     android:layout_width="match_parent"
  1253.     android:layout_height="match_parent"
  1254.     tools:context=".Welcome">
  1255.     <TextView
  1256.         android:id="@+id/mainword"
  1257.         android:layout_width="fill_parent"
  1258.         android:layout_height="fill_parent"
  1259.         android:gravity="center"
  1260.         android:textSize="22dp"
  1261.         tools:ignore="MissingConstraints" />
  1262. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1263. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1264.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1265.     xmlns:tools="http://schemas.android.com/tools"
  1266.     android:layout_width="match_parent"
  1267.     android:layout_height="match_parent"
  1268.     tools:context=".Welcome">
  1269.     <TextView
  1270.         android:id="@+id/mainword"
  1271.         android:layout_width="fill_parent"
  1272.         android:layout_height="fill_parent"
  1273.         android:gravity="center"
  1274.         android:textSize="22dp"
  1275.         tools:ignore="MissingConstraints" />
  1276. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1277. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1278.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1279.     xmlns:tools="http://schemas.android.com/tools"
  1280.     android:layout_width="match_parent"
  1281.     android:layout_height="match_parent"
  1282.     tools:context=".Welcome">
  1283.     <TextView
  1284.         android:id="@+id/mainword"
  1285.         android:layout_width="fill_parent"
  1286.         android:layout_height="fill_parent"
  1287.         android:gravity="center"
  1288.         android:textSize="22dp"
  1289.         tools:ignore="MissingConstraints" />
  1290. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1291. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1292.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1293.     xmlns:tools="http://schemas.android.com/tools"
  1294.     android:layout_width="match_parent"
  1295.     android:layout_height="match_parent"
  1296.     tools:context=".Welcome">
  1297.     <TextView
  1298.         android:id="@+id/mainword"
  1299.         android:layout_width="fill_parent"
  1300.         android:layout_height="fill_parent"
  1301.         android:gravity="center"
  1302.         android:textSize="22dp"
  1303.         tools:ignore="MissingConstraints" />
  1304. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1305. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1306.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1307.     xmlns:tools="http://schemas.android.com/tools"
  1308.     android:layout_width="match_parent"
  1309.     android:layout_height="match_parent"
  1310.     tools:context=".Welcome">
  1311.     <TextView
  1312.         android:id="@+id/mainword"
  1313.         android:layout_width="fill_parent"
  1314.         android:layout_height="fill_parent"
  1315.         android:gravity="center"
  1316.         android:textSize="22dp"
  1317.         tools:ignore="MissingConstraints" />
  1318. </androidx.constraintlayout.widget.ConstraintLayout>if(cursor.getString(0).equals(name)){
  1319. <?xml version="1.0" encoding="utf-8"?>
  1320. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1321.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1322.     xmlns:tools="http://schemas.android.com/tools"
  1323.     android:layout_width="match_parent"
  1324.     android:layout_height="match_parent"
  1325.     tools:context=".Welcome">
  1326.     <TextView
  1327.         android:id="@+id/mainword"
  1328.         android:layout_width="fill_parent"
  1329.         android:layout_height="fill_parent"
  1330.         android:gravity="center"
  1331.         android:textSize="22dp"
  1332.         tools:ignore="MissingConstraints" />
  1333. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1334. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1335.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1336.     xmlns:tools="http://schemas.android.com/tools"
  1337.     android:layout_width="match_parent"
  1338.     android:layout_height="match_parent"
  1339.     tools:context=".Welcome">
  1340.     <TextView
  1341.         android:id="@+id/mainword"
  1342.         android:layout_width="fill_parent"
  1343.         android:layout_height="fill_parent"
  1344.         android:gravity="center"
  1345.         android:textSize="22dp"
  1346.         tools:ignore="MissingConstraints" />
  1347. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1348. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1349.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1350.     xmlns:tools="http://schemas.android.com/tools"
  1351.     android:layout_width="match_parent"
  1352.     android:layout_height="match_parent"
  1353.     tools:context=".Welcome">
  1354.     <TextView
  1355.         android:id="@+id/mainword"
  1356.         android:layout_width="fill_parent"
  1357.         android:layout_height="fill_parent"
  1358.         android:gravity="center"
  1359.         android:textSize="22dp"
  1360.         tools:ignore="MissingConstraints" />
  1361. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1362. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1363.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1364.     xmlns:tools="http://schemas.android.com/tools"
  1365.     android:layout_width="match_parent"
  1366.     android:layout_height="match_parent"
  1367.     tools:context=".Welcome">
  1368.     <TextView
  1369.         android:id="@+id/mainword"
  1370.         android:layout_width="fill_parent"
  1371.         android:layout_height="fill_parent"
  1372.         android:gravity="center"
  1373.         android:textSize="22dp"
  1374.         tools:ignore="MissingConstraints" />
  1375. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1376. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1377.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1378.     xmlns:tools="http://schemas.android.com/tools"
  1379.     android:layout_width="match_parent"
  1380.     android:layout_height="match_parent"
  1381.     tools:context=".Welcome">
  1382.     <TextView
  1383.         android:id="@+id/mainword"
  1384.         android:layout_width="fill_parent"
  1385.         android:layout_height="fill_parent"
  1386.         android:gravity="center"
  1387.         android:textSize="22dp"
  1388.         tools:ignore="MissingConstraints" />
  1389. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1390. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1391.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1392.     xmlns:tools="http://schemas.android.com/tools"
  1393.     android:layout_width="match_parent"
  1394.     android:layout_height="match_parent"
  1395.     tools:context=".Welcome">
  1396.     <TextView
  1397.         android:id="@+id/mainword"
  1398.         android:layout_width="fill_parent"
  1399.         android:layout_height="fill_parent"
  1400.         android:gravity="center"
  1401.         android:textSize="22dp"
  1402.         tools:ignore="MissingConstraints" />
  1403. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1404. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1405.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1406.     xmlns:tools="http://schemas.android.com/tools"
  1407.     android:layout_width="match_parent"
  1408.     android:layout_height="match_parent"
  1409.     tools:context=".Welcome">
  1410.     <TextView
  1411.         android:id="@+id/mainword"
  1412.         android:layout_width="fill_parent"
  1413.         android:layout_height="fill_parent"
  1414.         android:gravity="center"
  1415.         android:textSize="22dp"
  1416.         tools:ignore="MissingConstraints" />
  1417. </androidx.constraintlayout.widget.ConstraintLayout>flag = false;
  1418. <?xml version="1.0" encoding="utf-8"?>
  1419. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1420.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1421.     xmlns:tools="http://schemas.android.com/tools"
  1422.     android:layout_width="match_parent"
  1423.     android:layout_height="match_parent"
  1424.     tools:context=".Welcome">
  1425.     <TextView
  1426.         android:id="@+id/mainword"
  1427.         android:layout_width="fill_parent"
  1428.         android:layout_height="fill_parent"
  1429.         android:gravity="center"
  1430.         android:textSize="22dp"
  1431.         tools:ignore="MissingConstraints" />
  1432. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1433. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1434.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1435.     xmlns:tools="http://schemas.android.com/tools"
  1436.     android:layout_width="match_parent"
  1437.     android:layout_height="match_parent"
  1438.     tools:context=".Welcome">
  1439.     <TextView
  1440.         android:id="@+id/mainword"
  1441.         android:layout_width="fill_parent"
  1442.         android:layout_height="fill_parent"
  1443.         android:gravity="center"
  1444.         android:textSize="22dp"
  1445.         tools:ignore="MissingConstraints" />
  1446. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1447. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1448.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1449.     xmlns:tools="http://schemas.android.com/tools"
  1450.     android:layout_width="match_parent"
  1451.     android:layout_height="match_parent"
  1452.     tools:context=".Welcome">
  1453.     <TextView
  1454.         android:id="@+id/mainword"
  1455.         android:layout_width="fill_parent"
  1456.         android:layout_height="fill_parent"
  1457.         android:gravity="center"
  1458.         android:textSize="22dp"
  1459.         tools:ignore="MissingConstraints" />
  1460. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1461. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1462.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1463.     xmlns:tools="http://schemas.android.com/tools"
  1464.     android:layout_width="match_parent"
  1465.     android:layout_height="match_parent"
  1466.     tools:context=".Welcome">
  1467.     <TextView
  1468.         android:id="@+id/mainword"
  1469.         android:layout_width="fill_parent"
  1470.         android:layout_height="fill_parent"
  1471.         android:gravity="center"
  1472.         android:textSize="22dp"
  1473.         tools:ignore="MissingConstraints" />
  1474. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1475. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1476.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1477.     xmlns:tools="http://schemas.android.com/tools"
  1478.     android:layout_width="match_parent"
  1479.     android:layout_height="match_parent"
  1480.     tools:context=".Welcome">
  1481.     <TextView
  1482.         android:id="@+id/mainword"
  1483.         android:layout_width="fill_parent"
  1484.         android:layout_height="fill_parent"
  1485.         android:gravity="center"
  1486.         android:textSize="22dp"
  1487.         tools:ignore="MissingConstraints" />
  1488. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1489. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1490.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1491.     xmlns:tools="http://schemas.android.com/tools"
  1492.     android:layout_width="match_parent"
  1493.     android:layout_height="match_parent"
  1494.     tools:context=".Welcome">
  1495.     <TextView
  1496.         android:id="@+id/mainword"
  1497.         android:layout_width="fill_parent"
  1498.         android:layout_height="fill_parent"
  1499.         android:gravity="center"
  1500.         android:textSize="22dp"
  1501.         tools:ignore="MissingConstraints" />
  1502. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1503. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1504.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1505.     xmlns:tools="http://schemas.android.com/tools"
  1506.     android:layout_width="match_parent"
  1507.     android:layout_height="match_parent"
  1508.     tools:context=".Welcome">
  1509.     <TextView
  1510.         android:id="@+id/mainword"
  1511.         android:layout_width="fill_parent"
  1512.         android:layout_height="fill_parent"
  1513.         android:gravity="center"
  1514.         android:textSize="22dp"
  1515.         tools:ignore="MissingConstraints" />
  1516. </androidx.constraintlayout.widget.ConstraintLayout>break;
  1517. <?xml version="1.0" encoding="utf-8"?>
  1518. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1519.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1520.     xmlns:tools="http://schemas.android.com/tools"
  1521.     android:layout_width="match_parent"
  1522.     android:layout_height="match_parent"
  1523.     tools:context=".Welcome">
  1524.     <TextView
  1525.         android:id="@+id/mainword"
  1526.         android:layout_width="fill_parent"
  1527.         android:layout_height="fill_parent"
  1528.         android:gravity="center"
  1529.         android:textSize="22dp"
  1530.         tools:ignore="MissingConstraints" />
  1531. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1532. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1533.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1534.     xmlns:tools="http://schemas.android.com/tools"
  1535.     android:layout_width="match_parent"
  1536.     android:layout_height="match_parent"
  1537.     tools:context=".Welcome">
  1538.     <TextView
  1539.         android:id="@+id/mainword"
  1540.         android:layout_width="fill_parent"
  1541.         android:layout_height="fill_parent"
  1542.         android:gravity="center"
  1543.         android:textSize="22dp"
  1544.         tools:ignore="MissingConstraints" />
  1545. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1546. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1547.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1548.     xmlns:tools="http://schemas.android.com/tools"
  1549.     android:layout_width="match_parent"
  1550.     android:layout_height="match_parent"
  1551.     tools:context=".Welcome">
  1552.     <TextView
  1553.         android:id="@+id/mainword"
  1554.         android:layout_width="fill_parent"
  1555.         android:layout_height="fill_parent"
  1556.         android:gravity="center"
  1557.         android:textSize="22dp"
  1558.         tools:ignore="MissingConstraints" />
  1559. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1560. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1561.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1562.     xmlns:tools="http://schemas.android.com/tools"
  1563.     android:layout_width="match_parent"
  1564.     android:layout_height="match_parent"
  1565.     tools:context=".Welcome">
  1566.     <TextView
  1567.         android:id="@+id/mainword"
  1568.         android:layout_width="fill_parent"
  1569.         android:layout_height="fill_parent"
  1570.         android:gravity="center"
  1571.         android:textSize="22dp"
  1572.         tools:ignore="MissingConstraints" />
  1573. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1574. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1575.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1576.     xmlns:tools="http://schemas.android.com/tools"
  1577.     android:layout_width="match_parent"
  1578.     android:layout_height="match_parent"
  1579.     tools:context=".Welcome">
  1580.     <TextView
  1581.         android:id="@+id/mainword"
  1582.         android:layout_width="fill_parent"
  1583.         android:layout_height="fill_parent"
  1584.         android:gravity="center"
  1585.         android:textSize="22dp"
  1586.         tools:ignore="MissingConstraints" />
  1587. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1588. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1589.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1590.     xmlns:tools="http://schemas.android.com/tools"
  1591.     android:layout_width="match_parent"
  1592.     android:layout_height="match_parent"
  1593.     tools:context=".Welcome">
  1594.     <TextView
  1595.         android:id="@+id/mainword"
  1596.         android:layout_width="fill_parent"
  1597.         android:layout_height="fill_parent"
  1598.         android:gravity="center"
  1599.         android:textSize="22dp"
  1600.         tools:ignore="MissingConstraints" />
  1601. </androidx.constraintlayout.widget.ConstraintLayout>}
  1602. <?xml version="1.0" encoding="utf-8"?>
  1603. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1604.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1605.     xmlns:tools="http://schemas.android.com/tools"
  1606.     android:layout_width="match_parent"
  1607.     android:layout_height="match_parent"
  1608.     tools:context=".Welcome">
  1609.     <TextView
  1610.         android:id="@+id/mainword"
  1611.         android:layout_width="fill_parent"
  1612.         android:layout_height="fill_parent"
  1613.         android:gravity="center"
  1614.         android:textSize="22dp"
  1615.         tools:ignore="MissingConstraints" />
  1616. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1617. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1618.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1619.     xmlns:tools="http://schemas.android.com/tools"
  1620.     android:layout_width="match_parent"
  1621.     android:layout_height="match_parent"
  1622.     tools:context=".Welcome">
  1623.     <TextView
  1624.         android:id="@+id/mainword"
  1625.         android:layout_width="fill_parent"
  1626.         android:layout_height="fill_parent"
  1627.         android:gravity="center"
  1628.         android:textSize="22dp"
  1629.         tools:ignore="MissingConstraints" />
  1630. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1631. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1632.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1633.     xmlns:tools="http://schemas.android.com/tools"
  1634.     android:layout_width="match_parent"
  1635.     android:layout_height="match_parent"
  1636.     tools:context=".Welcome">
  1637.     <TextView
  1638.         android:id="@+id/mainword"
  1639.         android:layout_width="fill_parent"
  1640.         android:layout_height="fill_parent"
  1641.         android:gravity="center"
  1642.         android:textSize="22dp"
  1643.         tools:ignore="MissingConstraints" />
  1644. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1645. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1646.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1647.     xmlns:tools="http://schemas.android.com/tools"
  1648.     android:layout_width="match_parent"
  1649.     android:layout_height="match_parent"
  1650.     tools:context=".Welcome">
  1651.     <TextView
  1652.         android:id="@+id/mainword"
  1653.         android:layout_width="fill_parent"
  1654.         android:layout_height="fill_parent"
  1655.         android:gravity="center"
  1656.         android:textSize="22dp"
  1657.         tools:ignore="MissingConstraints" />
  1658. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1659. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1660.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1661.     xmlns:tools="http://schemas.android.com/tools"
  1662.     android:layout_width="match_parent"
  1663.     android:layout_height="match_parent"
  1664.     tools:context=".Welcome">
  1665.     <TextView
  1666.         android:id="@+id/mainword"
  1667.         android:layout_width="fill_parent"
  1668.         android:layout_height="fill_parent"
  1669.         android:gravity="center"
  1670.         android:textSize="22dp"
  1671.         tools:ignore="MissingConstraints" />
  1672. </androidx.constraintlayout.widget.ConstraintLayout>}
  1673. <?xml version="1.0" encoding="utf-8"?>
  1674. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1675.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1676.     xmlns:tools="http://schemas.android.com/tools"
  1677.     android:layout_width="match_parent"
  1678.     android:layout_height="match_parent"
  1679.     tools:context=".Welcome">
  1680.     <TextView
  1681.         android:id="@+id/mainword"
  1682.         android:layout_width="fill_parent"
  1683.         android:layout_height="fill_parent"
  1684.         android:gravity="center"
  1685.         android:textSize="22dp"
  1686.         tools:ignore="MissingConstraints" />
  1687. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1688. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1689.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1690.     xmlns:tools="http://schemas.android.com/tools"
  1691.     android:layout_width="match_parent"
  1692.     android:layout_height="match_parent"
  1693.     tools:context=".Welcome">
  1694.     <TextView
  1695.         android:id="@+id/mainword"
  1696.         android:layout_width="fill_parent"
  1697.         android:layout_height="fill_parent"
  1698.         android:gravity="center"
  1699.         android:textSize="22dp"
  1700.         tools:ignore="MissingConstraints" />
  1701. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1702. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1703.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1704.     xmlns:tools="http://schemas.android.com/tools"
  1705.     android:layout_width="match_parent"
  1706.     android:layout_height="match_parent"
  1707.     tools:context=".Welcome">
  1708.     <TextView
  1709.         android:id="@+id/mainword"
  1710.         android:layout_width="fill_parent"
  1711.         android:layout_height="fill_parent"
  1712.         android:gravity="center"
  1713.         android:textSize="22dp"
  1714.         tools:ignore="MissingConstraints" />
  1715. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1716. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1717.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1718.     xmlns:tools="http://schemas.android.com/tools"
  1719.     android:layout_width="match_parent"
  1720.     android:layout_height="match_parent"
  1721.     tools:context=".Welcome">
  1722.     <TextView
  1723.         android:id="@+id/mainword"
  1724.         android:layout_width="fill_parent"
  1725.         android:layout_height="fill_parent"
  1726.         android:gravity="center"
  1727.         android:textSize="22dp"
  1728.         tools:ignore="MissingConstraints" />
  1729. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1730. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1731.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1732.     xmlns:tools="http://schemas.android.com/tools"
  1733.     android:layout_width="match_parent"
  1734.     android:layout_height="match_parent"
  1735.     tools:context=".Welcome">
  1736.     <TextView
  1737.         android:id="@+id/mainword"
  1738.         android:layout_width="fill_parent"
  1739.         android:layout_height="fill_parent"
  1740.         android:gravity="center"
  1741.         android:textSize="22dp"
  1742.         tools:ignore="MissingConstraints" />
  1743. </androidx.constraintlayout.widget.ConstraintLayout>if(flag==true){<?xml version="1.0" encoding="utf-8"?>
  1744. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1745.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1746.     xmlns:tools="http://schemas.android.com/tools"
  1747.     android:layout_width="match_parent"
  1748.     android:layout_height="match_parent"
  1749.     tools:context=".Welcome">
  1750.     <TextView
  1751.         android:id="@+id/mainword"
  1752.         android:layout_width="fill_parent"
  1753.         android:layout_height="fill_parent"
  1754.         android:gravity="center"
  1755.         android:textSize="22dp"
  1756.         tools:ignore="MissingConstraints" />
  1757. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1758. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1759.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1760.     xmlns:tools="http://schemas.android.com/tools"
  1761.     android:layout_width="match_parent"
  1762.     android:layout_height="match_parent"
  1763.     tools:context=".Welcome">
  1764.     <TextView
  1765.         android:id="@+id/mainword"
  1766.         android:layout_width="fill_parent"
  1767.         android:layout_height="fill_parent"
  1768.         android:gravity="center"
  1769.         android:textSize="22dp"
  1770.         tools:ignore="MissingConstraints" />
  1771. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1772. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1773.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1774.     xmlns:tools="http://schemas.android.com/tools"
  1775.     android:layout_width="match_parent"
  1776.     android:layout_height="match_parent"
  1777.     tools:context=".Welcome">
  1778.     <TextView
  1779.         android:id="@+id/mainword"
  1780.         android:layout_width="fill_parent"
  1781.         android:layout_height="fill_parent"
  1782.         android:gravity="center"
  1783.         android:textSize="22dp"
  1784.         tools:ignore="MissingConstraints" />
  1785. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1786. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1787.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1788.     xmlns:tools="http://schemas.android.com/tools"
  1789.     android:layout_width="match_parent"
  1790.     android:layout_height="match_parent"
  1791.     tools:context=".Welcome">
  1792.     <TextView
  1793.         android:id="@+id/mainword"
  1794.         android:layout_width="fill_parent"
  1795.         android:layout_height="fill_parent"
  1796.         android:gravity="center"
  1797.         android:textSize="22dp"
  1798.         tools:ignore="MissingConstraints" />
  1799. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1800. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1801.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1802.     xmlns:tools="http://schemas.android.com/tools"
  1803.     android:layout_width="match_parent"
  1804.     android:layout_height="match_parent"
  1805.     tools:context=".Welcome">
  1806.     <TextView
  1807.         android:id="@+id/mainword"
  1808.         android:layout_width="fill_parent"
  1809.         android:layout_height="fill_parent"
  1810.         android:gravity="center"
  1811.         android:textSize="22dp"
  1812.         tools:ignore="MissingConstraints" />
  1813. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1814. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1815.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1816.     xmlns:tools="http://schemas.android.com/tools"
  1817.     android:layout_width="match_parent"
  1818.     android:layout_height="match_parent"
  1819.     tools:context=".Welcome">
  1820.     <TextView
  1821.         android:id="@+id/mainword"
  1822.         android:layout_width="fill_parent"
  1823.         android:layout_height="fill_parent"
  1824.         android:gravity="center"
  1825.         android:textSize="22dp"
  1826.         tools:ignore="MissingConstraints" />
  1827. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1828. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1829.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1830.     xmlns:tools="http://schemas.android.com/tools"
  1831.     android:layout_width="match_parent"
  1832.     android:layout_height="match_parent"
  1833.     tools:context=".Welcome">
  1834.     <TextView
  1835.         android:id="@+id/mainword"
  1836.         android:layout_width="fill_parent"
  1837.         android:layout_height="fill_parent"
  1838.         android:gravity="center"
  1839.         android:textSize="22dp"
  1840.         tools:ignore="MissingConstraints" />
  1841. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1842. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1843.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1844.     xmlns:tools="http://schemas.android.com/tools"
  1845.     android:layout_width="match_parent"
  1846.     android:layout_height="match_parent"
  1847.     tools:context=".Welcome">
  1848.     <TextView
  1849.         android:id="@+id/mainword"
  1850.         android:layout_width="fill_parent"
  1851.         android:layout_height="fill_parent"
  1852.         android:gravity="center"
  1853.         android:textSize="22dp"
  1854.         tools:ignore="MissingConstraints" />
  1855. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1856. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1857.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1858.     xmlns:tools="http://schemas.android.com/tools"
  1859.     android:layout_width="match_parent"
  1860.     android:layout_height="match_parent"
  1861.     tools:context=".Welcome">
  1862.     <TextView
  1863.         android:id="@+id/mainword"
  1864.         android:layout_width="fill_parent"
  1865.         android:layout_height="fill_parent"
  1866.         android:gravity="center"
  1867.         android:textSize="22dp"
  1868.         tools:ignore="MissingConstraints" />
  1869. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1870. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1871.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1872.     xmlns:tools="http://schemas.android.com/tools"
  1873.     android:layout_width="match_parent"
  1874.     android:layout_height="match_parent"
  1875.     tools:context=".Welcome">
  1876.     <TextView
  1877.         android:id="@+id/mainword"
  1878.         android:layout_width="fill_parent"
  1879.         android:layout_height="fill_parent"
  1880.         android:gravity="center"
  1881.         android:textSize="22dp"
  1882.         tools:ignore="MissingConstraints" />
  1883. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1884. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1885.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1886.     xmlns:tools="http://schemas.android.com/tools"
  1887.     android:layout_width="match_parent"
  1888.     android:layout_height="match_parent"
  1889.     tools:context=".Welcome">
  1890.     <TextView
  1891.         android:id="@+id/mainword"
  1892.         android:layout_width="fill_parent"
  1893.         android:layout_height="fill_parent"
  1894.         android:gravity="center"
  1895.         android:textSize="22dp"
  1896.         tools:ignore="MissingConstraints" />
  1897. </androidx.constraintlayout.widget.ConstraintLayout> //判断用户是否已存在
  1898. <?xml version="1.0" encoding="utf-8"?>
  1899. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1900.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1901.     xmlns:tools="http://schemas.android.com/tools"
  1902.     android:layout_width="match_parent"
  1903.     android:layout_height="match_parent"
  1904.     tools:context=".Welcome">
  1905.     <TextView
  1906.         android:id="@+id/mainword"
  1907.         android:layout_width="fill_parent"
  1908.         android:layout_height="fill_parent"
  1909.         android:gravity="center"
  1910.         android:textSize="22dp"
  1911.         tools:ignore="MissingConstraints" />
  1912. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1913. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1914.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1915.     xmlns:tools="http://schemas.android.com/tools"
  1916.     android:layout_width="match_parent"
  1917.     android:layout_height="match_parent"
  1918.     tools:context=".Welcome">
  1919.     <TextView
  1920.         android:id="@+id/mainword"
  1921.         android:layout_width="fill_parent"
  1922.         android:layout_height="fill_parent"
  1923.         android:gravity="center"
  1924.         android:textSize="22dp"
  1925.         tools:ignore="MissingConstraints" />
  1926. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1927. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1928.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1929.     xmlns:tools="http://schemas.android.com/tools"
  1930.     android:layout_width="match_parent"
  1931.     android:layout_height="match_parent"
  1932.     tools:context=".Welcome">
  1933.     <TextView
  1934.         android:id="@+id/mainword"
  1935.         android:layout_width="fill_parent"
  1936.         android:layout_height="fill_parent"
  1937.         android:gravity="center"
  1938.         android:textSize="22dp"
  1939.         tools:ignore="MissingConstraints" />
  1940. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1941. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1942.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1943.     xmlns:tools="http://schemas.android.com/tools"
  1944.     android:layout_width="match_parent"
  1945.     android:layout_height="match_parent"
  1946.     tools:context=".Welcome">
  1947.     <TextView
  1948.         android:id="@+id/mainword"
  1949.         android:layout_width="fill_parent"
  1950.         android:layout_height="fill_parent"
  1951.         android:gravity="center"
  1952.         android:textSize="22dp"
  1953.         tools:ignore="MissingConstraints" />
  1954. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1955. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1956.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1957.     xmlns:tools="http://schemas.android.com/tools"
  1958.     android:layout_width="match_parent"
  1959.     android:layout_height="match_parent"
  1960.     tools:context=".Welcome">
  1961.     <TextView
  1962.         android:id="@+id/mainword"
  1963.         android:layout_width="fill_parent"
  1964.         android:layout_height="fill_parent"
  1965.         android:gravity="center"
  1966.         android:textSize="22dp"
  1967.         tools:ignore="MissingConstraints" />
  1968. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1969. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1970.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1971.     xmlns:tools="http://schemas.android.com/tools"
  1972.     android:layout_width="match_parent"
  1973.     android:layout_height="match_parent"
  1974.     tools:context=".Welcome">
  1975.     <TextView
  1976.         android:id="@+id/mainword"
  1977.         android:layout_width="fill_parent"
  1978.         android:layout_height="fill_parent"
  1979.         android:gravity="center"
  1980.         android:textSize="22dp"
  1981.         tools:ignore="MissingConstraints" />
  1982. </androidx.constraintlayout.widget.ConstraintLayout>if (pwd01.equals(pwd02)) {                                                                //判断两次输入的密码是否一致,若一致则继续,不一致则提醒密码不一致
  1983. <?xml version="1.0" encoding="utf-8"?>
  1984. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1985.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1986.     xmlns:tools="http://schemas.android.com/tools"
  1987.     android:layout_width="match_parent"
  1988.     android:layout_height="match_parent"
  1989.     tools:context=".Welcome">
  1990.     <TextView
  1991.         android:id="@+id/mainword"
  1992.         android:layout_width="fill_parent"
  1993.         android:layout_height="fill_parent"
  1994.         android:gravity="center"
  1995.         android:textSize="22dp"
  1996.         tools:ignore="MissingConstraints" />
  1997. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1998. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1999.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2000.     xmlns:tools="http://schemas.android.com/tools"
  2001.     android:layout_width="match_parent"
  2002.     android:layout_height="match_parent"
  2003.     tools:context=".Welcome">
  2004.     <TextView
  2005.         android:id="@+id/mainword"
  2006.         android:layout_width="fill_parent"
  2007.         android:layout_height="fill_parent"
  2008.         android:gravity="center"
  2009.         android:textSize="22dp"
  2010.         tools:ignore="MissingConstraints" />
  2011. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2012. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2013.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2014.     xmlns:tools="http://schemas.android.com/tools"
  2015.     android:layout_width="match_parent"
  2016.     android:layout_height="match_parent"
  2017.     tools:context=".Welcome">
  2018.     <TextView
  2019.         android:id="@+id/mainword"
  2020.         android:layout_width="fill_parent"
  2021.         android:layout_height="fill_parent"
  2022.         android:gravity="center"
  2023.         android:textSize="22dp"
  2024.         tools:ignore="MissingConstraints" />
  2025. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2026. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2027.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2028.     xmlns:tools="http://schemas.android.com/tools"
  2029.     android:layout_width="match_parent"
  2030.     android:layout_height="match_parent"
  2031.     tools:context=".Welcome">
  2032.     <TextView
  2033.         android:id="@+id/mainword"
  2034.         android:layout_width="fill_parent"
  2035.         android:layout_height="fill_parent"
  2036.         android:gravity="center"
  2037.         android:textSize="22dp"
  2038.         tools:ignore="MissingConstraints" />
  2039. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2040. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2041.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2042.     xmlns:tools="http://schemas.android.com/tools"
  2043.     android:layout_width="match_parent"
  2044.     android:layout_height="match_parent"
  2045.     tools:context=".Welcome">
  2046.     <TextView
  2047.         android:id="@+id/mainword"
  2048.         android:layout_width="fill_parent"
  2049.         android:layout_height="fill_parent"
  2050.         android:gravity="center"
  2051.         android:textSize="22dp"
  2052.         tools:ignore="MissingConstraints" />
  2053. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2054. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2055.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2056.     xmlns:tools="http://schemas.android.com/tools"
  2057.     android:layout_width="match_parent"
  2058.     android:layout_height="match_parent"
  2059.     tools:context=".Welcome">
  2060.     <TextView
  2061.         android:id="@+id/mainword"
  2062.         android:layout_width="fill_parent"
  2063.         android:layout_height="fill_parent"
  2064.         android:gravity="center"
  2065.         android:textSize="22dp"
  2066.         tools:ignore="MissingConstraints" />
  2067. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2068. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2069.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2070.     xmlns:tools="http://schemas.android.com/tools"
  2071.     android:layout_width="match_parent"
  2072.     android:layout_height="match_parent"
  2073.     tools:context=".Welcome">
  2074.     <TextView
  2075.         android:id="@+id/mainword"
  2076.         android:layout_width="fill_parent"
  2077.         android:layout_height="fill_parent"
  2078.         android:gravity="center"
  2079.         android:textSize="22dp"
  2080.         tools:ignore="MissingConstraints" />
  2081. </androidx.constraintlayout.widget.ConstraintLayout>ContentValues cv = new ContentValues();
  2082. <?xml version="1.0" encoding="utf-8"?>
  2083. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2084.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2085.     xmlns:tools="http://schemas.android.com/tools"
  2086.     android:layout_width="match_parent"
  2087.     android:layout_height="match_parent"
  2088.     tools:context=".Welcome">
  2089.     <TextView
  2090.         android:id="@+id/mainword"
  2091.         android:layout_width="fill_parent"
  2092.         android:layout_height="fill_parent"
  2093.         android:gravity="center"
  2094.         android:textSize="22dp"
  2095.         tools:ignore="MissingConstraints" />
  2096. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2097. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2098.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2099.     xmlns:tools="http://schemas.android.com/tools"
  2100.     android:layout_width="match_parent"
  2101.     android:layout_height="match_parent"
  2102.     tools:context=".Welcome">
  2103.     <TextView
  2104.         android:id="@+id/mainword"
  2105.         android:layout_width="fill_parent"
  2106.         android:layout_height="fill_parent"
  2107.         android:gravity="center"
  2108.         android:textSize="22dp"
  2109.         tools:ignore="MissingConstraints" />
  2110. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2111. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2112.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2113.     xmlns:tools="http://schemas.android.com/tools"
  2114.     android:layout_width="match_parent"
  2115.     android:layout_height="match_parent"
  2116.     tools:context=".Welcome">
  2117.     <TextView
  2118.         android:id="@+id/mainword"
  2119.         android:layout_width="fill_parent"
  2120.         android:layout_height="fill_parent"
  2121.         android:gravity="center"
  2122.         android:textSize="22dp"
  2123.         tools:ignore="MissingConstraints" />
  2124. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2125. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2126.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2127.     xmlns:tools="http://schemas.android.com/tools"
  2128.     android:layout_width="match_parent"
  2129.     android:layout_height="match_parent"
  2130.     tools:context=".Welcome">
  2131.     <TextView
  2132.         android:id="@+id/mainword"
  2133.         android:layout_width="fill_parent"
  2134.         android:layout_height="fill_parent"
  2135.         android:gravity="center"
  2136.         android:textSize="22dp"
  2137.         tools:ignore="MissingConstraints" />
  2138. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2139. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2140.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2141.     xmlns:tools="http://schemas.android.com/tools"
  2142.     android:layout_width="match_parent"
  2143.     android:layout_height="match_parent"
  2144.     tools:context=".Welcome">
  2145.     <TextView
  2146.         android:id="@+id/mainword"
  2147.         android:layout_width="fill_parent"
  2148.         android:layout_height="fill_parent"
  2149.         android:gravity="center"
  2150.         android:textSize="22dp"
  2151.         tools:ignore="MissingConstraints" />
  2152. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2153. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2154.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2155.     xmlns:tools="http://schemas.android.com/tools"
  2156.     android:layout_width="match_parent"
  2157.     android:layout_height="match_parent"
  2158.     tools:context=".Welcome">
  2159.     <TextView
  2160.         android:id="@+id/mainword"
  2161.         android:layout_width="fill_parent"
  2162.         android:layout_height="fill_parent"
  2163.         android:gravity="center"
  2164.         android:textSize="22dp"
  2165.         tools:ignore="MissingConstraints" />
  2166. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2167. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2168.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2169.     xmlns:tools="http://schemas.android.com/tools"
  2170.     android:layout_width="match_parent"
  2171.     android:layout_height="match_parent"
  2172.     tools:context=".Welcome">
  2173.     <TextView
  2174.         android:id="@+id/mainword"
  2175.         android:layout_width="fill_parent"
  2176.         android:layout_height="fill_parent"
  2177.         android:gravity="center"
  2178.         android:textSize="22dp"
  2179.         tools:ignore="MissingConstraints" />
  2180. </androidx.constraintlayout.widget.ConstraintLayout>cv.put("usname",name);
  2181. <?xml version="1.0" encoding="utf-8"?>
  2182. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2183.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2184.     xmlns:tools="http://schemas.android.com/tools"
  2185.     android:layout_width="match_parent"
  2186.     android:layout_height="match_parent"
  2187.     tools:context=".Welcome">
  2188.     <TextView
  2189.         android:id="@+id/mainword"
  2190.         android:layout_width="fill_parent"
  2191.         android:layout_height="fill_parent"
  2192.         android:gravity="center"
  2193.         android:textSize="22dp"
  2194.         tools:ignore="MissingConstraints" />
  2195. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2196. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2197.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2198.     xmlns:tools="http://schemas.android.com/tools"
  2199.     android:layout_width="match_parent"
  2200.     android:layout_height="match_parent"
  2201.     tools:context=".Welcome">
  2202.     <TextView
  2203.         android:id="@+id/mainword"
  2204.         android:layout_width="fill_parent"
  2205.         android:layout_height="fill_parent"
  2206.         android:gravity="center"
  2207.         android:textSize="22dp"
  2208.         tools:ignore="MissingConstraints" />
  2209. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2210. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2211.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2212.     xmlns:tools="http://schemas.android.com/tools"
  2213.     android:layout_width="match_parent"
  2214.     android:layout_height="match_parent"
  2215.     tools:context=".Welcome">
  2216.     <TextView
  2217.         android:id="@+id/mainword"
  2218.         android:layout_width="fill_parent"
  2219.         android:layout_height="fill_parent"
  2220.         android:gravity="center"
  2221.         android:textSize="22dp"
  2222.         tools:ignore="MissingConstraints" />
  2223. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2224. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2225.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2226.     xmlns:tools="http://schemas.android.com/tools"
  2227.     android:layout_width="match_parent"
  2228.     android:layout_height="match_parent"
  2229.     tools:context=".Welcome">
  2230.     <TextView
  2231.         android:id="@+id/mainword"
  2232.         android:layout_width="fill_parent"
  2233.         android:layout_height="fill_parent"
  2234.         android:gravity="center"
  2235.         android:textSize="22dp"
  2236.         tools:ignore="MissingConstraints" />
  2237. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2238. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2239.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2240.     xmlns:tools="http://schemas.android.com/tools"
  2241.     android:layout_width="match_parent"
  2242.     android:layout_height="match_parent"
  2243.     tools:context=".Welcome">
  2244.     <TextView
  2245.         android:id="@+id/mainword"
  2246.         android:layout_width="fill_parent"
  2247.         android:layout_height="fill_parent"
  2248.         android:gravity="center"
  2249.         android:textSize="22dp"
  2250.         tools:ignore="MissingConstraints" />
  2251. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2252. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2253.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2254.     xmlns:tools="http://schemas.android.com/tools"
  2255.     android:layout_width="match_parent"
  2256.     android:layout_height="match_parent"
  2257.     tools:context=".Welcome">
  2258.     <TextView
  2259.         android:id="@+id/mainword"
  2260.         android:layout_width="fill_parent"
  2261.         android:layout_height="fill_parent"
  2262.         android:gravity="center"
  2263.         android:textSize="22dp"
  2264.         tools:ignore="MissingConstraints" />
  2265. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2266. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2267.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2268.     xmlns:tools="http://schemas.android.com/tools"
  2269.     android:layout_width="match_parent"
  2270.     android:layout_height="match_parent"
  2271.     tools:context=".Welcome">
  2272.     <TextView
  2273.         android:id="@+id/mainword"
  2274.         android:layout_width="fill_parent"
  2275.         android:layout_height="fill_parent"
  2276.         android:gravity="center"
  2277.         android:textSize="22dp"
  2278.         tools:ignore="MissingConstraints" />
  2279. </androidx.constraintlayout.widget.ConstraintLayout>cv.put("uspwd",pwd01);
  2280. <?xml version="1.0" encoding="utf-8"?>
  2281. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2282.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2283.     xmlns:tools="http://schemas.android.com/tools"
  2284.     android:layout_width="match_parent"
  2285.     android:layout_height="match_parent"
  2286.     tools:context=".Welcome">
  2287.     <TextView
  2288.         android:id="@+id/mainword"
  2289.         android:layout_width="fill_parent"
  2290.         android:layout_height="fill_parent"
  2291.         android:gravity="center"
  2292.         android:textSize="22dp"
  2293.         tools:ignore="MissingConstraints" />
  2294. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2295. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2296.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2297.     xmlns:tools="http://schemas.android.com/tools"
  2298.     android:layout_width="match_parent"
  2299.     android:layout_height="match_parent"
  2300.     tools:context=".Welcome">
  2301.     <TextView
  2302.         android:id="@+id/mainword"
  2303.         android:layout_width="fill_parent"
  2304.         android:layout_height="fill_parent"
  2305.         android:gravity="center"
  2306.         android:textSize="22dp"
  2307.         tools:ignore="MissingConstraints" />
  2308. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2309. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2310.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2311.     xmlns:tools="http://schemas.android.com/tools"
  2312.     android:layout_width="match_parent"
  2313.     android:layout_height="match_parent"
  2314.     tools:context=".Welcome">
  2315.     <TextView
  2316.         android:id="@+id/mainword"
  2317.         android:layout_width="fill_parent"
  2318.         android:layout_height="fill_parent"
  2319.         android:gravity="center"
  2320.         android:textSize="22dp"
  2321.         tools:ignore="MissingConstraints" />
  2322. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2323. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2324.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2325.     xmlns:tools="http://schemas.android.com/tools"
  2326.     android:layout_width="match_parent"
  2327.     android:layout_height="match_parent"
  2328.     tools:context=".Welcome">
  2329.     <TextView
  2330.         android:id="@+id/mainword"
  2331.         android:layout_width="fill_parent"
  2332.         android:layout_height="fill_parent"
  2333.         android:gravity="center"
  2334.         android:textSize="22dp"
  2335.         tools:ignore="MissingConstraints" />
  2336. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2337. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2338.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2339.     xmlns:tools="http://schemas.android.com/tools"
  2340.     android:layout_width="match_parent"
  2341.     android:layout_height="match_parent"
  2342.     tools:context=".Welcome">
  2343.     <TextView
  2344.         android:id="@+id/mainword"
  2345.         android:layout_width="fill_parent"
  2346.         android:layout_height="fill_parent"
  2347.         android:gravity="center"
  2348.         android:textSize="22dp"
  2349.         tools:ignore="MissingConstraints" />
  2350. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2351. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2352.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2353.     xmlns:tools="http://schemas.android.com/tools"
  2354.     android:layout_width="match_parent"
  2355.     android:layout_height="match_parent"
  2356.     tools:context=".Welcome">
  2357.     <TextView
  2358.         android:id="@+id/mainword"
  2359.         android:layout_width="fill_parent"
  2360.         android:layout_height="fill_parent"
  2361.         android:gravity="center"
  2362.         android:textSize="22dp"
  2363.         tools:ignore="MissingConstraints" />
  2364. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2365. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2366.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2367.     xmlns:tools="http://schemas.android.com/tools"
  2368.     android:layout_width="match_parent"
  2369.     android:layout_height="match_parent"
  2370.     tools:context=".Welcome">
  2371.     <TextView
  2372.         android:id="@+id/mainword"
  2373.         android:layout_width="fill_parent"
  2374.         android:layout_height="fill_parent"
  2375.         android:gravity="center"
  2376.         android:textSize="22dp"
  2377.         tools:ignore="MissingConstraints" />
  2378. </androidx.constraintlayout.widget.ConstraintLayout>db.insert("logins",null,cv);
  2379. <?xml version="1.0" encoding="utf-8"?>
  2380. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2381.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2382.     xmlns:tools="http://schemas.android.com/tools"
  2383.     android:layout_width="match_parent"
  2384.     android:layout_height="match_parent"
  2385.     tools:context=".Welcome">
  2386.     <TextView
  2387.         android:id="@+id/mainword"
  2388.         android:layout_width="fill_parent"
  2389.         android:layout_height="fill_parent"
  2390.         android:gravity="center"
  2391.         android:textSize="22dp"
  2392.         tools:ignore="MissingConstraints" />
  2393. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2394. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2395.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2396.     xmlns:tools="http://schemas.android.com/tools"
  2397.     android:layout_width="match_parent"
  2398.     android:layout_height="match_parent"
  2399.     tools:context=".Welcome">
  2400.     <TextView
  2401.         android:id="@+id/mainword"
  2402.         android:layout_width="fill_parent"
  2403.         android:layout_height="fill_parent"
  2404.         android:gravity="center"
  2405.         android:textSize="22dp"
  2406.         tools:ignore="MissingConstraints" />
  2407. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2408. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2409.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2410.     xmlns:tools="http://schemas.android.com/tools"
  2411.     android:layout_width="match_parent"
  2412.     android:layout_height="match_parent"
  2413.     tools:context=".Welcome">
  2414.     <TextView
  2415.         android:id="@+id/mainword"
  2416.         android:layout_width="fill_parent"
  2417.         android:layout_height="fill_parent"
  2418.         android:gravity="center"
  2419.         android:textSize="22dp"
  2420.         tools:ignore="MissingConstraints" />
  2421. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2422. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2423.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2424.     xmlns:tools="http://schemas.android.com/tools"
  2425.     android:layout_width="match_parent"
  2426.     android:layout_height="match_parent"
  2427.     tools:context=".Welcome">
  2428.     <TextView
  2429.         android:id="@+id/mainword"
  2430.         android:layout_width="fill_parent"
  2431.         android:layout_height="fill_parent"
  2432.         android:gravity="center"
  2433.         android:textSize="22dp"
  2434.         tools:ignore="MissingConstraints" />
  2435. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2436. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2437.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2438.     xmlns:tools="http://schemas.android.com/tools"
  2439.     android:layout_width="match_parent"
  2440.     android:layout_height="match_parent"
  2441.     tools:context=".Welcome">
  2442.     <TextView
  2443.         android:id="@+id/mainword"
  2444.         android:layout_width="fill_parent"
  2445.         android:layout_height="fill_parent"
  2446.         android:gravity="center"
  2447.         android:textSize="22dp"
  2448.         tools:ignore="MissingConstraints" />
  2449. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2450. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2451.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2452.     xmlns:tools="http://schemas.android.com/tools"
  2453.     android:layout_width="match_parent"
  2454.     android:layout_height="match_parent"
  2455.     tools:context=".Welcome">
  2456.     <TextView
  2457.         android:id="@+id/mainword"
  2458.         android:layout_width="fill_parent"
  2459.         android:layout_height="fill_parent"
  2460.         android:gravity="center"
  2461.         android:textSize="22dp"
  2462.         tools:ignore="MissingConstraints" />
  2463. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2464. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2465.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2466.     xmlns:tools="http://schemas.android.com/tools"
  2467.     android:layout_width="match_parent"
  2468.     android:layout_height="match_parent"
  2469.     tools:context=".Welcome">
  2470.     <TextView
  2471.         android:id="@+id/mainword"
  2472.         android:layout_width="fill_parent"
  2473.         android:layout_height="fill_parent"
  2474.         android:gravity="center"
  2475.         android:textSize="22dp"
  2476.         tools:ignore="MissingConstraints" />
  2477. </androidx.constraintlayout.widget.ConstraintLayout>SharedPreferences.Editor editor = sp.edit();
  2478. <?xml version="1.0" encoding="utf-8"?>
  2479. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2480.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2481.     xmlns:tools="http://schemas.android.com/tools"
  2482.     android:layout_width="match_parent"
  2483.     android:layout_height="match_parent"
  2484.     tools:context=".Welcome">
  2485.     <TextView
  2486.         android:id="@+id/mainword"
  2487.         android:layout_width="fill_parent"
  2488.         android:layout_height="fill_parent"
  2489.         android:gravity="center"
  2490.         android:textSize="22dp"
  2491.         tools:ignore="MissingConstraints" />
  2492. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2493. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2494.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2495.     xmlns:tools="http://schemas.android.com/tools"
  2496.     android:layout_width="match_parent"
  2497.     android:layout_height="match_parent"
  2498.     tools:context=".Welcome">
  2499.     <TextView
  2500.         android:id="@+id/mainword"
  2501.         android:layout_width="fill_parent"
  2502.         android:layout_height="fill_parent"
  2503.         android:gravity="center"
  2504.         android:textSize="22dp"
  2505.         tools:ignore="MissingConstraints" />
  2506. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2507. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2508.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2509.     xmlns:tools="http://schemas.android.com/tools"
  2510.     android:layout_width="match_parent"
  2511.     android:layout_height="match_parent"
  2512.     tools:context=".Welcome">
  2513.     <TextView
  2514.         android:id="@+id/mainword"
  2515.         android:layout_width="fill_parent"
  2516.         android:layout_height="fill_parent"
  2517.         android:gravity="center"
  2518.         android:textSize="22dp"
  2519.         tools:ignore="MissingConstraints" />
  2520. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2521. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2522.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2523.     xmlns:tools="http://schemas.android.com/tools"
  2524.     android:layout_width="match_parent"
  2525.     android:layout_height="match_parent"
  2526.     tools:context=".Welcome">
  2527.     <TextView
  2528.         android:id="@+id/mainword"
  2529.         android:layout_width="fill_parent"
  2530.         android:layout_height="fill_parent"
  2531.         android:gravity="center"
  2532.         android:textSize="22dp"
  2533.         tools:ignore="MissingConstraints" />
  2534. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2535. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2536.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2537.     xmlns:tools="http://schemas.android.com/tools"
  2538.     android:layout_width="match_parent"
  2539.     android:layout_height="match_parent"
  2540.     tools:context=".Welcome">
  2541.     <TextView
  2542.         android:id="@+id/mainword"
  2543.         android:layout_width="fill_parent"
  2544.         android:layout_height="fill_parent"
  2545.         android:gravity="center"
  2546.         android:textSize="22dp"
  2547.         tools:ignore="MissingConstraints" />
  2548. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2549. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2550.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2551.     xmlns:tools="http://schemas.android.com/tools"
  2552.     android:layout_width="match_parent"
  2553.     android:layout_height="match_parent"
  2554.     tools:context=".Welcome">
  2555.     <TextView
  2556.         android:id="@+id/mainword"
  2557.         android:layout_width="fill_parent"
  2558.         android:layout_height="fill_parent"
  2559.         android:gravity="center"
  2560.         android:textSize="22dp"
  2561.         tools:ignore="MissingConstraints" />
  2562. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2563. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2564.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2565.     xmlns:tools="http://schemas.android.com/tools"
  2566.     android:layout_width="match_parent"
  2567.     android:layout_height="match_parent"
  2568.     tools:context=".Welcome">
  2569.     <TextView
  2570.         android:id="@+id/mainword"
  2571.         android:layout_width="fill_parent"
  2572.         android:layout_height="fill_parent"
  2573.         android:gravity="center"
  2574.         android:textSize="22dp"
  2575.         tools:ignore="MissingConstraints" />
  2576. </androidx.constraintlayout.widget.ConstraintLayout>editor.putString("usname",name);
  2577. <?xml version="1.0" encoding="utf-8"?>
  2578. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2579.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2580.     xmlns:tools="http://schemas.android.com/tools"
  2581.     android:layout_width="match_parent"
  2582.     android:layout_height="match_parent"
  2583.     tools:context=".Welcome">
  2584.     <TextView
  2585.         android:id="@+id/mainword"
  2586.         android:layout_width="fill_parent"
  2587.         android:layout_height="fill_parent"
  2588.         android:gravity="center"
  2589.         android:textSize="22dp"
  2590.         tools:ignore="MissingConstraints" />
  2591. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2592. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2593.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2594.     xmlns:tools="http://schemas.android.com/tools"
  2595.     android:layout_width="match_parent"
  2596.     android:layout_height="match_parent"
  2597.     tools:context=".Welcome">
  2598.     <TextView
  2599.         android:id="@+id/mainword"
  2600.         android:layout_width="fill_parent"
  2601.         android:layout_height="fill_parent"
  2602.         android:gravity="center"
  2603.         android:textSize="22dp"
  2604.         tools:ignore="MissingConstraints" />
  2605. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2606. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2607.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2608.     xmlns:tools="http://schemas.android.com/tools"
  2609.     android:layout_width="match_parent"
  2610.     android:layout_height="match_parent"
  2611.     tools:context=".Welcome">
  2612.     <TextView
  2613.         android:id="@+id/mainword"
  2614.         android:layout_width="fill_parent"
  2615.         android:layout_height="fill_parent"
  2616.         android:gravity="center"
  2617.         android:textSize="22dp"
  2618.         tools:ignore="MissingConstraints" />
  2619. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2620. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2621.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2622.     xmlns:tools="http://schemas.android.com/tools"
  2623.     android:layout_width="match_parent"
  2624.     android:layout_height="match_parent"
  2625.     tools:context=".Welcome">
  2626.     <TextView
  2627.         android:id="@+id/mainword"
  2628.         android:layout_width="fill_parent"
  2629.         android:layout_height="fill_parent"
  2630.         android:gravity="center"
  2631.         android:textSize="22dp"
  2632.         tools:ignore="MissingConstraints" />
  2633. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2634. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2635.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2636.     xmlns:tools="http://schemas.android.com/tools"
  2637.     android:layout_width="match_parent"
  2638.     android:layout_height="match_parent"
  2639.     tools:context=".Welcome">
  2640.     <TextView
  2641.         android:id="@+id/mainword"
  2642.         android:layout_width="fill_parent"
  2643.         android:layout_height="fill_parent"
  2644.         android:gravity="center"
  2645.         android:textSize="22dp"
  2646.         tools:ignore="MissingConstraints" />
  2647. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2648. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2649.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2650.     xmlns:tools="http://schemas.android.com/tools"
  2651.     android:layout_width="match_parent"
  2652.     android:layout_height="match_parent"
  2653.     tools:context=".Welcome">
  2654.     <TextView
  2655.         android:id="@+id/mainword"
  2656.         android:layout_width="fill_parent"
  2657.         android:layout_height="fill_parent"
  2658.         android:gravity="center"
  2659.         android:textSize="22dp"
  2660.         tools:ignore="MissingConstraints" />
  2661. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2662. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2663.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2664.     xmlns:tools="http://schemas.android.com/tools"
  2665.     android:layout_width="match_parent"
  2666.     android:layout_height="match_parent"
  2667.     tools:context=".Welcome">
  2668.     <TextView
  2669.         android:id="@+id/mainword"
  2670.         android:layout_width="fill_parent"
  2671.         android:layout_height="fill_parent"
  2672.         android:gravity="center"
  2673.         android:textSize="22dp"
  2674.         tools:ignore="MissingConstraints" />
  2675. </androidx.constraintlayout.widget.ConstraintLayout>editor.putString("uspwd",pwd01);
  2676. <?xml version="1.0" encoding="utf-8"?>
  2677. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2678.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2679.     xmlns:tools="http://schemas.android.com/tools"
  2680.     android:layout_width="match_parent"
  2681.     android:layout_height="match_parent"
  2682.     tools:context=".Welcome">
  2683.     <TextView
  2684.         android:id="@+id/mainword"
  2685.         android:layout_width="fill_parent"
  2686.         android:layout_height="fill_parent"
  2687.         android:gravity="center"
  2688.         android:textSize="22dp"
  2689.         tools:ignore="MissingConstraints" />
  2690. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2691. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2692.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2693.     xmlns:tools="http://schemas.android.com/tools"
  2694.     android:layout_width="match_parent"
  2695.     android:layout_height="match_parent"
  2696.     tools:context=".Welcome">
  2697.     <TextView
  2698.         android:id="@+id/mainword"
  2699.         android:layout_width="fill_parent"
  2700.         android:layout_height="fill_parent"
  2701.         android:gravity="center"
  2702.         android:textSize="22dp"
  2703.         tools:ignore="MissingConstraints" />
  2704. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2705. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2706.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2707.     xmlns:tools="http://schemas.android.com/tools"
  2708.     android:layout_width="match_parent"
  2709.     android:layout_height="match_parent"
  2710.     tools:context=".Welcome">
  2711.     <TextView
  2712.         android:id="@+id/mainword"
  2713.         android:layout_width="fill_parent"
  2714.         android:layout_height="fill_parent"
  2715.         android:gravity="center"
  2716.         android:textSize="22dp"
  2717.         tools:ignore="MissingConstraints" />
  2718. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2719. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2720.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2721.     xmlns:tools="http://schemas.android.com/tools"
  2722.     android:layout_width="match_parent"
  2723.     android:layout_height="match_parent"
  2724.     tools:context=".Welcome">
  2725.     <TextView
  2726.         android:id="@+id/mainword"
  2727.         android:layout_width="fill_parent"
  2728.         android:layout_height="fill_parent"
  2729.         android:gravity="center"
  2730.         android:textSize="22dp"
  2731.         tools:ignore="MissingConstraints" />
  2732. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2733. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2734.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2735.     xmlns:tools="http://schemas.android.com/tools"
  2736.     android:layout_width="match_parent"
  2737.     android:layout_height="match_parent"
  2738.     tools:context=".Welcome">
  2739.     <TextView
  2740.         android:id="@+id/mainword"
  2741.         android:layout_width="fill_parent"
  2742.         android:layout_height="fill_parent"
  2743.         android:gravity="center"
  2744.         android:textSize="22dp"
  2745.         tools:ignore="MissingConstraints" />
  2746. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2747. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2748.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2749.     xmlns:tools="http://schemas.android.com/tools"
  2750.     android:layout_width="match_parent"
  2751.     android:layout_height="match_parent"
  2752.     tools:context=".Welcome">
  2753.     <TextView
  2754.         android:id="@+id/mainword"
  2755.         android:layout_width="fill_parent"
  2756.         android:layout_height="fill_parent"
  2757.         android:gravity="center"
  2758.         android:textSize="22dp"
  2759.         tools:ignore="MissingConstraints" />
  2760. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2761. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2762.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2763.     xmlns:tools="http://schemas.android.com/tools"
  2764.     android:layout_width="match_parent"
  2765.     android:layout_height="match_parent"
  2766.     tools:context=".Welcome">
  2767.     <TextView
  2768.         android:id="@+id/mainword"
  2769.         android:layout_width="fill_parent"
  2770.         android:layout_height="fill_parent"
  2771.         android:gravity="center"
  2772.         android:textSize="22dp"
  2773.         tools:ignore="MissingConstraints" />
  2774. </androidx.constraintlayout.widget.ConstraintLayout>editor.commit();
  2775. <?xml version="1.0" encoding="utf-8"?>
  2776. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2777.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2778.     xmlns:tools="http://schemas.android.com/tools"
  2779.     android:layout_width="match_parent"
  2780.     android:layout_height="match_parent"
  2781.     tools:context=".Welcome">
  2782.     <TextView
  2783.         android:id="@+id/mainword"
  2784.         android:layout_width="fill_parent"
  2785.         android:layout_height="fill_parent"
  2786.         android:gravity="center"
  2787.         android:textSize="22dp"
  2788.         tools:ignore="MissingConstraints" />
  2789. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2790. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2791.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2792.     xmlns:tools="http://schemas.android.com/tools"
  2793.     android:layout_width="match_parent"
  2794.     android:layout_height="match_parent"
  2795.     tools:context=".Welcome">
  2796.     <TextView
  2797.         android:id="@+id/mainword"
  2798.         android:layout_width="fill_parent"
  2799.         android:layout_height="fill_parent"
  2800.         android:gravity="center"
  2801.         android:textSize="22dp"
  2802.         tools:ignore="MissingConstraints" />
  2803. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2804. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2805.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2806.     xmlns:tools="http://schemas.android.com/tools"
  2807.     android:layout_width="match_parent"
  2808.     android:layout_height="match_parent"
  2809.     tools:context=".Welcome">
  2810.     <TextView
  2811.         android:id="@+id/mainword"
  2812.         android:layout_width="fill_parent"
  2813.         android:layout_height="fill_parent"
  2814.         android:gravity="center"
  2815.         android:textSize="22dp"
  2816.         tools:ignore="MissingConstraints" />
  2817. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2818. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2819.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2820.     xmlns:tools="http://schemas.android.com/tools"
  2821.     android:layout_width="match_parent"
  2822.     android:layout_height="match_parent"
  2823.     tools:context=".Welcome">
  2824.     <TextView
  2825.         android:id="@+id/mainword"
  2826.         android:layout_width="fill_parent"
  2827.         android:layout_height="fill_parent"
  2828.         android:gravity="center"
  2829.         android:textSize="22dp"
  2830.         tools:ignore="MissingConstraints" />
  2831. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2832. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2833.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2834.     xmlns:tools="http://schemas.android.com/tools"
  2835.     android:layout_width="match_parent"
  2836.     android:layout_height="match_parent"
  2837.     tools:context=".Welcome">
  2838.     <TextView
  2839.         android:id="@+id/mainword"
  2840.         android:layout_width="fill_parent"
  2841.         android:layout_height="fill_parent"
  2842.         android:gravity="center"
  2843.         android:textSize="22dp"
  2844.         tools:ignore="MissingConstraints" />
  2845. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2846. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2847.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2848.     xmlns:tools="http://schemas.android.com/tools"
  2849.     android:layout_width="match_parent"
  2850.     android:layout_height="match_parent"
  2851.     tools:context=".Welcome">
  2852.     <TextView
  2853.         android:id="@+id/mainword"
  2854.         android:layout_width="fill_parent"
  2855.         android:layout_height="fill_parent"
  2856.         android:gravity="center"
  2857.         android:textSize="22dp"
  2858.         tools:ignore="MissingConstraints" />
  2859. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2860. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2861.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2862.     xmlns:tools="http://schemas.android.com/tools"
  2863.     android:layout_width="match_parent"
  2864.     android:layout_height="match_parent"
  2865.     tools:context=".Welcome">
  2866.     <TextView
  2867.         android:id="@+id/mainword"
  2868.         android:layout_width="fill_parent"
  2869.         android:layout_height="fill_parent"
  2870.         android:gravity="center"
  2871.         android:textSize="22dp"
  2872.         tools:ignore="MissingConstraints" />
  2873. </androidx.constraintlayout.widget.ConstraintLayout>Intent intent = new Intent();
  2874. <?xml version="1.0" encoding="utf-8"?>
  2875. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2876.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2877.     xmlns:tools="http://schemas.android.com/tools"
  2878.     android:layout_width="match_parent"
  2879.     android:layout_height="match_parent"
  2880.     tools:context=".Welcome">
  2881.     <TextView
  2882.         android:id="@+id/mainword"
  2883.         android:layout_width="fill_parent"
  2884.         android:layout_height="fill_parent"
  2885.         android:gravity="center"
  2886.         android:textSize="22dp"
  2887.         tools:ignore="MissingConstraints" />
  2888. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2889. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2890.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2891.     xmlns:tools="http://schemas.android.com/tools"
  2892.     android:layout_width="match_parent"
  2893.     android:layout_height="match_parent"
  2894.     tools:context=".Welcome">
  2895.     <TextView
  2896.         android:id="@+id/mainword"
  2897.         android:layout_width="fill_parent"
  2898.         android:layout_height="fill_parent"
  2899.         android:gravity="center"
  2900.         android:textSize="22dp"
  2901.         tools:ignore="MissingConstraints" />
  2902. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2903. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2904.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2905.     xmlns:tools="http://schemas.android.com/tools"
  2906.     android:layout_width="match_parent"
  2907.     android:layout_height="match_parent"
  2908.     tools:context=".Welcome">
  2909.     <TextView
  2910.         android:id="@+id/mainword"
  2911.         android:layout_width="fill_parent"
  2912.         android:layout_height="fill_parent"
  2913.         android:gravity="center"
  2914.         android:textSize="22dp"
  2915.         tools:ignore="MissingConstraints" />
  2916. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2917. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2918.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2919.     xmlns:tools="http://schemas.android.com/tools"
  2920.     android:layout_width="match_parent"
  2921.     android:layout_height="match_parent"
  2922.     tools:context=".Welcome">
  2923.     <TextView
  2924.         android:id="@+id/mainword"
  2925.         android:layout_width="fill_parent"
  2926.         android:layout_height="fill_parent"
  2927.         android:gravity="center"
  2928.         android:textSize="22dp"
  2929.         tools:ignore="MissingConstraints" />
  2930. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2931. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2932.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2933.     xmlns:tools="http://schemas.android.com/tools"
  2934.     android:layout_width="match_parent"
  2935.     android:layout_height="match_parent"
  2936.     tools:context=".Welcome">
  2937.     <TextView
  2938.         android:id="@+id/mainword"
  2939.         android:layout_width="fill_parent"
  2940.         android:layout_height="fill_parent"
  2941.         android:gravity="center"
  2942.         android:textSize="22dp"
  2943.         tools:ignore="MissingConstraints" />
  2944. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2945. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2946.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2947.     xmlns:tools="http://schemas.android.com/tools"
  2948.     android:layout_width="match_parent"
  2949.     android:layout_height="match_parent"
  2950.     tools:context=".Welcome">
  2951.     <TextView
  2952.         android:id="@+id/mainword"
  2953.         android:layout_width="fill_parent"
  2954.         android:layout_height="fill_parent"
  2955.         android:gravity="center"
  2956.         android:textSize="22dp"
  2957.         tools:ignore="MissingConstraints" />
  2958. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  2959. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2960.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2961.     xmlns:tools="http://schemas.android.com/tools"
  2962.     android:layout_width="match_parent"
  2963.     android:layout_height="match_parent"
  2964.     tools:context=".Welcome">
  2965.     <TextView
  2966.         android:id="@+id/mainword"
  2967.         android:layout_width="fill_parent"
  2968.         android:layout_height="fill_parent"
  2969.         android:gravity="center"
  2970.         android:textSize="22dp"
  2971.         tools:ignore="MissingConstraints" />
  2972. </androidx.constraintlayout.widget.ConstraintLayout>intent.setClass(Register.this,MainActivity.class);<?xml version="1.0" encoding="utf-8"?>
  2973. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2974.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2975.     xmlns:tools="http://schemas.android.com/tools"
  2976.     android:layout_width="match_parent"
  2977.     android:layout_height="match_parent"
  2978.     tools:context=".Welcome">
  2979.     <TextView
  2980.         android:id="@+id/mainword"
  2981.         android:layout_width="fill_parent"
  2982.         android:layout_height="fill_parent"
  2983.         android:gravity="center"
  2984.         android:textSize="22dp"
  2985.         tools:ignore="MissingConstraints" />
  2986. </androidx.constraintlayout.widget.ConstraintLayout>  //跳转到登录页面
  2987. <?xml version="1.0" encoding="utf-8"?>
  2988. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  2989.     xmlns:app="http://schemas.android.com/apk/res-auto"
  2990.     xmlns:tools="http://schemas.android.com/tools"
  2991.     android:layout_width="match_parent"
  2992.     android:layout_height="match_parent"
  2993.     tools:context=".Welcome">
  2994.     <TextView
  2995.         android:id="@+id/mainword"
  2996.         android:layout_width="fill_parent"
  2997.         android:layout_height="fill_parent"
  2998.         android:gravity="center"
  2999.         android:textSize="22dp"
  3000.         tools:ignore="MissingConstraints" />
  3001. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3002. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3003.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3004.     xmlns:tools="http://schemas.android.com/tools"
  3005.     android:layout_width="match_parent"
  3006.     android:layout_height="match_parent"
  3007.     tools:context=".Welcome">
  3008.     <TextView
  3009.         android:id="@+id/mainword"
  3010.         android:layout_width="fill_parent"
  3011.         android:layout_height="fill_parent"
  3012.         android:gravity="center"
  3013.         android:textSize="22dp"
  3014.         tools:ignore="MissingConstraints" />
  3015. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3016. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3017.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3018.     xmlns:tools="http://schemas.android.com/tools"
  3019.     android:layout_width="match_parent"
  3020.     android:layout_height="match_parent"
  3021.     tools:context=".Welcome">
  3022.     <TextView
  3023.         android:id="@+id/mainword"
  3024.         android:layout_width="fill_parent"
  3025.         android:layout_height="fill_parent"
  3026.         android:gravity="center"
  3027.         android:textSize="22dp"
  3028.         tools:ignore="MissingConstraints" />
  3029. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3030. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3031.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3032.     xmlns:tools="http://schemas.android.com/tools"
  3033.     android:layout_width="match_parent"
  3034.     android:layout_height="match_parent"
  3035.     tools:context=".Welcome">
  3036.     <TextView
  3037.         android:id="@+id/mainword"
  3038.         android:layout_width="fill_parent"
  3039.         android:layout_height="fill_parent"
  3040.         android:gravity="center"
  3041.         android:textSize="22dp"
  3042.         tools:ignore="MissingConstraints" />
  3043. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3044. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3045.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3046.     xmlns:tools="http://schemas.android.com/tools"
  3047.     android:layout_width="match_parent"
  3048.     android:layout_height="match_parent"
  3049.     tools:context=".Welcome">
  3050.     <TextView
  3051.         android:id="@+id/mainword"
  3052.         android:layout_width="fill_parent"
  3053.         android:layout_height="fill_parent"
  3054.         android:gravity="center"
  3055.         android:textSize="22dp"
  3056.         tools:ignore="MissingConstraints" />
  3057. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3058. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3059.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3060.     xmlns:tools="http://schemas.android.com/tools"
  3061.     android:layout_width="match_parent"
  3062.     android:layout_height="match_parent"
  3063.     tools:context=".Welcome">
  3064.     <TextView
  3065.         android:id="@+id/mainword"
  3066.         android:layout_width="fill_parent"
  3067.         android:layout_height="fill_parent"
  3068.         android:gravity="center"
  3069.         android:textSize="22dp"
  3070.         tools:ignore="MissingConstraints" />
  3071. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3072. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3073.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3074.     xmlns:tools="http://schemas.android.com/tools"
  3075.     android:layout_width="match_parent"
  3076.     android:layout_height="match_parent"
  3077.     tools:context=".Welcome">
  3078.     <TextView
  3079.         android:id="@+id/mainword"
  3080.         android:layout_width="fill_parent"
  3081.         android:layout_height="fill_parent"
  3082.         android:gravity="center"
  3083.         android:textSize="22dp"
  3084.         tools:ignore="MissingConstraints" />
  3085. </androidx.constraintlayout.widget.ConstraintLayout>startActivity(intent);
  3086. <?xml version="1.0" encoding="utf-8"?>
  3087. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3088.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3089.     xmlns:tools="http://schemas.android.com/tools"
  3090.     android:layout_width="match_parent"
  3091.     android:layout_height="match_parent"
  3092.     tools:context=".Welcome">
  3093.     <TextView
  3094.         android:id="@+id/mainword"
  3095.         android:layout_width="fill_parent"
  3096.         android:layout_height="fill_parent"
  3097.         android:gravity="center"
  3098.         android:textSize="22dp"
  3099.         tools:ignore="MissingConstraints" />
  3100. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3101. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3102.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3103.     xmlns:tools="http://schemas.android.com/tools"
  3104.     android:layout_width="match_parent"
  3105.     android:layout_height="match_parent"
  3106.     tools:context=".Welcome">
  3107.     <TextView
  3108.         android:id="@+id/mainword"
  3109.         android:layout_width="fill_parent"
  3110.         android:layout_height="fill_parent"
  3111.         android:gravity="center"
  3112.         android:textSize="22dp"
  3113.         tools:ignore="MissingConstraints" />
  3114. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3115. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3116.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3117.     xmlns:tools="http://schemas.android.com/tools"
  3118.     android:layout_width="match_parent"
  3119.     android:layout_height="match_parent"
  3120.     tools:context=".Welcome">
  3121.     <TextView
  3122.         android:id="@+id/mainword"
  3123.         android:layout_width="fill_parent"
  3124.         android:layout_height="fill_parent"
  3125.         android:gravity="center"
  3126.         android:textSize="22dp"
  3127.         tools:ignore="MissingConstraints" />
  3128. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3129. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3130.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3131.     xmlns:tools="http://schemas.android.com/tools"
  3132.     android:layout_width="match_parent"
  3133.     android:layout_height="match_parent"
  3134.     tools:context=".Welcome">
  3135.     <TextView
  3136.         android:id="@+id/mainword"
  3137.         android:layout_width="fill_parent"
  3138.         android:layout_height="fill_parent"
  3139.         android:gravity="center"
  3140.         android:textSize="22dp"
  3141.         tools:ignore="MissingConstraints" />
  3142. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3143. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3144.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3145.     xmlns:tools="http://schemas.android.com/tools"
  3146.     android:layout_width="match_parent"
  3147.     android:layout_height="match_parent"
  3148.     tools:context=".Welcome">
  3149.     <TextView
  3150.         android:id="@+id/mainword"
  3151.         android:layout_width="fill_parent"
  3152.         android:layout_height="fill_parent"
  3153.         android:gravity="center"
  3154.         android:textSize="22dp"
  3155.         tools:ignore="MissingConstraints" />
  3156. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3157. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3158.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3159.     xmlns:tools="http://schemas.android.com/tools"
  3160.     android:layout_width="match_parent"
  3161.     android:layout_height="match_parent"
  3162.     tools:context=".Welcome">
  3163.     <TextView
  3164.         android:id="@+id/mainword"
  3165.         android:layout_width="fill_parent"
  3166.         android:layout_height="fill_parent"
  3167.         android:gravity="center"
  3168.         android:textSize="22dp"
  3169.         tools:ignore="MissingConstraints" />
  3170. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3171. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3172.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3173.     xmlns:tools="http://schemas.android.com/tools"
  3174.     android:layout_width="match_parent"
  3175.     android:layout_height="match_parent"
  3176.     tools:context=".Welcome">
  3177.     <TextView
  3178.         android:id="@+id/mainword"
  3179.         android:layout_width="fill_parent"
  3180.         android:layout_height="fill_parent"
  3181.         android:gravity="center"
  3182.         android:textSize="22dp"
  3183.         tools:ignore="MissingConstraints" />
  3184. </androidx.constraintlayout.widget.ConstraintLayout>Toast.makeText(Register.this, "注册成功!", Toast.LENGTH_LONG).show();
  3185. <?xml version="1.0" encoding="utf-8"?>
  3186. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3187.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3188.     xmlns:tools="http://schemas.android.com/tools"
  3189.     android:layout_width="match_parent"
  3190.     android:layout_height="match_parent"
  3191.     tools:context=".Welcome">
  3192.     <TextView
  3193.         android:id="@+id/mainword"
  3194.         android:layout_width="fill_parent"
  3195.         android:layout_height="fill_parent"
  3196.         android:gravity="center"
  3197.         android:textSize="22dp"
  3198.         tools:ignore="MissingConstraints" />
  3199. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3200. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3201.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3202.     xmlns:tools="http://schemas.android.com/tools"
  3203.     android:layout_width="match_parent"
  3204.     android:layout_height="match_parent"
  3205.     tools:context=".Welcome">
  3206.     <TextView
  3207.         android:id="@+id/mainword"
  3208.         android:layout_width="fill_parent"
  3209.         android:layout_height="fill_parent"
  3210.         android:gravity="center"
  3211.         android:textSize="22dp"
  3212.         tools:ignore="MissingConstraints" />
  3213. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3214. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3215.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3216.     xmlns:tools="http://schemas.android.com/tools"
  3217.     android:layout_width="match_parent"
  3218.     android:layout_height="match_parent"
  3219.     tools:context=".Welcome">
  3220.     <TextView
  3221.         android:id="@+id/mainword"
  3222.         android:layout_width="fill_parent"
  3223.         android:layout_height="fill_parent"
  3224.         android:gravity="center"
  3225.         android:textSize="22dp"
  3226.         tools:ignore="MissingConstraints" />
  3227. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3228. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3229.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3230.     xmlns:tools="http://schemas.android.com/tools"
  3231.     android:layout_width="match_parent"
  3232.     android:layout_height="match_parent"
  3233.     tools:context=".Welcome">
  3234.     <TextView
  3235.         android:id="@+id/mainword"
  3236.         android:layout_width="fill_parent"
  3237.         android:layout_height="fill_parent"
  3238.         android:gravity="center"
  3239.         android:textSize="22dp"
  3240.         tools:ignore="MissingConstraints" />
  3241. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3242. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3243.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3244.     xmlns:tools="http://schemas.android.com/tools"
  3245.     android:layout_width="match_parent"
  3246.     android:layout_height="match_parent"
  3247.     tools:context=".Welcome">
  3248.     <TextView
  3249.         android:id="@+id/mainword"
  3250.         android:layout_width="fill_parent"
  3251.         android:layout_height="fill_parent"
  3252.         android:gravity="center"
  3253.         android:textSize="22dp"
  3254.         tools:ignore="MissingConstraints" />
  3255. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3256. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3257.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3258.     xmlns:tools="http://schemas.android.com/tools"
  3259.     android:layout_width="match_parent"
  3260.     android:layout_height="match_parent"
  3261.     tools:context=".Welcome">
  3262.     <TextView
  3263.         android:id="@+id/mainword"
  3264.         android:layout_width="fill_parent"
  3265.         android:layout_height="fill_parent"
  3266.         android:gravity="center"
  3267.         android:textSize="22dp"
  3268.         tools:ignore="MissingConstraints" />
  3269. </androidx.constraintlayout.widget.ConstraintLayout>}
  3270. <?xml version="1.0" encoding="utf-8"?>
  3271. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3272.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3273.     xmlns:tools="http://schemas.android.com/tools"
  3274.     android:layout_width="match_parent"
  3275.     android:layout_height="match_parent"
  3276.     tools:context=".Welcome">
  3277.     <TextView
  3278.         android:id="@+id/mainword"
  3279.         android:layout_width="fill_parent"
  3280.         android:layout_height="fill_parent"
  3281.         android:gravity="center"
  3282.         android:textSize="22dp"
  3283.         tools:ignore="MissingConstraints" />
  3284. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3285. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3286.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3287.     xmlns:tools="http://schemas.android.com/tools"
  3288.     android:layout_width="match_parent"
  3289.     android:layout_height="match_parent"
  3290.     tools:context=".Welcome">
  3291.     <TextView
  3292.         android:id="@+id/mainword"
  3293.         android:layout_width="fill_parent"
  3294.         android:layout_height="fill_parent"
  3295.         android:gravity="center"
  3296.         android:textSize="22dp"
  3297.         tools:ignore="MissingConstraints" />
  3298. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3299. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3300.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3301.     xmlns:tools="http://schemas.android.com/tools"
  3302.     android:layout_width="match_parent"
  3303.     android:layout_height="match_parent"
  3304.     tools:context=".Welcome">
  3305.     <TextView
  3306.         android:id="@+id/mainword"
  3307.         android:layout_width="fill_parent"
  3308.         android:layout_height="fill_parent"
  3309.         android:gravity="center"
  3310.         android:textSize="22dp"
  3311.         tools:ignore="MissingConstraints" />
  3312. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3313. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3314.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3315.     xmlns:tools="http://schemas.android.com/tools"
  3316.     android:layout_width="match_parent"
  3317.     android:layout_height="match_parent"
  3318.     tools:context=".Welcome">
  3319.     <TextView
  3320.         android:id="@+id/mainword"
  3321.         android:layout_width="fill_parent"
  3322.         android:layout_height="fill_parent"
  3323.         android:gravity="center"
  3324.         android:textSize="22dp"
  3325.         tools:ignore="MissingConstraints" />
  3326. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3327. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3328.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3329.     xmlns:tools="http://schemas.android.com/tools"
  3330.     android:layout_width="match_parent"
  3331.     android:layout_height="match_parent"
  3332.     tools:context=".Welcome">
  3333.     <TextView
  3334.         android:id="@+id/mainword"
  3335.         android:layout_width="fill_parent"
  3336.         android:layout_height="fill_parent"
  3337.         android:gravity="center"
  3338.         android:textSize="22dp"
  3339.         tools:ignore="MissingConstraints" />
  3340. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3341. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3342.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3343.     xmlns:tools="http://schemas.android.com/tools"
  3344.     android:layout_width="match_parent"
  3345.     android:layout_height="match_parent"
  3346.     tools:context=".Welcome">
  3347.     <TextView
  3348.         android:id="@+id/mainword"
  3349.         android:layout_width="fill_parent"
  3350.         android:layout_height="fill_parent"
  3351.         android:gravity="center"
  3352.         android:textSize="22dp"
  3353.         tools:ignore="MissingConstraints" />
  3354. </androidx.constraintlayout.widget.ConstraintLayout>else {
  3355. <?xml version="1.0" encoding="utf-8"?>
  3356. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3357.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3358.     xmlns:tools="http://schemas.android.com/tools"
  3359.     android:layout_width="match_parent"
  3360.     android:layout_height="match_parent"
  3361.     tools:context=".Welcome">
  3362.     <TextView
  3363.         android:id="@+id/mainword"
  3364.         android:layout_width="fill_parent"
  3365.         android:layout_height="fill_parent"
  3366.         android:gravity="center"
  3367.         android:textSize="22dp"
  3368.         tools:ignore="MissingConstraints" />
  3369. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3370. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3371.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3372.     xmlns:tools="http://schemas.android.com/tools"
  3373.     android:layout_width="match_parent"
  3374.     android:layout_height="match_parent"
  3375.     tools:context=".Welcome">
  3376.     <TextView
  3377.         android:id="@+id/mainword"
  3378.         android:layout_width="fill_parent"
  3379.         android:layout_height="fill_parent"
  3380.         android:gravity="center"
  3381.         android:textSize="22dp"
  3382.         tools:ignore="MissingConstraints" />
  3383. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3384. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3385.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3386.     xmlns:tools="http://schemas.android.com/tools"
  3387.     android:layout_width="match_parent"
  3388.     android:layout_height="match_parent"
  3389.     tools:context=".Welcome">
  3390.     <TextView
  3391.         android:id="@+id/mainword"
  3392.         android:layout_width="fill_parent"
  3393.         android:layout_height="fill_parent"
  3394.         android:gravity="center"
  3395.         android:textSize="22dp"
  3396.         tools:ignore="MissingConstraints" />
  3397. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3398. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3399.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3400.     xmlns:tools="http://schemas.android.com/tools"
  3401.     android:layout_width="match_parent"
  3402.     android:layout_height="match_parent"
  3403.     tools:context=".Welcome">
  3404.     <TextView
  3405.         android:id="@+id/mainword"
  3406.         android:layout_width="fill_parent"
  3407.         android:layout_height="fill_parent"
  3408.         android:gravity="center"
  3409.         android:textSize="22dp"
  3410.         tools:ignore="MissingConstraints" />
  3411. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3412. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3413.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3414.     xmlns:tools="http://schemas.android.com/tools"
  3415.     android:layout_width="match_parent"
  3416.     android:layout_height="match_parent"
  3417.     tools:context=".Welcome">
  3418.     <TextView
  3419.         android:id="@+id/mainword"
  3420.         android:layout_width="fill_parent"
  3421.         android:layout_height="fill_parent"
  3422.         android:gravity="center"
  3423.         android:textSize="22dp"
  3424.         tools:ignore="MissingConstraints" />
  3425. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3426. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3427.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3428.     xmlns:tools="http://schemas.android.com/tools"
  3429.     android:layout_width="match_parent"
  3430.     android:layout_height="match_parent"
  3431.     tools:context=".Welcome">
  3432.     <TextView
  3433.         android:id="@+id/mainword"
  3434.         android:layout_width="fill_parent"
  3435.         android:layout_height="fill_parent"
  3436.         android:gravity="center"
  3437.         android:textSize="22dp"
  3438.         tools:ignore="MissingConstraints" />
  3439. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3440. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3441.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3442.     xmlns:tools="http://schemas.android.com/tools"
  3443.     android:layout_width="match_parent"
  3444.     android:layout_height="match_parent"
  3445.     tools:context=".Welcome">
  3446.     <TextView
  3447.         android:id="@+id/mainword"
  3448.         android:layout_width="fill_parent"
  3449.         android:layout_height="fill_parent"
  3450.         android:gravity="center"
  3451.         android:textSize="22dp"
  3452.         tools:ignore="MissingConstraints" />
  3453. </androidx.constraintlayout.widget.ConstraintLayout>Toast.makeText(Register.this, "密码不一致!", Toast.LENGTH_LONG).show();                        //提示密码不一致
  3454. <?xml version="1.0" encoding="utf-8"?>
  3455. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3456.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3457.     xmlns:tools="http://schemas.android.com/tools"
  3458.     android:layout_width="match_parent"
  3459.     android:layout_height="match_parent"
  3460.     tools:context=".Welcome">
  3461.     <TextView
  3462.         android:id="@+id/mainword"
  3463.         android:layout_width="fill_parent"
  3464.         android:layout_height="fill_parent"
  3465.         android:gravity="center"
  3466.         android:textSize="22dp"
  3467.         tools:ignore="MissingConstraints" />
  3468. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3469. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3470.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3471.     xmlns:tools="http://schemas.android.com/tools"
  3472.     android:layout_width="match_parent"
  3473.     android:layout_height="match_parent"
  3474.     tools:context=".Welcome">
  3475.     <TextView
  3476.         android:id="@+id/mainword"
  3477.         android:layout_width="fill_parent"
  3478.         android:layout_height="fill_parent"
  3479.         android:gravity="center"
  3480.         android:textSize="22dp"
  3481.         tools:ignore="MissingConstraints" />
  3482. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3483. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3484.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3485.     xmlns:tools="http://schemas.android.com/tools"
  3486.     android:layout_width="match_parent"
  3487.     android:layout_height="match_parent"
  3488.     tools:context=".Welcome">
  3489.     <TextView
  3490.         android:id="@+id/mainword"
  3491.         android:layout_width="fill_parent"
  3492.         android:layout_height="fill_parent"
  3493.         android:gravity="center"
  3494.         android:textSize="22dp"
  3495.         tools:ignore="MissingConstraints" />
  3496. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3497. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3498.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3499.     xmlns:tools="http://schemas.android.com/tools"
  3500.     android:layout_width="match_parent"
  3501.     android:layout_height="match_parent"
  3502.     tools:context=".Welcome">
  3503.     <TextView
  3504.         android:id="@+id/mainword"
  3505.         android:layout_width="fill_parent"
  3506.         android:layout_height="fill_parent"
  3507.         android:gravity="center"
  3508.         android:textSize="22dp"
  3509.         tools:ignore="MissingConstraints" />
  3510. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3511. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3512.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3513.     xmlns:tools="http://schemas.android.com/tools"
  3514.     android:layout_width="match_parent"
  3515.     android:layout_height="match_parent"
  3516.     tools:context=".Welcome">
  3517.     <TextView
  3518.         android:id="@+id/mainword"
  3519.         android:layout_width="fill_parent"
  3520.         android:layout_height="fill_parent"
  3521.         android:gravity="center"
  3522.         android:textSize="22dp"
  3523.         tools:ignore="MissingConstraints" />
  3524. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3525. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3526.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3527.     xmlns:tools="http://schemas.android.com/tools"
  3528.     android:layout_width="match_parent"
  3529.     android:layout_height="match_parent"
  3530.     tools:context=".Welcome">
  3531.     <TextView
  3532.         android:id="@+id/mainword"
  3533.         android:layout_width="fill_parent"
  3534.         android:layout_height="fill_parent"
  3535.         android:gravity="center"
  3536.         android:textSize="22dp"
  3537.         tools:ignore="MissingConstraints" />
  3538. </androidx.constraintlayout.widget.ConstraintLayout>}
  3539. <?xml version="1.0" encoding="utf-8"?>
  3540. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3541.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3542.     xmlns:tools="http://schemas.android.com/tools"
  3543.     android:layout_width="match_parent"
  3544.     android:layout_height="match_parent"
  3545.     tools:context=".Welcome">
  3546.     <TextView
  3547.         android:id="@+id/mainword"
  3548.         android:layout_width="fill_parent"
  3549.         android:layout_height="fill_parent"
  3550.         android:gravity="center"
  3551.         android:textSize="22dp"
  3552.         tools:ignore="MissingConstraints" />
  3553. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3554. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3555.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3556.     xmlns:tools="http://schemas.android.com/tools"
  3557.     android:layout_width="match_parent"
  3558.     android:layout_height="match_parent"
  3559.     tools:context=".Welcome">
  3560.     <TextView
  3561.         android:id="@+id/mainword"
  3562.         android:layout_width="fill_parent"
  3563.         android:layout_height="fill_parent"
  3564.         android:gravity="center"
  3565.         android:textSize="22dp"
  3566.         tools:ignore="MissingConstraints" />
  3567. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3568. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3569.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3570.     xmlns:tools="http://schemas.android.com/tools"
  3571.     android:layout_width="match_parent"
  3572.     android:layout_height="match_parent"
  3573.     tools:context=".Welcome">
  3574.     <TextView
  3575.         android:id="@+id/mainword"
  3576.         android:layout_width="fill_parent"
  3577.         android:layout_height="fill_parent"
  3578.         android:gravity="center"
  3579.         android:textSize="22dp"
  3580.         tools:ignore="MissingConstraints" />
  3581. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3582. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3583.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3584.     xmlns:tools="http://schemas.android.com/tools"
  3585.     android:layout_width="match_parent"
  3586.     android:layout_height="match_parent"
  3587.     tools:context=".Welcome">
  3588.     <TextView
  3589.         android:id="@+id/mainword"
  3590.         android:layout_width="fill_parent"
  3591.         android:layout_height="fill_parent"
  3592.         android:gravity="center"
  3593.         android:textSize="22dp"
  3594.         tools:ignore="MissingConstraints" />
  3595. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3596. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3597.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3598.     xmlns:tools="http://schemas.android.com/tools"
  3599.     android:layout_width="match_parent"
  3600.     android:layout_height="match_parent"
  3601.     tools:context=".Welcome">
  3602.     <TextView
  3603.         android:id="@+id/mainword"
  3604.         android:layout_width="fill_parent"
  3605.         android:layout_height="fill_parent"
  3606.         android:gravity="center"
  3607.         android:textSize="22dp"
  3608.         tools:ignore="MissingConstraints" />
  3609. </androidx.constraintlayout.widget.ConstraintLayout>}
  3610. <?xml version="1.0" encoding="utf-8"?>
  3611. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3612.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3613.     xmlns:tools="http://schemas.android.com/tools"
  3614.     android:layout_width="match_parent"
  3615.     android:layout_height="match_parent"
  3616.     tools:context=".Welcome">
  3617.     <TextView
  3618.         android:id="@+id/mainword"
  3619.         android:layout_width="fill_parent"
  3620.         android:layout_height="fill_parent"
  3621.         android:gravity="center"
  3622.         android:textSize="22dp"
  3623.         tools:ignore="MissingConstraints" />
  3624. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3625. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3626.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3627.     xmlns:tools="http://schemas.android.com/tools"
  3628.     android:layout_width="match_parent"
  3629.     android:layout_height="match_parent"
  3630.     tools:context=".Welcome">
  3631.     <TextView
  3632.         android:id="@+id/mainword"
  3633.         android:layout_width="fill_parent"
  3634.         android:layout_height="fill_parent"
  3635.         android:gravity="center"
  3636.         android:textSize="22dp"
  3637.         tools:ignore="MissingConstraints" />
  3638. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3639. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3640.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3641.     xmlns:tools="http://schemas.android.com/tools"
  3642.     android:layout_width="match_parent"
  3643.     android:layout_height="match_parent"
  3644.     tools:context=".Welcome">
  3645.     <TextView
  3646.         android:id="@+id/mainword"
  3647.         android:layout_width="fill_parent"
  3648.         android:layout_height="fill_parent"
  3649.         android:gravity="center"
  3650.         android:textSize="22dp"
  3651.         tools:ignore="MissingConstraints" />
  3652. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3653. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3654.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3655.     xmlns:tools="http://schemas.android.com/tools"
  3656.     android:layout_width="match_parent"
  3657.     android:layout_height="match_parent"
  3658.     tools:context=".Welcome">
  3659.     <TextView
  3660.         android:id="@+id/mainword"
  3661.         android:layout_width="fill_parent"
  3662.         android:layout_height="fill_parent"
  3663.         android:gravity="center"
  3664.         android:textSize="22dp"
  3665.         tools:ignore="MissingConstraints" />
  3666. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3667. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3668.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3669.     xmlns:tools="http://schemas.android.com/tools"
  3670.     android:layout_width="match_parent"
  3671.     android:layout_height="match_parent"
  3672.     tools:context=".Welcome">
  3673.     <TextView
  3674.         android:id="@+id/mainword"
  3675.         android:layout_width="fill_parent"
  3676.         android:layout_height="fill_parent"
  3677.         android:gravity="center"
  3678.         android:textSize="22dp"
  3679.         tools:ignore="MissingConstraints" />
  3680. </androidx.constraintlayout.widget.ConstraintLayout>else{
  3681. <?xml version="1.0" encoding="utf-8"?>
  3682. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3683.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3684.     xmlns:tools="http://schemas.android.com/tools"
  3685.     android:layout_width="match_parent"
  3686.     android:layout_height="match_parent"
  3687.     tools:context=".Welcome">
  3688.     <TextView
  3689.         android:id="@+id/mainword"
  3690.         android:layout_width="fill_parent"
  3691.         android:layout_height="fill_parent"
  3692.         android:gravity="center"
  3693.         android:textSize="22dp"
  3694.         tools:ignore="MissingConstraints" />
  3695. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3696. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3697.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3698.     xmlns:tools="http://schemas.android.com/tools"
  3699.     android:layout_width="match_parent"
  3700.     android:layout_height="match_parent"
  3701.     tools:context=".Welcome">
  3702.     <TextView
  3703.         android:id="@+id/mainword"
  3704.         android:layout_width="fill_parent"
  3705.         android:layout_height="fill_parent"
  3706.         android:gravity="center"
  3707.         android:textSize="22dp"
  3708.         tools:ignore="MissingConstraints" />
  3709. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3710. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3711.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3712.     xmlns:tools="http://schemas.android.com/tools"
  3713.     android:layout_width="match_parent"
  3714.     android:layout_height="match_parent"
  3715.     tools:context=".Welcome">
  3716.     <TextView
  3717.         android:id="@+id/mainword"
  3718.         android:layout_width="fill_parent"
  3719.         android:layout_height="fill_parent"
  3720.         android:gravity="center"
  3721.         android:textSize="22dp"
  3722.         tools:ignore="MissingConstraints" />
  3723. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3724. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3725.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3726.     xmlns:tools="http://schemas.android.com/tools"
  3727.     android:layout_width="match_parent"
  3728.     android:layout_height="match_parent"
  3729.     tools:context=".Welcome">
  3730.     <TextView
  3731.         android:id="@+id/mainword"
  3732.         android:layout_width="fill_parent"
  3733.         android:layout_height="fill_parent"
  3734.         android:gravity="center"
  3735.         android:textSize="22dp"
  3736.         tools:ignore="MissingConstraints" />
  3737. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3738. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3739.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3740.     xmlns:tools="http://schemas.android.com/tools"
  3741.     android:layout_width="match_parent"
  3742.     android:layout_height="match_parent"
  3743.     tools:context=".Welcome">
  3744.     <TextView
  3745.         android:id="@+id/mainword"
  3746.         android:layout_width="fill_parent"
  3747.         android:layout_height="fill_parent"
  3748.         android:gravity="center"
  3749.         android:textSize="22dp"
  3750.         tools:ignore="MissingConstraints" />
  3751. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3752. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3753.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3754.     xmlns:tools="http://schemas.android.com/tools"
  3755.     android:layout_width="match_parent"
  3756.     android:layout_height="match_parent"
  3757.     tools:context=".Welcome">
  3758.     <TextView
  3759.         android:id="@+id/mainword"
  3760.         android:layout_width="fill_parent"
  3761.         android:layout_height="fill_parent"
  3762.         android:gravity="center"
  3763.         android:textSize="22dp"
  3764.         tools:ignore="MissingConstraints" />
  3765. </androidx.constraintlayout.widget.ConstraintLayout>Toast.makeText(Register.this, "用户已存在!", Toast.LENGTH_LONG).show();                        //提示密码不一致
  3766. <?xml version="1.0" encoding="utf-8"?>
  3767. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3768.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3769.     xmlns:tools="http://schemas.android.com/tools"
  3770.     android:layout_width="match_parent"
  3771.     android:layout_height="match_parent"
  3772.     tools:context=".Welcome">
  3773.     <TextView
  3774.         android:id="@+id/mainword"
  3775.         android:layout_width="fill_parent"
  3776.         android:layout_height="fill_parent"
  3777.         android:gravity="center"
  3778.         android:textSize="22dp"
  3779.         tools:ignore="MissingConstraints" />
  3780. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3781. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3782.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3783.     xmlns:tools="http://schemas.android.com/tools"
  3784.     android:layout_width="match_parent"
  3785.     android:layout_height="match_parent"
  3786.     tools:context=".Welcome">
  3787.     <TextView
  3788.         android:id="@+id/mainword"
  3789.         android:layout_width="fill_parent"
  3790.         android:layout_height="fill_parent"
  3791.         android:gravity="center"
  3792.         android:textSize="22dp"
  3793.         tools:ignore="MissingConstraints" />
  3794. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3795. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3796.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3797.     xmlns:tools="http://schemas.android.com/tools"
  3798.     android:layout_width="match_parent"
  3799.     android:layout_height="match_parent"
  3800.     tools:context=".Welcome">
  3801.     <TextView
  3802.         android:id="@+id/mainword"
  3803.         android:layout_width="fill_parent"
  3804.         android:layout_height="fill_parent"
  3805.         android:gravity="center"
  3806.         android:textSize="22dp"
  3807.         tools:ignore="MissingConstraints" />
  3808. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3809. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3810.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3811.     xmlns:tools="http://schemas.android.com/tools"
  3812.     android:layout_width="match_parent"
  3813.     android:layout_height="match_parent"
  3814.     tools:context=".Welcome">
  3815.     <TextView
  3816.         android:id="@+id/mainword"
  3817.         android:layout_width="fill_parent"
  3818.         android:layout_height="fill_parent"
  3819.         android:gravity="center"
  3820.         android:textSize="22dp"
  3821.         tools:ignore="MissingConstraints" />
  3822. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3823. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3824.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3825.     xmlns:tools="http://schemas.android.com/tools"
  3826.     android:layout_width="match_parent"
  3827.     android:layout_height="match_parent"
  3828.     tools:context=".Welcome">
  3829.     <TextView
  3830.         android:id="@+id/mainword"
  3831.         android:layout_width="fill_parent"
  3832.         android:layout_height="fill_parent"
  3833.         android:gravity="center"
  3834.         android:textSize="22dp"
  3835.         tools:ignore="MissingConstraints" />
  3836. </androidx.constraintlayout.widget.ConstraintLayout>}
  3837. <?xml version="1.0" encoding="utf-8"?>
  3838. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3839.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3840.     xmlns:tools="http://schemas.android.com/tools"
  3841.     android:layout_width="match_parent"
  3842.     android:layout_height="match_parent"
  3843.     tools:context=".Welcome">
  3844.     <TextView
  3845.         android:id="@+id/mainword"
  3846.         android:layout_width="fill_parent"
  3847.         android:layout_height="fill_parent"
  3848.         android:gravity="center"
  3849.         android:textSize="22dp"
  3850.         tools:ignore="MissingConstraints" />
  3851. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3852. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3853.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3854.     xmlns:tools="http://schemas.android.com/tools"
  3855.     android:layout_width="match_parent"
  3856.     android:layout_height="match_parent"
  3857.     tools:context=".Welcome">
  3858.     <TextView
  3859.         android:id="@+id/mainword"
  3860.         android:layout_width="fill_parent"
  3861.         android:layout_height="fill_parent"
  3862.         android:gravity="center"
  3863.         android:textSize="22dp"
  3864.         tools:ignore="MissingConstraints" />
  3865. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3866. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3867.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3868.     xmlns:tools="http://schemas.android.com/tools"
  3869.     android:layout_width="match_parent"
  3870.     android:layout_height="match_parent"
  3871.     tools:context=".Welcome">
  3872.     <TextView
  3873.         android:id="@+id/mainword"
  3874.         android:layout_width="fill_parent"
  3875.         android:layout_height="fill_parent"
  3876.         android:gravity="center"
  3877.         android:textSize="22dp"
  3878.         tools:ignore="MissingConstraints" />
  3879. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3880. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3881.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3882.     xmlns:tools="http://schemas.android.com/tools"
  3883.     android:layout_width="match_parent"
  3884.     android:layout_height="match_parent"
  3885.     tools:context=".Welcome">
  3886.     <TextView
  3887.         android:id="@+id/mainword"
  3888.         android:layout_width="fill_parent"
  3889.         android:layout_height="fill_parent"
  3890.         android:gravity="center"
  3891.         android:textSize="22dp"
  3892.         tools:ignore="MissingConstraints" />
  3893. </androidx.constraintlayout.widget.ConstraintLayout>}
  3894. <?xml version="1.0" encoding="utf-8"?>
  3895. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3896.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3897.     xmlns:tools="http://schemas.android.com/tools"
  3898.     android:layout_width="match_parent"
  3899.     android:layout_height="match_parent"
  3900.     tools:context=".Welcome">
  3901.     <TextView
  3902.         android:id="@+id/mainword"
  3903.         android:layout_width="fill_parent"
  3904.         android:layout_height="fill_parent"
  3905.         android:gravity="center"
  3906.         android:textSize="22dp"
  3907.         tools:ignore="MissingConstraints" />
  3908. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3909. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3910.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3911.     xmlns:tools="http://schemas.android.com/tools"
  3912.     android:layout_width="match_parent"
  3913.     android:layout_height="match_parent"
  3914.     tools:context=".Welcome">
  3915.     <TextView
  3916.         android:id="@+id/mainword"
  3917.         android:layout_width="fill_parent"
  3918.         android:layout_height="fill_parent"
  3919.         android:gravity="center"
  3920.         android:textSize="22dp"
  3921.         tools:ignore="MissingConstraints" />
  3922. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3923. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3924.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3925.     xmlns:tools="http://schemas.android.com/tools"
  3926.     android:layout_width="match_parent"
  3927.     android:layout_height="match_parent"
  3928.     tools:context=".Welcome">
  3929.     <TextView
  3930.         android:id="@+id/mainword"
  3931.         android:layout_width="fill_parent"
  3932.         android:layout_height="fill_parent"
  3933.         android:gravity="center"
  3934.         android:textSize="22dp"
  3935.         tools:ignore="MissingConstraints" />
  3936. </androidx.constraintlayout.widget.ConstraintLayout>}
  3937. <?xml version="1.0" encoding="utf-8"?>
  3938. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3939.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3940.     xmlns:tools="http://schemas.android.com/tools"
  3941.     android:layout_width="match_parent"
  3942.     android:layout_height="match_parent"
  3943.     tools:context=".Welcome">
  3944.     <TextView
  3945.         android:id="@+id/mainword"
  3946.         android:layout_width="fill_parent"
  3947.         android:layout_height="fill_parent"
  3948.         android:gravity="center"
  3949.         android:textSize="22dp"
  3950.         tools:ignore="MissingConstraints" />
  3951. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  3952. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3953.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3954.     xmlns:tools="http://schemas.android.com/tools"
  3955.     android:layout_width="match_parent"
  3956.     android:layout_height="match_parent"
  3957.     tools:context=".Welcome">
  3958.     <TextView
  3959.         android:id="@+id/mainword"
  3960.         android:layout_width="fill_parent"
  3961.         android:layout_height="fill_parent"
  3962.         android:gravity="center"
  3963.         android:textSize="22dp"
  3964.         tools:ignore="MissingConstraints" />
  3965. </androidx.constraintlayout.widget.ConstraintLayout>});
  3966. <?xml version="1.0" encoding="utf-8"?>
  3967. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3968.     xmlns:app="http://schemas.android.com/apk/res-auto"
  3969.     xmlns:tools="http://schemas.android.com/tools"
  3970.     android:layout_width="match_parent"
  3971.     android:layout_height="match_parent"
  3972.     tools:context=".Welcome">
  3973.     <TextView
  3974.         android:id="@+id/mainword"
  3975.         android:layout_width="fill_parent"
  3976.         android:layout_height="fill_parent"
  3977.         android:gravity="center"
  3978.         android:textSize="22dp"
  3979.         tools:ignore="MissingConstraints" />
  3980. </androidx.constraintlayout.widget.ConstraintLayout>}
  3981. }
复制代码
这是对应的布局文件activity_register.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. <?xml version="1.0" encoding="utf-8"?>
  4. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  5.     xmlns:app="http://schemas.android.com/apk/res-auto"
  6.     xmlns:tools="http://schemas.android.com/tools"
  7.     android:layout_width="match_parent"
  8.     android:layout_height="match_parent"
  9.     tools:context=".Welcome">
  10.     <TextView
  11.         android:id="@+id/mainword"
  12.         android:layout_width="fill_parent"
  13.         android:layout_height="fill_parent"
  14.         android:gravity="center"
  15.         android:textSize="22dp"
  16.         tools:ignore="MissingConstraints" />
  17. </androidx.constraintlayout.widget.ConstraintLayout>xmlns:app="http://schemas.android.com/apk/res-auto"
  18. <?xml version="1.0" encoding="utf-8"?>
  19. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  20.     xmlns:app="http://schemas.android.com/apk/res-auto"
  21.     xmlns:tools="http://schemas.android.com/tools"
  22.     android:layout_width="match_parent"
  23.     android:layout_height="match_parent"
  24.     tools:context=".Welcome">
  25.     <TextView
  26.         android:id="@+id/mainword"
  27.         android:layout_width="fill_parent"
  28.         android:layout_height="fill_parent"
  29.         android:gravity="center"
  30.         android:textSize="22dp"
  31.         tools:ignore="MissingConstraints" />
  32. </androidx.constraintlayout.widget.ConstraintLayout>xmlns:tools="http://schemas.android.com/tools"
  33. <?xml version="1.0" encoding="utf-8"?>
  34. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  35.     xmlns:app="http://schemas.android.com/apk/res-auto"
  36.     xmlns:tools="http://schemas.android.com/tools"
  37.     android:layout_width="match_parent"
  38.     android:layout_height="match_parent"
  39.     tools:context=".Welcome">
  40.     <TextView
  41.         android:id="@+id/mainword"
  42.         android:layout_width="fill_parent"
  43.         android:layout_height="fill_parent"
  44.         android:gravity="center"
  45.         android:textSize="22dp"
  46.         tools:ignore="MissingConstraints" />
  47. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="match_parent"
  48. <?xml version="1.0" encoding="utf-8"?>
  49. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  50.     xmlns:app="http://schemas.android.com/apk/res-auto"
  51.     xmlns:tools="http://schemas.android.com/tools"
  52.     android:layout_width="match_parent"
  53.     android:layout_height="match_parent"
  54.     tools:context=".Welcome">
  55.     <TextView
  56.         android:id="@+id/mainword"
  57.         android:layout_width="fill_parent"
  58.         android:layout_height="fill_parent"
  59.         android:gravity="center"
  60.         android:textSize="22dp"
  61.         tools:ignore="MissingConstraints" />
  62. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="match_parent"
  63. <?xml version="1.0" encoding="utf-8"?>
  64. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  65.     xmlns:app="http://schemas.android.com/apk/res-auto"
  66.     xmlns:tools="http://schemas.android.com/tools"
  67.     android:layout_width="match_parent"
  68.     android:layout_height="match_parent"
  69.     tools:context=".Welcome">
  70.     <TextView
  71.         android:id="@+id/mainword"
  72.         android:layout_width="fill_parent"
  73.         android:layout_height="fill_parent"
  74.         android:gravity="center"
  75.         android:textSize="22dp"
  76.         tools:ignore="MissingConstraints" />
  77. </androidx.constraintlayout.widget.ConstraintLayout>tools:context=".Register">
  78. <?xml version="1.0" encoding="utf-8"?>
  79. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  80.     xmlns:app="http://schemas.android.com/apk/res-auto"
  81.     xmlns:tools="http://schemas.android.com/tools"
  82.     android:layout_width="match_parent"
  83.     android:layout_height="match_parent"
  84.     tools:context=".Welcome">
  85.     <TextView
  86.         android:id="@+id/mainword"
  87.         android:layout_width="fill_parent"
  88.         android:layout_height="fill_parent"
  89.         android:gravity="center"
  90.         android:textSize="22dp"
  91.         tools:ignore="MissingConstraints" />
  92. </androidx.constraintlayout.widget.ConstraintLayout><LinearLayout
  93. <?xml version="1.0" encoding="utf-8"?>
  94. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  95.     xmlns:app="http://schemas.android.com/apk/res-auto"
  96.     xmlns:tools="http://schemas.android.com/tools"
  97.     android:layout_width="match_parent"
  98.     android:layout_height="match_parent"
  99.     tools:context=".Welcome">
  100.     <TextView
  101.         android:id="@+id/mainword"
  102.         android:layout_width="fill_parent"
  103.         android:layout_height="fill_parent"
  104.         android:gravity="center"
  105.         android:textSize="22dp"
  106.         tools:ignore="MissingConstraints" />
  107. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  108. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  109.     xmlns:app="http://schemas.android.com/apk/res-auto"
  110.     xmlns:tools="http://schemas.android.com/tools"
  111.     android:layout_width="match_parent"
  112.     android:layout_height="match_parent"
  113.     tools:context=".Welcome">
  114.     <TextView
  115.         android:id="@+id/mainword"
  116.         android:layout_width="fill_parent"
  117.         android:layout_height="fill_parent"
  118.         android:gravity="center"
  119.         android:textSize="22dp"
  120.         tools:ignore="MissingConstraints" />
  121. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="match_parent"
  122. <?xml version="1.0" encoding="utf-8"?>
  123. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  124.     xmlns:app="http://schemas.android.com/apk/res-auto"
  125.     xmlns:tools="http://schemas.android.com/tools"
  126.     android:layout_width="match_parent"
  127.     android:layout_height="match_parent"
  128.     tools:context=".Welcome">
  129.     <TextView
  130.         android:id="@+id/mainword"
  131.         android:layout_width="fill_parent"
  132.         android:layout_height="fill_parent"
  133.         android:gravity="center"
  134.         android:textSize="22dp"
  135.         tools:ignore="MissingConstraints" />
  136. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  137. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  138.     xmlns:app="http://schemas.android.com/apk/res-auto"
  139.     xmlns:tools="http://schemas.android.com/tools"
  140.     android:layout_width="match_parent"
  141.     android:layout_height="match_parent"
  142.     tools:context=".Welcome">
  143.     <TextView
  144.         android:id="@+id/mainword"
  145.         android:layout_width="fill_parent"
  146.         android:layout_height="fill_parent"
  147.         android:gravity="center"
  148.         android:textSize="22dp"
  149.         tools:ignore="MissingConstraints" />
  150. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="match_parent"
  151. <?xml version="1.0" encoding="utf-8"?>
  152. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  153.     xmlns:app="http://schemas.android.com/apk/res-auto"
  154.     xmlns:tools="http://schemas.android.com/tools"
  155.     android:layout_width="match_parent"
  156.     android:layout_height="match_parent"
  157.     tools:context=".Welcome">
  158.     <TextView
  159.         android:id="@+id/mainword"
  160.         android:layout_width="fill_parent"
  161.         android:layout_height="fill_parent"
  162.         android:gravity="center"
  163.         android:textSize="22dp"
  164.         tools:ignore="MissingConstraints" />
  165. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  166. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  167.     xmlns:app="http://schemas.android.com/apk/res-auto"
  168.     xmlns:tools="http://schemas.android.com/tools"
  169.     android:layout_width="match_parent"
  170.     android:layout_height="match_parent"
  171.     tools:context=".Welcome">
  172.     <TextView
  173.         android:id="@+id/mainword"
  174.         android:layout_width="fill_parent"
  175.         android:layout_height="fill_parent"
  176.         android:gravity="center"
  177.         android:textSize="22dp"
  178.         tools:ignore="MissingConstraints" />
  179. </androidx.constraintlayout.widget.ConstraintLayout>android:orientation="vertical">
  180. <?xml version="1.0" encoding="utf-8"?>
  181. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  182.     xmlns:app="http://schemas.android.com/apk/res-auto"
  183.     xmlns:tools="http://schemas.android.com/tools"
  184.     android:layout_width="match_parent"
  185.     android:layout_height="match_parent"
  186.     tools:context=".Welcome">
  187.     <TextView
  188.         android:id="@+id/mainword"
  189.         android:layout_width="fill_parent"
  190.         android:layout_height="fill_parent"
  191.         android:gravity="center"
  192.         android:textSize="22dp"
  193.         tools:ignore="MissingConstraints" />
  194. </androidx.constraintlayout.widget.ConstraintLayout>
  195. <?xml version="1.0" encoding="utf-8"?>
  196. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  197.     xmlns:app="http://schemas.android.com/apk/res-auto"
  198.     xmlns:tools="http://schemas.android.com/tools"
  199.     android:layout_width="match_parent"
  200.     android:layout_height="match_parent"
  201.     tools:context=".Welcome">
  202.     <TextView
  203.         android:id="@+id/mainword"
  204.         android:layout_width="fill_parent"
  205.         android:layout_height="fill_parent"
  206.         android:gravity="center"
  207.         android:textSize="22dp"
  208.         tools:ignore="MissingConstraints" />
  209. </androidx.constraintlayout.widget.ConstraintLayout><TextView
  210. <?xml version="1.0" encoding="utf-8"?>
  211. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  212.     xmlns:app="http://schemas.android.com/apk/res-auto"
  213.     xmlns:tools="http://schemas.android.com/tools"
  214.     android:layout_width="match_parent"
  215.     android:layout_height="match_parent"
  216.     tools:context=".Welcome">
  217.     <TextView
  218.         android:id="@+id/mainword"
  219.         android:layout_width="fill_parent"
  220.         android:layout_height="fill_parent"
  221.         android:gravity="center"
  222.         android:textSize="22dp"
  223.         tools:ignore="MissingConstraints" />
  224. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  225. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  226.     xmlns:app="http://schemas.android.com/apk/res-auto"
  227.     xmlns:tools="http://schemas.android.com/tools"
  228.     android:layout_width="match_parent"
  229.     android:layout_height="match_parent"
  230.     tools:context=".Welcome">
  231.     <TextView
  232.         android:id="@+id/mainword"
  233.         android:layout_width="fill_parent"
  234.         android:layout_height="fill_parent"
  235.         android:gravity="center"
  236.         android:textSize="22dp"
  237.         tools:ignore="MissingConstraints" />
  238. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="fill_parent"
  239. <?xml version="1.0" encoding="utf-8"?>
  240. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  241.     xmlns:app="http://schemas.android.com/apk/res-auto"
  242.     xmlns:tools="http://schemas.android.com/tools"
  243.     android:layout_width="match_parent"
  244.     android:layout_height="match_parent"
  245.     tools:context=".Welcome">
  246.     <TextView
  247.         android:id="@+id/mainword"
  248.         android:layout_width="fill_parent"
  249.         android:layout_height="fill_parent"
  250.         android:gravity="center"
  251.         android:textSize="22dp"
  252.         tools:ignore="MissingConstraints" />
  253. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  254. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  255.     xmlns:app="http://schemas.android.com/apk/res-auto"
  256.     xmlns:tools="http://schemas.android.com/tools"
  257.     android:layout_width="match_parent"
  258.     android:layout_height="match_parent"
  259.     tools:context=".Welcome">
  260.     <TextView
  261.         android:id="@+id/mainword"
  262.         android:layout_width="fill_parent"
  263.         android:layout_height="fill_parent"
  264.         android:gravity="center"
  265.         android:textSize="22dp"
  266.         tools:ignore="MissingConstraints" />
  267. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  268. <?xml version="1.0" encoding="utf-8"?>
  269. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  270.     xmlns:app="http://schemas.android.com/apk/res-auto"
  271.     xmlns:tools="http://schemas.android.com/tools"
  272.     android:layout_width="match_parent"
  273.     android:layout_height="match_parent"
  274.     tools:context=".Welcome">
  275.     <TextView
  276.         android:id="@+id/mainword"
  277.         android:layout_width="fill_parent"
  278.         android:layout_height="fill_parent"
  279.         android:gravity="center"
  280.         android:textSize="22dp"
  281.         tools:ignore="MissingConstraints" />
  282. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  283. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  284.     xmlns:app="http://schemas.android.com/apk/res-auto"
  285.     xmlns:tools="http://schemas.android.com/tools"
  286.     android:layout_width="match_parent"
  287.     android:layout_height="match_parent"
  288.     tools:context=".Welcome">
  289.     <TextView
  290.         android:id="@+id/mainword"
  291.         android:layout_width="fill_parent"
  292.         android:layout_height="fill_parent"
  293.         android:gravity="center"
  294.         android:textSize="22dp"
  295.         tools:ignore="MissingConstraints" />
  296. </androidx.constraintlayout.widget.ConstraintLayout>android:text="用户名:" />
  297. <?xml version="1.0" encoding="utf-8"?>
  298. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  299.     xmlns:app="http://schemas.android.com/apk/res-auto"
  300.     xmlns:tools="http://schemas.android.com/tools"
  301.     android:layout_width="match_parent"
  302.     android:layout_height="match_parent"
  303.     tools:context=".Welcome">
  304.     <TextView
  305.         android:id="@+id/mainword"
  306.         android:layout_width="fill_parent"
  307.         android:layout_height="fill_parent"
  308.         android:gravity="center"
  309.         android:textSize="22dp"
  310.         tools:ignore="MissingConstraints" />
  311. </androidx.constraintlayout.widget.ConstraintLayout><EditText
  312. <?xml version="1.0" encoding="utf-8"?>
  313. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  314.     xmlns:app="http://schemas.android.com/apk/res-auto"
  315.     xmlns:tools="http://schemas.android.com/tools"
  316.     android:layout_width="match_parent"
  317.     android:layout_height="match_parent"
  318.     tools:context=".Welcome">
  319.     <TextView
  320.         android:id="@+id/mainword"
  321.         android:layout_width="fill_parent"
  322.         android:layout_height="fill_parent"
  323.         android:gravity="center"
  324.         android:textSize="22dp"
  325.         tools:ignore="MissingConstraints" />
  326. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  327. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  328.     xmlns:app="http://schemas.android.com/apk/res-auto"
  329.     xmlns:tools="http://schemas.android.com/tools"
  330.     android:layout_width="match_parent"
  331.     android:layout_height="match_parent"
  332.     tools:context=".Welcome">
  333.     <TextView
  334.         android:id="@+id/mainword"
  335.         android:layout_width="fill_parent"
  336.         android:layout_height="fill_parent"
  337.         android:gravity="center"
  338.         android:textSize="22dp"
  339.         tools:ignore="MissingConstraints" />
  340. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/usename"
  341. <?xml version="1.0" encoding="utf-8"?>
  342. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  343.     xmlns:app="http://schemas.android.com/apk/res-auto"
  344.     xmlns:tools="http://schemas.android.com/tools"
  345.     android:layout_width="match_parent"
  346.     android:layout_height="match_parent"
  347.     tools:context=".Welcome">
  348.     <TextView
  349.         android:id="@+id/mainword"
  350.         android:layout_width="fill_parent"
  351.         android:layout_height="fill_parent"
  352.         android:gravity="center"
  353.         android:textSize="22dp"
  354.         tools:ignore="MissingConstraints" />
  355. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  356. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  357.     xmlns:app="http://schemas.android.com/apk/res-auto"
  358.     xmlns:tools="http://schemas.android.com/tools"
  359.     android:layout_width="match_parent"
  360.     android:layout_height="match_parent"
  361.     tools:context=".Welcome">
  362.     <TextView
  363.         android:id="@+id/mainword"
  364.         android:layout_width="fill_parent"
  365.         android:layout_height="fill_parent"
  366.         android:gravity="center"
  367.         android:textSize="22dp"
  368.         tools:ignore="MissingConstraints" />
  369. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="fill_parent"
  370. <?xml version="1.0" encoding="utf-8"?>
  371. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  372.     xmlns:app="http://schemas.android.com/apk/res-auto"
  373.     xmlns:tools="http://schemas.android.com/tools"
  374.     android:layout_width="match_parent"
  375.     android:layout_height="match_parent"
  376.     tools:context=".Welcome">
  377.     <TextView
  378.         android:id="@+id/mainword"
  379.         android:layout_width="fill_parent"
  380.         android:layout_height="fill_parent"
  381.         android:gravity="center"
  382.         android:textSize="22dp"
  383.         tools:ignore="MissingConstraints" />
  384. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  385. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  386.     xmlns:app="http://schemas.android.com/apk/res-auto"
  387.     xmlns:tools="http://schemas.android.com/tools"
  388.     android:layout_width="match_parent"
  389.     android:layout_height="match_parent"
  390.     tools:context=".Welcome">
  391.     <TextView
  392.         android:id="@+id/mainword"
  393.         android:layout_width="fill_parent"
  394.         android:layout_height="fill_parent"
  395.         android:gravity="center"
  396.         android:textSize="22dp"
  397.         tools:ignore="MissingConstraints" />
  398. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  399. <?xml version="1.0" encoding="utf-8"?>
  400. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  401.     xmlns:app="http://schemas.android.com/apk/res-auto"
  402.     xmlns:tools="http://schemas.android.com/tools"
  403.     android:layout_width="match_parent"
  404.     android:layout_height="match_parent"
  405.     tools:context=".Welcome">
  406.     <TextView
  407.         android:id="@+id/mainword"
  408.         android:layout_width="fill_parent"
  409.         android:layout_height="fill_parent"
  410.         android:gravity="center"
  411.         android:textSize="22dp"
  412.         tools:ignore="MissingConstraints" />
  413. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  414. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  415.     xmlns:app="http://schemas.android.com/apk/res-auto"
  416.     xmlns:tools="http://schemas.android.com/tools"
  417.     android:layout_width="match_parent"
  418.     android:layout_height="match_parent"
  419.     tools:context=".Welcome">
  420.     <TextView
  421.         android:id="@+id/mainword"
  422.         android:layout_width="fill_parent"
  423.         android:layout_height="fill_parent"
  424.         android:gravity="center"
  425.         android:textSize="22dp"
  426.         tools:ignore="MissingConstraints" />
  427. </androidx.constraintlayout.widget.ConstraintLayout>android:text=""
  428. <?xml version="1.0" encoding="utf-8"?>
  429. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  430.     xmlns:app="http://schemas.android.com/apk/res-auto"
  431.     xmlns:tools="http://schemas.android.com/tools"
  432.     android:layout_width="match_parent"
  433.     android:layout_height="match_parent"
  434.     tools:context=".Welcome">
  435.     <TextView
  436.         android:id="@+id/mainword"
  437.         android:layout_width="fill_parent"
  438.         android:layout_height="fill_parent"
  439.         android:gravity="center"
  440.         android:textSize="22dp"
  441.         tools:ignore="MissingConstraints" />
  442. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  443. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  444.     xmlns:app="http://schemas.android.com/apk/res-auto"
  445.     xmlns:tools="http://schemas.android.com/tools"
  446.     android:layout_width="match_parent"
  447.     android:layout_height="match_parent"
  448.     tools:context=".Welcome">
  449.     <TextView
  450.         android:id="@+id/mainword"
  451.         android:layout_width="fill_parent"
  452.         android:layout_height="fill_parent"
  453.         android:gravity="center"
  454.         android:textSize="22dp"
  455.         tools:ignore="MissingConstraints" />
  456. </androidx.constraintlayout.widget.ConstraintLayout>/>
  457. <?xml version="1.0" encoding="utf-8"?>
  458. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  459.     xmlns:app="http://schemas.android.com/apk/res-auto"
  460.     xmlns:tools="http://schemas.android.com/tools"
  461.     android:layout_width="match_parent"
  462.     android:layout_height="match_parent"
  463.     tools:context=".Welcome">
  464.     <TextView
  465.         android:id="@+id/mainword"
  466.         android:layout_width="fill_parent"
  467.         android:layout_height="fill_parent"
  468.         android:gravity="center"
  469.         android:textSize="22dp"
  470.         tools:ignore="MissingConstraints" />
  471. </androidx.constraintlayout.widget.ConstraintLayout>
  472. <?xml version="1.0" encoding="utf-8"?>
  473. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  474.     xmlns:app="http://schemas.android.com/apk/res-auto"
  475.     xmlns:tools="http://schemas.android.com/tools"
  476.     android:layout_width="match_parent"
  477.     android:layout_height="match_parent"
  478.     tools:context=".Welcome">
  479.     <TextView
  480.         android:id="@+id/mainword"
  481.         android:layout_width="fill_parent"
  482.         android:layout_height="fill_parent"
  483.         android:gravity="center"
  484.         android:textSize="22dp"
  485.         tools:ignore="MissingConstraints" />
  486. </androidx.constraintlayout.widget.ConstraintLayout><TextView
  487. <?xml version="1.0" encoding="utf-8"?>
  488. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  489.     xmlns:app="http://schemas.android.com/apk/res-auto"
  490.     xmlns:tools="http://schemas.android.com/tools"
  491.     android:layout_width="match_parent"
  492.     android:layout_height="match_parent"
  493.     tools:context=".Welcome">
  494.     <TextView
  495.         android:id="@+id/mainword"
  496.         android:layout_width="fill_parent"
  497.         android:layout_height="fill_parent"
  498.         android:gravity="center"
  499.         android:textSize="22dp"
  500.         tools:ignore="MissingConstraints" />
  501. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  502. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  503.     xmlns:app="http://schemas.android.com/apk/res-auto"
  504.     xmlns:tools="http://schemas.android.com/tools"
  505.     android:layout_width="match_parent"
  506.     android:layout_height="match_parent"
  507.     tools:context=".Welcome">
  508.     <TextView
  509.         android:id="@+id/mainword"
  510.         android:layout_width="fill_parent"
  511.         android:layout_height="fill_parent"
  512.         android:gravity="center"
  513.         android:textSize="22dp"
  514.         tools:ignore="MissingConstraints" />
  515. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="fill_parent"
  516. <?xml version="1.0" encoding="utf-8"?>
  517. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  518.     xmlns:app="http://schemas.android.com/apk/res-auto"
  519.     xmlns:tools="http://schemas.android.com/tools"
  520.     android:layout_width="match_parent"
  521.     android:layout_height="match_parent"
  522.     tools:context=".Welcome">
  523.     <TextView
  524.         android:id="@+id/mainword"
  525.         android:layout_width="fill_parent"
  526.         android:layout_height="fill_parent"
  527.         android:gravity="center"
  528.         android:textSize="22dp"
  529.         tools:ignore="MissingConstraints" />
  530. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  531. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  532.     xmlns:app="http://schemas.android.com/apk/res-auto"
  533.     xmlns:tools="http://schemas.android.com/tools"
  534.     android:layout_width="match_parent"
  535.     android:layout_height="match_parent"
  536.     tools:context=".Welcome">
  537.     <TextView
  538.         android:id="@+id/mainword"
  539.         android:layout_width="fill_parent"
  540.         android:layout_height="fill_parent"
  541.         android:gravity="center"
  542.         android:textSize="22dp"
  543.         tools:ignore="MissingConstraints" />
  544. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  545. <?xml version="1.0" encoding="utf-8"?>
  546. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  547.     xmlns:app="http://schemas.android.com/apk/res-auto"
  548.     xmlns:tools="http://schemas.android.com/tools"
  549.     android:layout_width="match_parent"
  550.     android:layout_height="match_parent"
  551.     tools:context=".Welcome">
  552.     <TextView
  553.         android:id="@+id/mainword"
  554.         android:layout_width="fill_parent"
  555.         android:layout_height="fill_parent"
  556.         android:gravity="center"
  557.         android:textSize="22dp"
  558.         tools:ignore="MissingConstraints" />
  559. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  560. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  561.     xmlns:app="http://schemas.android.com/apk/res-auto"
  562.     xmlns:tools="http://schemas.android.com/tools"
  563.     android:layout_width="match_parent"
  564.     android:layout_height="match_parent"
  565.     tools:context=".Welcome">
  566.     <TextView
  567.         android:id="@+id/mainword"
  568.         android:layout_width="fill_parent"
  569.         android:layout_height="fill_parent"
  570.         android:gravity="center"
  571.         android:textSize="22dp"
  572.         tools:ignore="MissingConstraints" />
  573. </androidx.constraintlayout.widget.ConstraintLayout>android:text="密 码:"
  574. <?xml version="1.0" encoding="utf-8"?>
  575. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  576.     xmlns:app="http://schemas.android.com/apk/res-auto"
  577.     xmlns:tools="http://schemas.android.com/tools"
  578.     android:layout_width="match_parent"
  579.     android:layout_height="match_parent"
  580.     tools:context=".Welcome">
  581.     <TextView
  582.         android:id="@+id/mainword"
  583.         android:layout_width="fill_parent"
  584.         android:layout_height="fill_parent"
  585.         android:gravity="center"
  586.         android:textSize="22dp"
  587.         tools:ignore="MissingConstraints" />
  588. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  589. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  590.     xmlns:app="http://schemas.android.com/apk/res-auto"
  591.     xmlns:tools="http://schemas.android.com/tools"
  592.     android:layout_width="match_parent"
  593.     android:layout_height="match_parent"
  594.     tools:context=".Welcome">
  595.     <TextView
  596.         android:id="@+id/mainword"
  597.         android:layout_width="fill_parent"
  598.         android:layout_height="fill_parent"
  599.         android:gravity="center"
  600.         android:textSize="22dp"
  601.         tools:ignore="MissingConstraints" />
  602. </androidx.constraintlayout.widget.ConstraintLayout>/>
  603. <?xml version="1.0" encoding="utf-8"?>
  604. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  605.     xmlns:app="http://schemas.android.com/apk/res-auto"
  606.     xmlns:tools="http://schemas.android.com/tools"
  607.     android:layout_width="match_parent"
  608.     android:layout_height="match_parent"
  609.     tools:context=".Welcome">
  610.     <TextView
  611.         android:id="@+id/mainword"
  612.         android:layout_width="fill_parent"
  613.         android:layout_height="fill_parent"
  614.         android:gravity="center"
  615.         android:textSize="22dp"
  616.         tools:ignore="MissingConstraints" />
  617. </androidx.constraintlayout.widget.ConstraintLayout><EditText
  618. <?xml version="1.0" encoding="utf-8"?>
  619. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  620.     xmlns:app="http://schemas.android.com/apk/res-auto"
  621.     xmlns:tools="http://schemas.android.com/tools"
  622.     android:layout_width="match_parent"
  623.     android:layout_height="match_parent"
  624.     tools:context=".Welcome">
  625.     <TextView
  626.         android:id="@+id/mainword"
  627.         android:layout_width="fill_parent"
  628.         android:layout_height="fill_parent"
  629.         android:gravity="center"
  630.         android:textSize="22dp"
  631.         tools:ignore="MissingConstraints" />
  632. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  633. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  634.     xmlns:app="http://schemas.android.com/apk/res-auto"
  635.     xmlns:tools="http://schemas.android.com/tools"
  636.     android:layout_width="match_parent"
  637.     android:layout_height="match_parent"
  638.     tools:context=".Welcome">
  639.     <TextView
  640.         android:id="@+id/mainword"
  641.         android:layout_width="fill_parent"
  642.         android:layout_height="fill_parent"
  643.         android:gravity="center"
  644.         android:textSize="22dp"
  645.         tools:ignore="MissingConstraints" />
  646. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/usepwd"
  647. <?xml version="1.0" encoding="utf-8"?>
  648. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  649.     xmlns:app="http://schemas.android.com/apk/res-auto"
  650.     xmlns:tools="http://schemas.android.com/tools"
  651.     android:layout_width="match_parent"
  652.     android:layout_height="match_parent"
  653.     tools:context=".Welcome">
  654.     <TextView
  655.         android:id="@+id/mainword"
  656.         android:layout_width="fill_parent"
  657.         android:layout_height="fill_parent"
  658.         android:gravity="center"
  659.         android:textSize="22dp"
  660.         tools:ignore="MissingConstraints" />
  661. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  662. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  663.     xmlns:app="http://schemas.android.com/apk/res-auto"
  664.     xmlns:tools="http://schemas.android.com/tools"
  665.     android:layout_width="match_parent"
  666.     android:layout_height="match_parent"
  667.     tools:context=".Welcome">
  668.     <TextView
  669.         android:id="@+id/mainword"
  670.         android:layout_width="fill_parent"
  671.         android:layout_height="fill_parent"
  672.         android:gravity="center"
  673.         android:textSize="22dp"
  674.         tools:ignore="MissingConstraints" />
  675. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="fill_parent"
  676. <?xml version="1.0" encoding="utf-8"?>
  677. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  678.     xmlns:app="http://schemas.android.com/apk/res-auto"
  679.     xmlns:tools="http://schemas.android.com/tools"
  680.     android:layout_width="match_parent"
  681.     android:layout_height="match_parent"
  682.     tools:context=".Welcome">
  683.     <TextView
  684.         android:id="@+id/mainword"
  685.         android:layout_width="fill_parent"
  686.         android:layout_height="fill_parent"
  687.         android:gravity="center"
  688.         android:textSize="22dp"
  689.         tools:ignore="MissingConstraints" />
  690. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  691. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  692.     xmlns:app="http://schemas.android.com/apk/res-auto"
  693.     xmlns:tools="http://schemas.android.com/tools"
  694.     android:layout_width="match_parent"
  695.     android:layout_height="match_parent"
  696.     tools:context=".Welcome">
  697.     <TextView
  698.         android:id="@+id/mainword"
  699.         android:layout_width="fill_parent"
  700.         android:layout_height="fill_parent"
  701.         android:gravity="center"
  702.         android:textSize="22dp"
  703.         tools:ignore="MissingConstraints" />
  704. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  705. <?xml version="1.0" encoding="utf-8"?>
  706. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  707.     xmlns:app="http://schemas.android.com/apk/res-auto"
  708.     xmlns:tools="http://schemas.android.com/tools"
  709.     android:layout_width="match_parent"
  710.     android:layout_height="match_parent"
  711.     tools:context=".Welcome">
  712.     <TextView
  713.         android:id="@+id/mainword"
  714.         android:layout_width="fill_parent"
  715.         android:layout_height="fill_parent"
  716.         android:gravity="center"
  717.         android:textSize="22dp"
  718.         tools:ignore="MissingConstraints" />
  719. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  720. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  721.     xmlns:app="http://schemas.android.com/apk/res-auto"
  722.     xmlns:tools="http://schemas.android.com/tools"
  723.     android:layout_width="match_parent"
  724.     android:layout_height="match_parent"
  725.     tools:context=".Welcome">
  726.     <TextView
  727.         android:id="@+id/mainword"
  728.         android:layout_width="fill_parent"
  729.         android:layout_height="fill_parent"
  730.         android:gravity="center"
  731.         android:textSize="22dp"
  732.         tools:ignore="MissingConstraints" />
  733. </androidx.constraintlayout.widget.ConstraintLayout>android:inputType="textPassword"
  734. <?xml version="1.0" encoding="utf-8"?>
  735. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  736.     xmlns:app="http://schemas.android.com/apk/res-auto"
  737.     xmlns:tools="http://schemas.android.com/tools"
  738.     android:layout_width="match_parent"
  739.     android:layout_height="match_parent"
  740.     tools:context=".Welcome">
  741.     <TextView
  742.         android:id="@+id/mainword"
  743.         android:layout_width="fill_parent"
  744.         android:layout_height="fill_parent"
  745.         android:gravity="center"
  746.         android:textSize="22dp"
  747.         tools:ignore="MissingConstraints" />
  748. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  749. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  750.     xmlns:app="http://schemas.android.com/apk/res-auto"
  751.     xmlns:tools="http://schemas.android.com/tools"
  752.     android:layout_width="match_parent"
  753.     android:layout_height="match_parent"
  754.     tools:context=".Welcome">
  755.     <TextView
  756.         android:id="@+id/mainword"
  757.         android:layout_width="fill_parent"
  758.         android:layout_height="fill_parent"
  759.         android:gravity="center"
  760.         android:textSize="22dp"
  761.         tools:ignore="MissingConstraints" />
  762. </androidx.constraintlayout.widget.ConstraintLayout>/>
  763. <?xml version="1.0" encoding="utf-8"?>
  764. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  765.     xmlns:app="http://schemas.android.com/apk/res-auto"
  766.     xmlns:tools="http://schemas.android.com/tools"
  767.     android:layout_width="match_parent"
  768.     android:layout_height="match_parent"
  769.     tools:context=".Welcome">
  770.     <TextView
  771.         android:id="@+id/mainword"
  772.         android:layout_width="fill_parent"
  773.         android:layout_height="fill_parent"
  774.         android:gravity="center"
  775.         android:textSize="22dp"
  776.         tools:ignore="MissingConstraints" />
  777. </androidx.constraintlayout.widget.ConstraintLayout>
  778. <?xml version="1.0" encoding="utf-8"?>
  779. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  780.     xmlns:app="http://schemas.android.com/apk/res-auto"
  781.     xmlns:tools="http://schemas.android.com/tools"
  782.     android:layout_width="match_parent"
  783.     android:layout_height="match_parent"
  784.     tools:context=".Welcome">
  785.     <TextView
  786.         android:id="@+id/mainword"
  787.         android:layout_width="fill_parent"
  788.         android:layout_height="fill_parent"
  789.         android:gravity="center"
  790.         android:textSize="22dp"
  791.         tools:ignore="MissingConstraints" />
  792. </androidx.constraintlayout.widget.ConstraintLayout><TextView
  793. <?xml version="1.0" encoding="utf-8"?>
  794. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  795.     xmlns:app="http://schemas.android.com/apk/res-auto"
  796.     xmlns:tools="http://schemas.android.com/tools"
  797.     android:layout_width="match_parent"
  798.     android:layout_height="match_parent"
  799.     tools:context=".Welcome">
  800.     <TextView
  801.         android:id="@+id/mainword"
  802.         android:layout_width="fill_parent"
  803.         android:layout_height="fill_parent"
  804.         android:gravity="center"
  805.         android:textSize="22dp"
  806.         tools:ignore="MissingConstraints" />
  807. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  808. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  809.     xmlns:app="http://schemas.android.com/apk/res-auto"
  810.     xmlns:tools="http://schemas.android.com/tools"
  811.     android:layout_width="match_parent"
  812.     android:layout_height="match_parent"
  813.     tools:context=".Welcome">
  814.     <TextView
  815.         android:id="@+id/mainword"
  816.         android:layout_width="fill_parent"
  817.         android:layout_height="fill_parent"
  818.         android:gravity="center"
  819.         android:textSize="22dp"
  820.         tools:ignore="MissingConstraints" />
  821. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="fill_parent"
  822. <?xml version="1.0" encoding="utf-8"?>
  823. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  824.     xmlns:app="http://schemas.android.com/apk/res-auto"
  825.     xmlns:tools="http://schemas.android.com/tools"
  826.     android:layout_width="match_parent"
  827.     android:layout_height="match_parent"
  828.     tools:context=".Welcome">
  829.     <TextView
  830.         android:id="@+id/mainword"
  831.         android:layout_width="fill_parent"
  832.         android:layout_height="fill_parent"
  833.         android:gravity="center"
  834.         android:textSize="22dp"
  835.         tools:ignore="MissingConstraints" />
  836. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  837. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  838.     xmlns:app="http://schemas.android.com/apk/res-auto"
  839.     xmlns:tools="http://schemas.android.com/tools"
  840.     android:layout_width="match_parent"
  841.     android:layout_height="match_parent"
  842.     tools:context=".Welcome">
  843.     <TextView
  844.         android:id="@+id/mainword"
  845.         android:layout_width="fill_parent"
  846.         android:layout_height="fill_parent"
  847.         android:gravity="center"
  848.         android:textSize="22dp"
  849.         tools:ignore="MissingConstraints" />
  850. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  851. <?xml version="1.0" encoding="utf-8"?>
  852. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  853.     xmlns:app="http://schemas.android.com/apk/res-auto"
  854.     xmlns:tools="http://schemas.android.com/tools"
  855.     android:layout_width="match_parent"
  856.     android:layout_height="match_parent"
  857.     tools:context=".Welcome">
  858.     <TextView
  859.         android:id="@+id/mainword"
  860.         android:layout_width="fill_parent"
  861.         android:layout_height="fill_parent"
  862.         android:gravity="center"
  863.         android:textSize="22dp"
  864.         tools:ignore="MissingConstraints" />
  865. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  866. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  867.     xmlns:app="http://schemas.android.com/apk/res-auto"
  868.     xmlns:tools="http://schemas.android.com/tools"
  869.     android:layout_width="match_parent"
  870.     android:layout_height="match_parent"
  871.     tools:context=".Welcome">
  872.     <TextView
  873.         android:id="@+id/mainword"
  874.         android:layout_width="fill_parent"
  875.         android:layout_height="fill_parent"
  876.         android:gravity="center"
  877.         android:textSize="22dp"
  878.         tools:ignore="MissingConstraints" />
  879. </androidx.constraintlayout.widget.ConstraintLayout>android:text="确认密码:"
  880. <?xml version="1.0" encoding="utf-8"?>
  881. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  882.     xmlns:app="http://schemas.android.com/apk/res-auto"
  883.     xmlns:tools="http://schemas.android.com/tools"
  884.     android:layout_width="match_parent"
  885.     android:layout_height="match_parent"
  886.     tools:context=".Welcome">
  887.     <TextView
  888.         android:id="@+id/mainword"
  889.         android:layout_width="fill_parent"
  890.         android:layout_height="fill_parent"
  891.         android:gravity="center"
  892.         android:textSize="22dp"
  893.         tools:ignore="MissingConstraints" />
  894. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  895. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  896.     xmlns:app="http://schemas.android.com/apk/res-auto"
  897.     xmlns:tools="http://schemas.android.com/tools"
  898.     android:layout_width="match_parent"
  899.     android:layout_height="match_parent"
  900.     tools:context=".Welcome">
  901.     <TextView
  902.         android:id="@+id/mainword"
  903.         android:layout_width="fill_parent"
  904.         android:layout_height="fill_parent"
  905.         android:gravity="center"
  906.         android:textSize="22dp"
  907.         tools:ignore="MissingConstraints" />
  908. </androidx.constraintlayout.widget.ConstraintLayout>/>
  909. <?xml version="1.0" encoding="utf-8"?>
  910. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  911.     xmlns:app="http://schemas.android.com/apk/res-auto"
  912.     xmlns:tools="http://schemas.android.com/tools"
  913.     android:layout_width="match_parent"
  914.     android:layout_height="match_parent"
  915.     tools:context=".Welcome">
  916.     <TextView
  917.         android:id="@+id/mainword"
  918.         android:layout_width="fill_parent"
  919.         android:layout_height="fill_parent"
  920.         android:gravity="center"
  921.         android:textSize="22dp"
  922.         tools:ignore="MissingConstraints" />
  923. </androidx.constraintlayout.widget.ConstraintLayout><EditText
  924. <?xml version="1.0" encoding="utf-8"?>
  925. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  926.     xmlns:app="http://schemas.android.com/apk/res-auto"
  927.     xmlns:tools="http://schemas.android.com/tools"
  928.     android:layout_width="match_parent"
  929.     android:layout_height="match_parent"
  930.     tools:context=".Welcome">
  931.     <TextView
  932.         android:id="@+id/mainword"
  933.         android:layout_width="fill_parent"
  934.         android:layout_height="fill_parent"
  935.         android:gravity="center"
  936.         android:textSize="22dp"
  937.         tools:ignore="MissingConstraints" />
  938. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  939. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  940.     xmlns:app="http://schemas.android.com/apk/res-auto"
  941.     xmlns:tools="http://schemas.android.com/tools"
  942.     android:layout_width="match_parent"
  943.     android:layout_height="match_parent"
  944.     tools:context=".Welcome">
  945.     <TextView
  946.         android:id="@+id/mainword"
  947.         android:layout_width="fill_parent"
  948.         android:layout_height="fill_parent"
  949.         android:gravity="center"
  950.         android:textSize="22dp"
  951.         tools:ignore="MissingConstraints" />
  952. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/usepwd2"
  953. <?xml version="1.0" encoding="utf-8"?>
  954. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  955.     xmlns:app="http://schemas.android.com/apk/res-auto"
  956.     xmlns:tools="http://schemas.android.com/tools"
  957.     android:layout_width="match_parent"
  958.     android:layout_height="match_parent"
  959.     tools:context=".Welcome">
  960.     <TextView
  961.         android:id="@+id/mainword"
  962.         android:layout_width="fill_parent"
  963.         android:layout_height="fill_parent"
  964.         android:gravity="center"
  965.         android:textSize="22dp"
  966.         tools:ignore="MissingConstraints" />
  967. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  968. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  969.     xmlns:app="http://schemas.android.com/apk/res-auto"
  970.     xmlns:tools="http://schemas.android.com/tools"
  971.     android:layout_width="match_parent"
  972.     android:layout_height="match_parent"
  973.     tools:context=".Welcome">
  974.     <TextView
  975.         android:id="@+id/mainword"
  976.         android:layout_width="fill_parent"
  977.         android:layout_height="fill_parent"
  978.         android:gravity="center"
  979.         android:textSize="22dp"
  980.         tools:ignore="MissingConstraints" />
  981. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="fill_parent"
  982. <?xml version="1.0" encoding="utf-8"?>
  983. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  984.     xmlns:app="http://schemas.android.com/apk/res-auto"
  985.     xmlns:tools="http://schemas.android.com/tools"
  986.     android:layout_width="match_parent"
  987.     android:layout_height="match_parent"
  988.     tools:context=".Welcome">
  989.     <TextView
  990.         android:id="@+id/mainword"
  991.         android:layout_width="fill_parent"
  992.         android:layout_height="fill_parent"
  993.         android:gravity="center"
  994.         android:textSize="22dp"
  995.         tools:ignore="MissingConstraints" />
  996. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  997. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  998.     xmlns:app="http://schemas.android.com/apk/res-auto"
  999.     xmlns:tools="http://schemas.android.com/tools"
  1000.     android:layout_width="match_parent"
  1001.     android:layout_height="match_parent"
  1002.     tools:context=".Welcome">
  1003.     <TextView
  1004.         android:id="@+id/mainword"
  1005.         android:layout_width="fill_parent"
  1006.         android:layout_height="fill_parent"
  1007.         android:gravity="center"
  1008.         android:textSize="22dp"
  1009.         tools:ignore="MissingConstraints" />
  1010. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  1011. <?xml version="1.0" encoding="utf-8"?>
  1012. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1013.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1014.     xmlns:tools="http://schemas.android.com/tools"
  1015.     android:layout_width="match_parent"
  1016.     android:layout_height="match_parent"
  1017.     tools:context=".Welcome">
  1018.     <TextView
  1019.         android:id="@+id/mainword"
  1020.         android:layout_width="fill_parent"
  1021.         android:layout_height="fill_parent"
  1022.         android:gravity="center"
  1023.         android:textSize="22dp"
  1024.         tools:ignore="MissingConstraints" />
  1025. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1026. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1027.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1028.     xmlns:tools="http://schemas.android.com/tools"
  1029.     android:layout_width="match_parent"
  1030.     android:layout_height="match_parent"
  1031.     tools:context=".Welcome">
  1032.     <TextView
  1033.         android:id="@+id/mainword"
  1034.         android:layout_width="fill_parent"
  1035.         android:layout_height="fill_parent"
  1036.         android:gravity="center"
  1037.         android:textSize="22dp"
  1038.         tools:ignore="MissingConstraints" />
  1039. </androidx.constraintlayout.widget.ConstraintLayout>android:inputType="textPassword"
  1040. <?xml version="1.0" encoding="utf-8"?>
  1041. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1042.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1043.     xmlns:tools="http://schemas.android.com/tools"
  1044.     android:layout_width="match_parent"
  1045.     android:layout_height="match_parent"
  1046.     tools:context=".Welcome">
  1047.     <TextView
  1048.         android:id="@+id/mainword"
  1049.         android:layout_width="fill_parent"
  1050.         android:layout_height="fill_parent"
  1051.         android:gravity="center"
  1052.         android:textSize="22dp"
  1053.         tools:ignore="MissingConstraints" />
  1054. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1055. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1056.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1057.     xmlns:tools="http://schemas.android.com/tools"
  1058.     android:layout_width="match_parent"
  1059.     android:layout_height="match_parent"
  1060.     tools:context=".Welcome">
  1061.     <TextView
  1062.         android:id="@+id/mainword"
  1063.         android:layout_width="fill_parent"
  1064.         android:layout_height="fill_parent"
  1065.         android:gravity="center"
  1066.         android:textSize="22dp"
  1067.         tools:ignore="MissingConstraints" />
  1068. </androidx.constraintlayout.widget.ConstraintLayout>/>
  1069. <?xml version="1.0" encoding="utf-8"?>
  1070. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1071.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1072.     xmlns:tools="http://schemas.android.com/tools"
  1073.     android:layout_width="match_parent"
  1074.     android:layout_height="match_parent"
  1075.     tools:context=".Welcome">
  1076.     <TextView
  1077.         android:id="@+id/mainword"
  1078.         android:layout_width="fill_parent"
  1079.         android:layout_height="fill_parent"
  1080.         android:gravity="center"
  1081.         android:textSize="22dp"
  1082.         tools:ignore="MissingConstraints" />
  1083. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1084. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1085.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1086.     xmlns:tools="http://schemas.android.com/tools"
  1087.     android:layout_width="match_parent"
  1088.     android:layout_height="match_parent"
  1089.     tools:context=".Welcome">
  1090.     <TextView
  1091.         android:id="@+id/mainword"
  1092.         android:layout_width="fill_parent"
  1093.         android:layout_height="fill_parent"
  1094.         android:gravity="center"
  1095.         android:textSize="22dp"
  1096.         tools:ignore="MissingConstraints" />
  1097. </androidx.constraintlayout.widget.ConstraintLayout><Button
  1098. <?xml version="1.0" encoding="utf-8"?>
  1099. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1100.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1101.     xmlns:tools="http://schemas.android.com/tools"
  1102.     android:layout_width="match_parent"
  1103.     android:layout_height="match_parent"
  1104.     tools:context=".Welcome">
  1105.     <TextView
  1106.         android:id="@+id/mainword"
  1107.         android:layout_width="fill_parent"
  1108.         android:layout_height="fill_parent"
  1109.         android:gravity="center"
  1110.         android:textSize="22dp"
  1111.         tools:ignore="MissingConstraints" />
  1112. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1113. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1114.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1115.     xmlns:tools="http://schemas.android.com/tools"
  1116.     android:layout_width="match_parent"
  1117.     android:layout_height="match_parent"
  1118.     tools:context=".Welcome">
  1119.     <TextView
  1120.         android:id="@+id/mainword"
  1121.         android:layout_width="fill_parent"
  1122.         android:layout_height="fill_parent"
  1123.         android:gravity="center"
  1124.         android:textSize="22dp"
  1125.         tools:ignore="MissingConstraints" />
  1126. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1127. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1128.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1129.     xmlns:tools="http://schemas.android.com/tools"
  1130.     android:layout_width="match_parent"
  1131.     android:layout_height="match_parent"
  1132.     tools:context=".Welcome">
  1133.     <TextView
  1134.         android:id="@+id/mainword"
  1135.         android:layout_width="fill_parent"
  1136.         android:layout_height="fill_parent"
  1137.         android:gravity="center"
  1138.         android:textSize="22dp"
  1139.         tools:ignore="MissingConstraints" />
  1140. </androidx.constraintlayout.widget.ConstraintLayout>android:id="@+id/submit"
  1141. <?xml version="1.0" encoding="utf-8"?>
  1142. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1143.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1144.     xmlns:tools="http://schemas.android.com/tools"
  1145.     android:layout_width="match_parent"
  1146.     android:layout_height="match_parent"
  1147.     tools:context=".Welcome">
  1148.     <TextView
  1149.         android:id="@+id/mainword"
  1150.         android:layout_width="fill_parent"
  1151.         android:layout_height="fill_parent"
  1152.         android:gravity="center"
  1153.         android:textSize="22dp"
  1154.         tools:ignore="MissingConstraints" />
  1155. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1156. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1157.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1158.     xmlns:tools="http://schemas.android.com/tools"
  1159.     android:layout_width="match_parent"
  1160.     android:layout_height="match_parent"
  1161.     tools:context=".Welcome">
  1162.     <TextView
  1163.         android:id="@+id/mainword"
  1164.         android:layout_width="fill_parent"
  1165.         android:layout_height="fill_parent"
  1166.         android:gravity="center"
  1167.         android:textSize="22dp"
  1168.         tools:ignore="MissingConstraints" />
  1169. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1170. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1171.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1172.     xmlns:tools="http://schemas.android.com/tools"
  1173.     android:layout_width="match_parent"
  1174.     android:layout_height="match_parent"
  1175.     tools:context=".Welcome">
  1176.     <TextView
  1177.         android:id="@+id/mainword"
  1178.         android:layout_width="fill_parent"
  1179.         android:layout_height="fill_parent"
  1180.         android:gravity="center"
  1181.         android:textSize="22dp"
  1182.         tools:ignore="MissingConstraints" />
  1183. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_width="fill_parent"
  1184. <?xml version="1.0" encoding="utf-8"?>
  1185. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1186.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1187.     xmlns:tools="http://schemas.android.com/tools"
  1188.     android:layout_width="match_parent"
  1189.     android:layout_height="match_parent"
  1190.     tools:context=".Welcome">
  1191.     <TextView
  1192.         android:id="@+id/mainword"
  1193.         android:layout_width="fill_parent"
  1194.         android:layout_height="fill_parent"
  1195.         android:gravity="center"
  1196.         android:textSize="22dp"
  1197.         tools:ignore="MissingConstraints" />
  1198. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1199. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1200.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1201.     xmlns:tools="http://schemas.android.com/tools"
  1202.     android:layout_width="match_parent"
  1203.     android:layout_height="match_parent"
  1204.     tools:context=".Welcome">
  1205.     <TextView
  1206.         android:id="@+id/mainword"
  1207.         android:layout_width="fill_parent"
  1208.         android:layout_height="fill_parent"
  1209.         android:gravity="center"
  1210.         android:textSize="22dp"
  1211.         tools:ignore="MissingConstraints" />
  1212. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1213. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1214.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1215.     xmlns:tools="http://schemas.android.com/tools"
  1216.     android:layout_width="match_parent"
  1217.     android:layout_height="match_parent"
  1218.     tools:context=".Welcome">
  1219.     <TextView
  1220.         android:id="@+id/mainword"
  1221.         android:layout_width="fill_parent"
  1222.         android:layout_height="fill_parent"
  1223.         android:gravity="center"
  1224.         android:textSize="22dp"
  1225.         tools:ignore="MissingConstraints" />
  1226. </androidx.constraintlayout.widget.ConstraintLayout>android:layout_height="wrap_content"
  1227. <?xml version="1.0" encoding="utf-8"?>
  1228. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1229.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1230.     xmlns:tools="http://schemas.android.com/tools"
  1231.     android:layout_width="match_parent"
  1232.     android:layout_height="match_parent"
  1233.     tools:context=".Welcome">
  1234.     <TextView
  1235.         android:id="@+id/mainword"
  1236.         android:layout_width="fill_parent"
  1237.         android:layout_height="fill_parent"
  1238.         android:gravity="center"
  1239.         android:textSize="22dp"
  1240.         tools:ignore="MissingConstraints" />
  1241. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1242. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1243.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1244.     xmlns:tools="http://schemas.android.com/tools"
  1245.     android:layout_width="match_parent"
  1246.     android:layout_height="match_parent"
  1247.     tools:context=".Welcome">
  1248.     <TextView
  1249.         android:id="@+id/mainword"
  1250.         android:layout_width="fill_parent"
  1251.         android:layout_height="fill_parent"
  1252.         android:gravity="center"
  1253.         android:textSize="22dp"
  1254.         tools:ignore="MissingConstraints" />
  1255. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  1256. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1257.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1258.     xmlns:tools="http://schemas.android.com/tools"
  1259.     android:layout_width="match_parent"
  1260.     android:layout_height="match_parent"
  1261.     tools:context=".Welcome">
  1262.     <TextView
  1263.         android:id="@+id/mainword"
  1264.         android:layout_width="fill_parent"
  1265.         android:layout_height="fill_parent"
  1266.         android:gravity="center"
  1267.         android:textSize="22dp"
  1268.         tools:ignore="MissingConstraints" />
  1269. </androidx.constraintlayout.widget.ConstraintLayout>android:text="注册" />
  1270. <?xml version="1.0" encoding="utf-8"?>
  1271. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  1272.     xmlns:app="http://schemas.android.com/apk/res-auto"
  1273.     xmlns:tools="http://schemas.android.com/tools"
  1274.     android:layout_width="match_parent"
  1275.     android:layout_height="match_parent"
  1276.     tools:context=".Welcome">
  1277.     <TextView
  1278.         android:id="@+id/mainword"
  1279.         android:layout_width="fill_parent"
  1280.         android:layout_height="fill_parent"
  1281.         android:gravity="center"
  1282.         android:textSize="22dp"
  1283.         tools:ignore="MissingConstraints" />
  1284. </androidx.constraintlayout.widget.ConstraintLayout></LinearLayout>
  1285. </androidx.constraintlayout.widget.ConstraintLayout>
复制代码
3.欢迎界面——Welcome.java

  1. package com.example.test06;
  2. import androidx.appcompat.app.AppCompatActivity;
  3. import android.content.SharedPreferences;
  4. import android.os.Bundle;
  5. import android.widget.TextView;
  6. public class Welcome extends AppCompatActivity {
  7. <?xml version="1.0" encoding="utf-8"?>
  8. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  9.     xmlns:app="http://schemas.android.com/apk/res-auto"
  10.     xmlns:tools="http://schemas.android.com/tools"
  11.     android:layout_width="match_parent"
  12.     android:layout_height="match_parent"
  13.     tools:context=".Welcome">
  14.     <TextView
  15.         android:id="@+id/mainword"
  16.         android:layout_width="fill_parent"
  17.         android:layout_height="fill_parent"
  18.         android:gravity="center"
  19.         android:textSize="22dp"
  20.         tools:ignore="MissingConstraints" />
  21. </androidx.constraintlayout.widget.ConstraintLayout>SharedPreferences sp;
  22. <?xml version="1.0" encoding="utf-8"?>
  23. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  24.     xmlns:app="http://schemas.android.com/apk/res-auto"
  25.     xmlns:tools="http://schemas.android.com/tools"
  26.     android:layout_width="match_parent"
  27.     android:layout_height="match_parent"
  28.     tools:context=".Welcome">
  29.     <TextView
  30.         android:id="@+id/mainword"
  31.         android:layout_width="fill_parent"
  32.         android:layout_height="fill_parent"
  33.         android:gravity="center"
  34.         android:textSize="22dp"
  35.         tools:ignore="MissingConstraints" />
  36. </androidx.constraintlayout.widget.ConstraintLayout>TextView showhello;
  37. <?xml version="1.0" encoding="utf-8"?>
  38. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  39.     xmlns:app="http://schemas.android.com/apk/res-auto"
  40.     xmlns:tools="http://schemas.android.com/tools"
  41.     android:layout_width="match_parent"
  42.     android:layout_height="match_parent"
  43.     tools:context=".Welcome">
  44.     <TextView
  45.         android:id="@+id/mainword"
  46.         android:layout_width="fill_parent"
  47.         android:layout_height="fill_parent"
  48.         android:gravity="center"
  49.         android:textSize="22dp"
  50.         tools:ignore="MissingConstraints" />
  51. </androidx.constraintlayout.widget.ConstraintLayout>@Override
  52. <?xml version="1.0" encoding="utf-8"?>
  53. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  54.     xmlns:app="http://schemas.android.com/apk/res-auto"
  55.     xmlns:tools="http://schemas.android.com/tools"
  56.     android:layout_width="match_parent"
  57.     android:layout_height="match_parent"
  58.     tools:context=".Welcome">
  59.     <TextView
  60.         android:id="@+id/mainword"
  61.         android:layout_width="fill_parent"
  62.         android:layout_height="fill_parent"
  63.         android:gravity="center"
  64.         android:textSize="22dp"
  65.         tools:ignore="MissingConstraints" />
  66. </androidx.constraintlayout.widget.ConstraintLayout>protected void onCreate(Bundle savedInstanceState) {
  67. <?xml version="1.0" encoding="utf-8"?>
  68. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  69.     xmlns:app="http://schemas.android.com/apk/res-auto"
  70.     xmlns:tools="http://schemas.android.com/tools"
  71.     android:layout_width="match_parent"
  72.     android:layout_height="match_parent"
  73.     tools:context=".Welcome">
  74.     <TextView
  75.         android:id="@+id/mainword"
  76.         android:layout_width="fill_parent"
  77.         android:layout_height="fill_parent"
  78.         android:gravity="center"
  79.         android:textSize="22dp"
  80.         tools:ignore="MissingConstraints" />
  81. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  82. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  83.     xmlns:app="http://schemas.android.com/apk/res-auto"
  84.     xmlns:tools="http://schemas.android.com/tools"
  85.     android:layout_width="match_parent"
  86.     android:layout_height="match_parent"
  87.     tools:context=".Welcome">
  88.     <TextView
  89.         android:id="@+id/mainword"
  90.         android:layout_width="fill_parent"
  91.         android:layout_height="fill_parent"
  92.         android:gravity="center"
  93.         android:textSize="22dp"
  94.         tools:ignore="MissingConstraints" />
  95. </androidx.constraintlayout.widget.ConstraintLayout>super.onCreate(savedInstanceState);
  96. <?xml version="1.0" encoding="utf-8"?>
  97. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  98.     xmlns:app="http://schemas.android.com/apk/res-auto"
  99.     xmlns:tools="http://schemas.android.com/tools"
  100.     android:layout_width="match_parent"
  101.     android:layout_height="match_parent"
  102.     tools:context=".Welcome">
  103.     <TextView
  104.         android:id="@+id/mainword"
  105.         android:layout_width="fill_parent"
  106.         android:layout_height="fill_parent"
  107.         android:gravity="center"
  108.         android:textSize="22dp"
  109.         tools:ignore="MissingConstraints" />
  110. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  111. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  112.     xmlns:app="http://schemas.android.com/apk/res-auto"
  113.     xmlns:tools="http://schemas.android.com/tools"
  114.     android:layout_width="match_parent"
  115.     android:layout_height="match_parent"
  116.     tools:context=".Welcome">
  117.     <TextView
  118.         android:id="@+id/mainword"
  119.         android:layout_width="fill_parent"
  120.         android:layout_height="fill_parent"
  121.         android:gravity="center"
  122.         android:textSize="22dp"
  123.         tools:ignore="MissingConstraints" />
  124. </androidx.constraintlayout.widget.ConstraintLayout>setContentView(R.layout.activity_welcome);
  125. <?xml version="1.0" encoding="utf-8"?>
  126. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  127.     xmlns:app="http://schemas.android.com/apk/res-auto"
  128.     xmlns:tools="http://schemas.android.com/tools"
  129.     android:layout_width="match_parent"
  130.     android:layout_height="match_parent"
  131.     tools:context=".Welcome">
  132.     <TextView
  133.         android:id="@+id/mainword"
  134.         android:layout_width="fill_parent"
  135.         android:layout_height="fill_parent"
  136.         android:gravity="center"
  137.         android:textSize="22dp"
  138.         tools:ignore="MissingConstraints" />
  139. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  140. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  141.     xmlns:app="http://schemas.android.com/apk/res-auto"
  142.     xmlns:tools="http://schemas.android.com/tools"
  143.     android:layout_width="match_parent"
  144.     android:layout_height="match_parent"
  145.     tools:context=".Welcome">
  146.     <TextView
  147.         android:id="@+id/mainword"
  148.         android:layout_width="fill_parent"
  149.         android:layout_height="fill_parent"
  150.         android:gravity="center"
  151.         android:textSize="22dp"
  152.         tools:ignore="MissingConstraints" />
  153. </androidx.constraintlayout.widget.ConstraintLayout>sp = this.getSharedPreferences("username", this.MODE_PRIVATE);  //获取sharepreferences
  154. <?xml version="1.0" encoding="utf-8"?>
  155. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  156.     xmlns:app="http://schemas.android.com/apk/res-auto"
  157.     xmlns:tools="http://schemas.android.com/tools"
  158.     android:layout_width="match_parent"
  159.     android:layout_height="match_parent"
  160.     tools:context=".Welcome">
  161.     <TextView
  162.         android:id="@+id/mainword"
  163.         android:layout_width="fill_parent"
  164.         android:layout_height="fill_parent"
  165.         android:gravity="center"
  166.         android:textSize="22dp"
  167.         tools:ignore="MissingConstraints" />
  168. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  169. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  170.     xmlns:app="http://schemas.android.com/apk/res-auto"
  171.     xmlns:tools="http://schemas.android.com/tools"
  172.     android:layout_width="match_parent"
  173.     android:layout_height="match_parent"
  174.     tools:context=".Welcome">
  175.     <TextView
  176.         android:id="@+id/mainword"
  177.         android:layout_width="fill_parent"
  178.         android:layout_height="fill_parent"
  179.         android:gravity="center"
  180.         android:textSize="22dp"
  181.         tools:ignore="MissingConstraints" />
  182. </androidx.constraintlayout.widget.ConstraintLayout>showhello = this.findViewById(R.id.mainword);<?xml version="1.0" encoding="utf-8"?>
  183. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  184.     xmlns:app="http://schemas.android.com/apk/res-auto"
  185.     xmlns:tools="http://schemas.android.com/tools"
  186.     android:layout_width="match_parent"
  187.     android:layout_height="match_parent"
  188.     tools:context=".Welcome">
  189.     <TextView
  190.         android:id="@+id/mainword"
  191.         android:layout_width="fill_parent"
  192.         android:layout_height="fill_parent"
  193.         android:gravity="center"
  194.         android:textSize="22dp"
  195.         tools:ignore="MissingConstraints" />
  196. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  197. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  198.     xmlns:app="http://schemas.android.com/apk/res-auto"
  199.     xmlns:tools="http://schemas.android.com/tools"
  200.     android:layout_width="match_parent"
  201.     android:layout_height="match_parent"
  202.     tools:context=".Welcome">
  203.     <TextView
  204.         android:id="@+id/mainword"
  205.         android:layout_width="fill_parent"
  206.         android:layout_height="fill_parent"
  207.         android:gravity="center"
  208.         android:textSize="22dp"
  209.         tools:ignore="MissingConstraints" />
  210. </androidx.constraintlayout.widget.ConstraintLayout>   //显示欢迎
  211. <?xml version="1.0" encoding="utf-8"?>
  212. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  213.     xmlns:app="http://schemas.android.com/apk/res-auto"
  214.     xmlns:tools="http://schemas.android.com/tools"
  215.     android:layout_width="match_parent"
  216.     android:layout_height="match_parent"
  217.     tools:context=".Welcome">
  218.     <TextView
  219.         android:id="@+id/mainword"
  220.         android:layout_width="fill_parent"
  221.         android:layout_height="fill_parent"
  222.         android:gravity="center"
  223.         android:textSize="22dp"
  224.         tools:ignore="MissingConstraints" />
  225. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  226. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  227.     xmlns:app="http://schemas.android.com/apk/res-auto"
  228.     xmlns:tools="http://schemas.android.com/tools"
  229.     android:layout_width="match_parent"
  230.     android:layout_height="match_parent"
  231.     tools:context=".Welcome">
  232.     <TextView
  233.         android:id="@+id/mainword"
  234.         android:layout_width="fill_parent"
  235.         android:layout_height="fill_parent"
  236.         android:gravity="center"
  237.         android:textSize="22dp"
  238.         tools:ignore="MissingConstraints" />
  239. </androidx.constraintlayout.widget.ConstraintLayout>showhello.setText("欢迎你!"+sp.getString("Loginname",""));<?xml version="1.0" encoding="utf-8"?>
  240. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  241.     xmlns:app="http://schemas.android.com/apk/res-auto"
  242.     xmlns:tools="http://schemas.android.com/tools"
  243.     android:layout_width="match_parent"
  244.     android:layout_height="match_parent"
  245.     tools:context=".Welcome">
  246.     <TextView
  247.         android:id="@+id/mainword"
  248.         android:layout_width="fill_parent"
  249.         android:layout_height="fill_parent"
  250.         android:gravity="center"
  251.         android:textSize="22dp"
  252.         tools:ignore="MissingConstraints" />
  253. </androidx.constraintlayout.widget.ConstraintLayout> //获取用户名
  254. <?xml version="1.0" encoding="utf-8"?>
  255. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  256.     xmlns:app="http://schemas.android.com/apk/res-auto"
  257.     xmlns:tools="http://schemas.android.com/tools"
  258.     android:layout_width="match_parent"
  259.     android:layout_height="match_parent"
  260.     tools:context=".Welcome">
  261.     <TextView
  262.         android:id="@+id/mainword"
  263.         android:layout_width="fill_parent"
  264.         android:layout_height="fill_parent"
  265.         android:gravity="center"
  266.         android:textSize="22dp"
  267.         tools:ignore="MissingConstraints" />
  268. </androidx.constraintlayout.widget.ConstraintLayout>}
  269. }
复制代码
这是对应的布局文件activity_welcome.xml
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     tools:context=".Welcome">
  8.     <TextView
  9.         android:id="@+id/mainword"
  10.         android:layout_width="fill_parent"
  11.         android:layout_height="fill_parent"
  12.         android:gravity="center"
  13.         android:textSize="22dp"
  14.         tools:ignore="MissingConstraints" />
  15. </androidx.constraintlayout.widget.ConstraintLayout>
复制代码
4.数据库——Mysql.java

  1. package com.example.test06;import android.content.Context;import android.database.sqlite.SQLiteDatabase;import android.database.sqlite.SQLiteOpenHelper;import androidx.annotation.Nullable;public class Mysql extends SQLiteOpenHelper {<?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.     xmlns:app="http://schemas.android.com/apk/res-auto"
  4.     xmlns:tools="http://schemas.android.com/tools"
  5.     android:layout_width="match_parent"
  6.     android:layout_height="match_parent"
  7.     tools:context=".Welcome">
  8.     <TextView
  9.         android:id="@+id/mainword"
  10.         android:layout_width="fill_parent"
  11.         android:layout_height="fill_parent"
  12.         android:gravity="center"
  13.         android:textSize="22dp"
  14.         tools:ignore="MissingConstraints" />
  15. </androidx.constraintlayout.widget.ConstraintLayout>public Mysql(@Nullable Context context, @Nullable String name, @Nullable SQLiteDatabase.CursorFactory factory, int version) {<?xml version="1.0" encoding="utf-8"?>
  16. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  17.     xmlns:app="http://schemas.android.com/apk/res-auto"
  18.     xmlns:tools="http://schemas.android.com/tools"
  19.     android:layout_width="match_parent"
  20.     android:layout_height="match_parent"
  21.     tools:context=".Welcome">
  22.     <TextView
  23.         android:id="@+id/mainword"
  24.         android:layout_width="fill_parent"
  25.         android:layout_height="fill_parent"
  26.         android:gravity="center"
  27.         android:textSize="22dp"
  28.         tools:ignore="MissingConstraints" />
  29. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  30. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  31.     xmlns:app="http://schemas.android.com/apk/res-auto"
  32.     xmlns:tools="http://schemas.android.com/tools"
  33.     android:layout_width="match_parent"
  34.     android:layout_height="match_parent"
  35.     tools:context=".Welcome">
  36.     <TextView
  37.         android:id="@+id/mainword"
  38.         android:layout_width="fill_parent"
  39.         android:layout_height="fill_parent"
  40.         android:gravity="center"
  41.         android:textSize="22dp"
  42.         tools:ignore="MissingConstraints" />
  43. </androidx.constraintlayout.widget.ConstraintLayout>super(context, name, factory, version);<?xml version="1.0" encoding="utf-8"?>
  44. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  45.     xmlns:app="http://schemas.android.com/apk/res-auto"
  46.     xmlns:tools="http://schemas.android.com/tools"
  47.     android:layout_width="match_parent"
  48.     android:layout_height="match_parent"
  49.     tools:context=".Welcome">
  50.     <TextView
  51.         android:id="@+id/mainword"
  52.         android:layout_width="fill_parent"
  53.         android:layout_height="fill_parent"
  54.         android:gravity="center"
  55.         android:textSize="22dp"
  56.         tools:ignore="MissingConstraints" />
  57. </androidx.constraintlayout.widget.ConstraintLayout>}<?xml version="1.0" encoding="utf-8"?>
  58. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  59.     xmlns:app="http://schemas.android.com/apk/res-auto"
  60.     xmlns:tools="http://schemas.android.com/tools"
  61.     android:layout_width="match_parent"
  62.     android:layout_height="match_parent"
  63.     tools:context=".Welcome">
  64.     <TextView
  65.         android:id="@+id/mainword"
  66.         android:layout_width="fill_parent"
  67.         android:layout_height="fill_parent"
  68.         android:gravity="center"
  69.         android:textSize="22dp"
  70.         tools:ignore="MissingConstraints" />
  71. </androidx.constraintlayout.widget.ConstraintLayout>@Override<?xml version="1.0" encoding="utf-8"?>
  72. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  73.     xmlns:app="http://schemas.android.com/apk/res-auto"
  74.     xmlns:tools="http://schemas.android.com/tools"
  75.     android:layout_width="match_parent"
  76.     android:layout_height="match_parent"
  77.     tools:context=".Welcome">
  78.     <TextView
  79.         android:id="@+id/mainword"
  80.         android:layout_width="fill_parent"
  81.         android:layout_height="fill_parent"
  82.         android:gravity="center"
  83.         android:textSize="22dp"
  84.         tools:ignore="MissingConstraints" />
  85. </androidx.constraintlayout.widget.ConstraintLayout>public void onCreate(SQLiteDatabase db) {<?xml version="1.0" encoding="utf-8"?>
  86. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  87.     xmlns:app="http://schemas.android.com/apk/res-auto"
  88.     xmlns:tools="http://schemas.android.com/tools"
  89.     android:layout_width="match_parent"
  90.     android:layout_height="match_parent"
  91.     tools:context=".Welcome">
  92.     <TextView
  93.         android:id="@+id/mainword"
  94.         android:layout_width="fill_parent"
  95.         android:layout_height="fill_parent"
  96.         android:gravity="center"
  97.         android:textSize="22dp"
  98.         tools:ignore="MissingConstraints" />
  99. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  100. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  101.     xmlns:app="http://schemas.android.com/apk/res-auto"
  102.     xmlns:tools="http://schemas.android.com/tools"
  103.     android:layout_width="match_parent"
  104.     android:layout_height="match_parent"
  105.     tools:context=".Welcome">
  106.     <TextView
  107.         android:id="@+id/mainword"
  108.         android:layout_width="fill_parent"
  109.         android:layout_height="fill_parent"
  110.         android:gravity="center"
  111.         android:textSize="22dp"
  112.         tools:ignore="MissingConstraints" />
  113. </androidx.constraintlayout.widget.ConstraintLayout>String sql = "create table logins(id integer primary key autoincrement,usname text,uspwd text)";<?xml version="1.0" encoding="utf-8"?>
  114. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  115.     xmlns:app="http://schemas.android.com/apk/res-auto"
  116.     xmlns:tools="http://schemas.android.com/tools"
  117.     android:layout_width="match_parent"
  118.     android:layout_height="match_parent"
  119.     tools:context=".Welcome">
  120.     <TextView
  121.         android:id="@+id/mainword"
  122.         android:layout_width="fill_parent"
  123.         android:layout_height="fill_parent"
  124.         android:gravity="center"
  125.         android:textSize="22dp"
  126.         tools:ignore="MissingConstraints" />
  127. </androidx.constraintlayout.widget.ConstraintLayout><?xml version="1.0" encoding="utf-8"?>
  128. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  129.     xmlns:app="http://schemas.android.com/apk/res-auto"
  130.     xmlns:tools="http://schemas.android.com/tools"
  131.     android:layout_width="match_parent"
  132.     android:layout_height="match_parent"
  133.     tools:context=".Welcome">
  134.     <TextView
  135.         android:id="@+id/mainword"
  136.         android:layout_width="fill_parent"
  137.         android:layout_height="fill_parent"
  138.         android:gravity="center"
  139.         android:textSize="22dp"
  140.         tools:ignore="MissingConstraints" />
  141. </androidx.constraintlayout.widget.ConstraintLayout>db.execSQL(sql);<?xml version="1.0" encoding="utf-8"?>
  142. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  143.     xmlns:app="http://schemas.android.com/apk/res-auto"
  144.     xmlns:tools="http://schemas.android.com/tools"
  145.     android:layout_width="match_parent"
  146.     android:layout_height="match_parent"
  147.     tools:context=".Welcome">
  148.     <TextView
  149.         android:id="@+id/mainword"
  150.         android:layout_width="fill_parent"
  151.         android:layout_height="fill_parent"
  152.         android:gravity="center"
  153.         android:textSize="22dp"
  154.         tools:ignore="MissingConstraints" />
  155. </androidx.constraintlayout.widget.ConstraintLayout>}<?xml version="1.0" encoding="utf-8"?>
  156. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  157.     xmlns:app="http://schemas.android.com/apk/res-auto"
  158.     xmlns:tools="http://schemas.android.com/tools"
  159.     android:layout_width="match_parent"
  160.     android:layout_height="match_parent"
  161.     tools:context=".Welcome">
  162.     <TextView
  163.         android:id="@+id/mainword"
  164.         android:layout_width="fill_parent"
  165.         android:layout_height="fill_parent"
  166.         android:gravity="center"
  167.         android:textSize="22dp"
  168.         tools:ignore="MissingConstraints" />
  169. </androidx.constraintlayout.widget.ConstraintLayout>@Override<?xml version="1.0" encoding="utf-8"?>
  170. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  171.     xmlns:app="http://schemas.android.com/apk/res-auto"
  172.     xmlns:tools="http://schemas.android.com/tools"
  173.     android:layout_width="match_parent"
  174.     android:layout_height="match_parent"
  175.     tools:context=".Welcome">
  176.     <TextView
  177.         android:id="@+id/mainword"
  178.         android:layout_width="fill_parent"
  179.         android:layout_height="fill_parent"
  180.         android:gravity="center"
  181.         android:textSize="22dp"
  182.         tools:ignore="MissingConstraints" />
  183. </androidx.constraintlayout.widget.ConstraintLayout>public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {<?xml version="1.0" encoding="utf-8"?>
  184. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  185.     xmlns:app="http://schemas.android.com/apk/res-auto"
  186.     xmlns:tools="http://schemas.android.com/tools"
  187.     android:layout_width="match_parent"
  188.     android:layout_height="match_parent"
  189.     tools:context=".Welcome">
  190.     <TextView
  191.         android:id="@+id/mainword"
  192.         android:layout_width="fill_parent"
  193.         android:layout_height="fill_parent"
  194.         android:gravity="center"
  195.         android:textSize="22dp"
  196.         tools:ignore="MissingConstraints" />
  197. </androidx.constraintlayout.widget.ConstraintLayout>}}
复制代码
       代码可能有些简陋,考虑也可能没那么全面,但基本的功能还是可以的。暂时没发现什么大的问题。

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!

本帖子中包含更多资源

您需要 登录 才可以下载或查看,没有账号?立即注册

x
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

守听

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表