<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
本文是用來介紹Android Studio建立註冊頁面跳轉登入頁面的介面設計以及跳轉功能地實現,完整結構見文章結尾。
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/CL" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <!----> <!----> <TextView android:id="@+id/textView" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginLeft="30dp" android:layout_marginTop="30dp" android:text="使用者名稱:" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintHorizontal_bias="0.047" app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintRight_toRightOf="parent" app:layout_constraintTop_toTopOf="parent" app:layout_constraintVertical_bias="0.064" /> <EditText android:id="@+id/et1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="16dp" android:layout_marginLeft="16dp" android:layout_marginTop="72dp" android:ems="10" android:hint="請輸入你的使用者名稱" android:inputType="textPersonName" app:layout_constraintStart_toEndOf="@+id/textView" app:layout_constraintTop_toTopOf="parent" /> <TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="56dp" android:layout_marginLeft="56dp" android:layout_marginTop="28dp" android:text="密碼:" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/et1" /> <EditText android:id="@+id/et2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="20dp" android:layout_marginLeft="20dp" android:layout_marginTop="30dp" android:ems="10" android:hint="請輸入你的密碼" android:inputType="textPassword" app:layout_constraintStart_toEndOf="@+id/textView2" app:layout_constraintTop_toBottomOf="@+id/et1" /> <TextView android:id="@+id/textView3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="28dp" android:layout_marginLeft="28dp" android:layout_marginTop="24dp" android:text="性別" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/et2" /> <RadioGroup android:id="@+id/rg" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="30dp" android:layout_marginLeft="30dp" android:layout_marginTop="60dp" android:orientation="horizontal" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/et2"> <RadioButton android:id="@+id/rb1" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="男" /> <RadioButton android:id="@+id/rb2" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="女" /> </RadioGroup> <TextView android:id="@+id/textView4" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="30dp" android:layout_marginLeft="30dp" android:layout_marginTop="30dp" android:text="興趣愛好" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/rg" /> <CheckBox android:id="@+id/cb1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="28dp" android:layout_marginLeft="28dp" android:layout_marginTop="16dp" android:text="遊戲程式設計" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/textView4" /> <CheckBox android:id="@+id/cb2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="28dp" android:layout_marginLeft="28dp" android:text="王者榮耀" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/cb1" /> <CheckBox android:id="@+id/cb3" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginStart="28dp" android:layout_marginLeft="28dp" android:text="看《覺醒年代》" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/cb2" /> <Button android:id="@+id/button" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="36dp" android:text="註冊" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintHorizontal_bias="0.498" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/cb3" /> <TextView android:id="@+id/tv" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_marginTop="40dp" android:text="執行結果" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toBottomOf="@+id/button" /> </androidx.constraintlayout.widget.ConstraintLayout>
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:xmlna="http://schemas.android.com/apk/res-auto" android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#F1EAF3"> <com.example.myapplication1.TitleLayout android:layout_width="match_parent" android:layout_height="wrap_content"/> <TextView android:layout_width="fill_parent" android:layout_height="90dp" android:text="登 錄 界 面" android:textColor="#232121" android:textSize="40dp" android:gravity="center"> </TextView> <LinearLayout android:orientation="vertical" android:layout_width="fill_parent" android:layout_height="wrap_content" android:background="#F1EAF3" android:paddingLeft="5dip" android:paddingRight="5dip" android:paddingTop="5dip"> <LinearLayout android:id="@+id/LinearLayout1" android:orientation="horizontal" android:layout_width="fill_parent" android:layout_height="fill_parent"> <TextView android:id="@+id/TextView2" android:layout_width="wrap_content" android:layout_height="40dip" android:layout_marginLeft="5dip" android:textSize="23dip" android:gravity="center_vertical" android:background="#F0E1F3" android:text="使用者名稱:"> </TextView> <EditText android:id="@+id/EditTextuid" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" android:layout_marginLeft="0dip" android:text="" android:textSize="23dip"> </EditText> </LinearLayout> <LinearLayout android:id="@+id/LinearLayout2" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <TextView android:id="@+id/TextView3" android:layout_width="wrap_content" android:layout_height="40dip" android:layout_marginLeft="5dip" android:textSize="23dip" android:gravity="center_vertical" android:background="#F0E1F3" android:text="密 碼:"> </TextView> <EditText android:id="@+id/EditTextPwd" android:layout_width="fill_parent" android:layout_height="wrap_content" android:singleLine="true" android:text="LING" android:textSize="23dip"> </EditText> </LinearLayout> <LinearLayout android:id="@+id/LinearLayout3" android:layout_width="fill_parent" android:layout_height="wrap_content" android:orientation="horizontal"> <Button android:id="@+id/loginLog" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="23dip" android:background="#E8CCEA" android:layout_weight="1" android:text="登 錄"> </Button> <Button android:id="@+id/loginClear" android:layout_width="wrap_content" android:layout_height="wrap_content" android:textSize="23dip" android:background="#D1B8D3" android:layout_weight="1" android:text="清 空"> </Button> </LinearLayout> </LinearLayout> <TextView android:id="@+id/all" android:layout_width="match_parent" android:layout_height="wrap_content" android:text="歡迎" android:textSize="20sp"/> </LinearLayout>
java程式碼實現跳轉
package com.example.myapplication1; import android.content.Intent; import android.os.Bundle; import android.view.View; import android.widget.Button; import android.widget.CheckBox; import android.widget.CompoundButton; import android.widget.EditText; import android.widget.RadioButton; import android.widget.RadioGroup; import android.widget.TextView; import androidx.appcompat.app.ActionBar; import androidx.appcompat.app.AppCompatActivity; public class MainActivity extends AppCompatActivity implements View.OnClickListener,RadioGroup.OnCheckedChangeListener, CompoundButton.OnCheckedChangeListener{ private Button zc;//宣告註冊按鈕的變數 RadioGroup rg;//宣告單選組的變數 RadioButton rb1,rb2;//宣告單選1,單選2的變數 CheckBox cb1,cb2,cb3;//宣告核取方塊1,2,3的變數 EditText et1,et2;宣告輸入文字方塊1,2的變數 TextView tv,txtage,txtall;//宣告結果文字的變數 @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); //遮蔽系統自帶 ActionBar actionBar = getSupportActionBar(); if(actionBar != null){ actionBar.hide();} zc=findViewById(R.id.button);//尋找註冊按鈕id zc.setOnClickListener(this);//給註冊按鈕安裝監聽器 rg=findViewById(R.id.rg);//尋找單選組控制元件id rg.setOnCheckedChangeListener(this);//給單選組安裝監聽器 rb1=findViewById(R.id.rb1);//尋找單選控制元件1id rb1.setOnCheckedChangeListener(this);//給單選控制元件1安裝監聽器 rb2=findViewById(R.id.rb2);//尋找單選控制元件2id rb2.setOnCheckedChangeListener(this);//給單選控制元件2安裝監聽器 //txtage=(TextView)findViewById(R.id.age); cb1=findViewById(R.id.cb1);//尋找核取方塊1控制元件id cb1.setOnCheckedChangeListener(this);//給核取方塊控制元件1安裝監聽器 cb2=findViewById(R.id.cb2);//尋找核取方塊2控制元件id cb2.setOnCheckedChangeListener(this);//給核取方塊控制元件2安裝監聽器 cb3=findViewById(R.id.cb3);//尋找核取方塊3控制元件id cb3.setOnCheckedChangeListener(this);//給核取方塊控制元件3安裝監聽器 et1=findViewById(R.id.et1);//尋找輸入框1控制元件id et2=findViewById(R.id.et2);//尋找輸入框2控制元件id tv=findViewById(R.id.tv);//尋找輸入框2控制元件id } //實現選項按鈕組互動功能 @Override public void onCheckedChanged(RadioGroup group, int checkedId) { switch (checkedId){ case R.id.rb1: System.out.println(rb1.getText().toString()); break; case R.id.rb2: System.out.println(rb2.getText().toString()); break; } } //實現核取方塊互動功能 @Override //CompoundButton選中或未選中按鈕 public void onCheckedChanged(CompoundButton CompoundButton, boolean b) { switch (CompoundButton.getId()) //得到選中或未選中按鈕id { case R.id.cb1: //核取方塊1id if (b==true)//判斷核取方塊1是否為真 System.out.println(cb1.getText().toString()); //如果是真執行核取方塊按鈕輸出的結果是得到該文字(cb1對應的text屬性文字字串)字串 break; case R.id.cb2: if (b==true) System.out.println(cb2.getText().toString()); break; case R.id.cb3: if (b==true) System.out.println(cb3.getText().toString()); break; } } //註冊按鈕實現互動功能 @Override public void onClick(View view){ String strname=et1.getText().toString();//獲取使用者名稱(ID繫結使用者名稱) String strPassword=et2.getText().toString();//獲取密碼(ID繫結密碼) // int age; CharSequence str=""; if(rb1.isChecked()) str=rb1.getText(); if(rb2.isChecked()) str=rb2.getText(); String str1=""; if (cb1.isChecked()) str1=str1+"n"+cb1.getText(); if (cb2.isChecked()) str1=str1+"n"+cb2.getText(); if (cb3.isChecked()) str1=str1+"n"+cb3.getText(); // if (strname.equals(" ")||strPassword.equals(""))//判斷使用者名稱是否等於""並且滿足密碼等於"" tv.setText("註冊失敗,請重新修改資訊後再來註冊");//否則執行結果文字方塊輸出內容為"註冊失敗,請重新修改資訊後再來註冊" else { tv.setText(strname+"註冊成功");//如果滿足條件的話執行結果文字方塊輸出內容為"註冊成功" Intent intent=new Intent(MainActivity.this, success.class); intent.putExtra("strname",strname); intent.putExtra("strPassword",strPassword); //intent.putExtra("strname",strname); intent.putExtra("sex",str); intent.putExtra("str1",str1); startActivity(intent); } } }
以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支援it145.com。
相關文章
<em>Mac</em>Book项目 2009年学校开始实施<em>Mac</em>Book项目,所有师生配备一本<em>Mac</em>Book,并同步更新了校园无线网络。学校每周进行电脑技术更新,每月发送技术支持资料,极大改变了教学及学习方式。因此2011
2021-06-01 09:32:01
综合看Anker超能充系列的性价比很高,并且与不仅和iPhone12/苹果<em>Mac</em>Book很配,而且适合多设备充电需求的日常使用或差旅场景,不管是安卓还是Switch同样也能用得上它,希望这次分享能给准备购入充电器的小伙伴们有所
2021-06-01 09:31:42
除了L4WUDU与吴亦凡已经多次共事,成为了明面上的厂牌成员,吴亦凡还曾带领20XXCLUB全队参加2020年的一场音乐节,这也是20XXCLUB首次全员合照,王嗣尧Turbo、陈彦希Regi、<em>Mac</em> Ova Seas、林渝植等人全部出场。然而让
2021-06-01 09:31:34
目前应用IPFS的机构:1 谷歌<em>浏览器</em>支持IPFS分布式协议 2 万维网 (历史档案博物馆)数据库 3 火狐<em>浏览器</em>支持 IPFS分布式协议 4 EOS 等数字货币数据存储 5 美国国会图书馆,历史资料永久保存在 IPFS 6 加
2021-06-01 09:31:24
开拓者的车机是兼容苹果和<em>安卓</em>,虽然我不怎么用,但确实兼顾了我家人的很多需求:副驾的门板还配有解锁开关,有的时候老婆开车,下车的时候偶尔会忘记解锁,我在副驾驶可以自己开门:第二排设计很好,不仅配置了一个很大的
2021-06-01 09:30:48
不仅是<em>安卓</em>手机,苹果手机的降价力度也是前所未有了,iPhone12也“跳水价”了,发布价是6799元,如今已经跌至5308元,降价幅度超过1400元,最新定价确认了。iPhone12是苹果首款5G手机,同时也是全球首款5nm芯片的智能机,它
2021-06-01 09:30:45