java實(shí)現(xiàn)簡單注冊(cè)選擇所在城市
本文實(shí)例為大家分享了java實(shí)現(xiàn)簡單注冊(cè)選擇所在城市的全部代碼,供大家參考,具體內(nèi)容如下
1.activity_main.xml
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="用戶名:"
/>
<EditText
android:id="@+id/user"
android:minWidth="200px"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<LinearLayout
android:gravity="center_vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="性別:"
/>
<RadioGroup
android:id="@+id/sex"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<RadioButton
android:id="@+id/radio0"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:checked="true"
android:text="男"/>
<RadioButton
android:id="@+id/radio1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="女"/>
</RadioGroup>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<TextView android:id="@+id/textView1"
android:text="請(qǐng)選擇所在城市:"
android:layout_height="wrap_content"
android:layout_width="wrap_content"/>
<Spinner
android:entries="@array/ctype"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:id="@+id/spinner1"/>
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="密碼:"/>
<EditText
android:id="@+id/pwd"
android:minWidth="200px"
android:inputType="textPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="確認(rèn)密碼:"
/>
<EditText
android:id="@+id/repwd"
android:minWidth="200px"
android:inputType="textPassword"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="E-mail地址:" />
<EditText
android:id="@+id/email"
android:minWidth="400px"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<Button
android:id="@+id/submit"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="提交" />
</LinearLayout>
2.register.xml
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" > <TextView android:id="@+id/user" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10px" android:text="用戶名:" /> <TextView android:id="@+id/sex" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10px" android:text="性別:" /> <TextView android:id="@+id/city" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10px" android:text="城市:" /> <TextView android:id="@+id/pwd" android:layout_width="wrap_content" android:layout_height="wrap_content" android:padding="10px" android:text="密碼:" /> <TextView android:id="@+id/email" android:padding="10px" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="E-mail:" /> <Button android:id="@+id/back" android:text="返回上一步" android:layout_width="wrap_content" android:layout_height="wrap_content" /> </LinearLayout>
3. MainActivity.java
package com.example.ejcker_llin.myapplication;
import android.app.Activity;
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.AdapterView;
import android.widget.Button;
import android.widget.EditText;
import android.widget.RadioButton;
import android.widget.RadioGroup;
import android.widget.Spinner;
import android.widget.Toast;
public class MainActivity extends Activity {
private Button submit;
private String sex1;
private String city;
final int code=0x717;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
submit= (Button) findViewById(R.id.submit);
submit.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
String user=((EditText)findViewById(R.id.user)).getText().toString();
String pwd=((EditText)findViewById(R.id.pwd)).getText().toString();
String repwd=((EditText)findViewById(R.id.repwd)).getText().toString();
String email=((EditText)findViewById(R.id.email)).getText().toString();
RadioGroup sex= (RadioGroup) findViewById(R.id.sex);
for(int i=0;i<sex.getChildCount();i++){
RadioButton r= (RadioButton) sex.getChildAt(i);
if(r.isChecked()){
sex1=r.getText().toString();
break;
}
}
Spinner spinner= (Spinner) findViewById(R.id.spinner1);
spinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
city=parent.getItemAtPosition(position).toString();
}
@Override
public void onNothingSelected(AdapterView<?> parent) {
}
});
if(!"".equals(user)&&!"".equals(pwd)&&!"".equals(email)){
if(!pwd.equals(repwd)){
Toast.makeText(MainActivity.this,"兩次輸入的密碼不一致,請(qǐng)重新輸入!",Toast.LENGTH_LONG).show();
((EditText) findViewById(R.id.pwd)).setText("");
((EditText) findViewById(R.id.repwd)).setText("");
((EditText) findViewById(R.id.pwd)).requestFocus();
}else {
Intent intent=new Intent(MainActivity.this,RegisterAcivity.class);
Bundle bundle=new Bundle();
bundle.putCharSequence("user",user);
bundle.putCharSequence("sex",sex1);
bundle.putCharSequence("city",city);
bundle.putCharSequence("pwd",pwd);
bundle.putCharSequence("email",email);
intent.putExtras(bundle);
//startActivity(intent);
startActivityForResult(intent,code);
}
}else {
Toast.makeText(MainActivity.this,"請(qǐng)將注冊(cè)信息輸入完整!",Toast.LENGTH_LONG).show();
}
}
});
}
}
4. RegisterAcivity.java
package com.example.ejcker_llin.myapplication;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
import android.widget.TextView;
/**
* Created by Jcker_llin on 2016/4/5.
*/
public class RegisterAcivity extends Activity{
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.register);
final Intent intent=getIntent();
Bundle bundle=intent.getExtras();
TextView user= (TextView) findViewById(R.id.user);
user.setText("用戶名:"+bundle.getString("user"));
TextView sex= (TextView) findViewById(R.id.sex);
sex.setText("性別:"+bundle.getString("sex"));
TextView city= (TextView) findViewById(R.id.city);
city.setText("城市:"+bundle.getString("city"));
TextView pwd= (TextView) findViewById(R.id.pwd);
pwd.setText("密碼:"+bundle.getString("pwd"));
TextView email= (TextView) findViewById(R.id.email);
email.setText("E-mail:"+bundle.getString("email"));
Button button= (Button) findViewById(R.id.back);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
setResult(0x717,intent);
finish();
}
});
}
}
5.

6.

7. arrays.xml
<?xml version="1.0" encoding="utf-8"?> <resources> <string-array name="ctype"> <item>北京</item> <item>上海</item> <item>廣州</item> <item>杭州</item> <item>天津</item> <item>香港</item> <item>重慶</item> <item>西安</item> <item>其他</item> </string-array> </resources>
以上就是本文的全部內(nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助。
- Java利用Request請(qǐng)求如何獲取IP地址對(duì)應(yīng)的省份、城市詳解
- java實(shí)現(xiàn)遺傳算法實(shí)例分享(打印城市信息)
- 25行Java代碼將普通圖片轉(zhuǎn)換為字符畫圖片和文本的實(shí)現(xiàn)
- Java字節(jié)流和字符流及IO流的總結(jié)
- Java 生成帶Logo和文字的二維碼
- java實(shí)戰(zhàn)之猜字小游戲
- Java使用Tesseract-Ocr識(shí)別數(shù)字
- Java人民幣小寫轉(zhuǎn)大寫字符串的實(shí)現(xiàn)
- 詳解java中String值為空字符串與null的判斷方法
- Java實(shí)戰(zhàn)之城市多音字處理
相關(guān)文章
Spring中的@EnableScheduling定時(shí)任務(wù)注解
這篇文章主要介紹了Spring中的@EnableScheduling注解,@EnableScheduling是 Spring Framework 提供的一個(gè)注解,用于啟用 Spring 的定時(shí)任務(wù)功能,通過使用這個(gè)注解,可以在 Spring 應(yīng)用程序中創(chuàng)建定時(shí)任務(wù),需要的朋友可以參考下2024-01-01
Java 最優(yōu)二叉樹的哈夫曼算法的簡單實(shí)現(xiàn)
這篇文章主要介紹了Java 最優(yōu)二叉樹的哈夫曼算法的簡單實(shí)現(xiàn),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2019-10-10
Spring Boot整合tk.mybatis代碼實(shí)例
這篇文章主要介紹了Spring Boot整合tk.mybatis代碼實(shí)例,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2019-11-11
Java并發(fā)編程線程間通訊實(shí)現(xiàn)過程詳解
這篇文章主要介紹了Java并發(fā)編程線程間通訊實(shí)現(xiàn)過程詳解,文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友可以參考下2020-05-05
Java實(shí)現(xiàn)NIO聊天室的示例代碼(群聊+私聊)
這篇文章主要介紹了Java實(shí)現(xiàn)NIO聊天室的示例代碼(群聊+私聊),文中通過示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧2021-05-05
springboot集成springsession如何實(shí)現(xiàn)分布式session共享
這篇文章主要介紹了springboot集成springsession如何實(shí)現(xiàn)分布式session共享問題,具有很好的參考價(jià)值,希望對(duì)大家有所幫助,如有錯(cuò)誤或未考慮完全的地方,望不吝賜教2023-09-09
親手教你SpringBoot中的多數(shù)據(jù)源集成問題
本文主要是介紹基于springboot的多數(shù)據(jù)源切換,輕量級(jí)的一種集成方案,對(duì)于小型的應(yīng)用可以采用這種方案,我之前在項(xiàng)目中用到是因?yàn)楹唵危阌跀U(kuò)展以及優(yōu)化,對(duì)SpringBoot多數(shù)據(jù)源集成問題感興趣的朋友一起看看吧2022-03-03

