Android中完成“注冊應(yīng)用賬號模塊”的代碼清單_第1頁
Android中完成“注冊應(yīng)用賬號模塊”的代碼清單_第2頁
Android中完成“注冊應(yīng)用賬號模塊”的代碼清單_第3頁
Android中完成“注冊應(yīng)用賬號模塊”的代碼清單_第4頁
Android中完成“注冊應(yīng)用賬號模塊”的代碼清單_第5頁
全文預(yù)覽已結(jié)束

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、Android中完成“注冊應(yīng)用賬號模塊”的代碼清單范美英(北京信息職業(yè)技術(shù)學院)摘 要:Android中可以使用下拉列表、圖像按鈕、復(fù)選框完成較為復(fù)雜的UI,本文詳細羅列了“注冊應(yīng)用賬號模塊”的代碼清單。關(guān)鍵詞: Android;下拉列表;圖像按鈕;復(fù)選框 1 src/MainActivity.java類的代碼package com.book.testregister;import java.util.Iterator;import java.util.List;import java.util.Random;import android.app.Activity;import android

2、.os.Bundle;import android.telephony.SmsManager;import android.util.Log;import android.view.View;import android.widget.AdapterView;import android.widget.AdapterView.OnItemSelectedListener;import android.widget.CheckBox;import android.widget.EditText;import android.widget.Spinner;import android.widget

3、.Toast;public class MainActivity extends Activity implements OnItemSelectedListener Spinner spnCountry;EditText edtPhone;CheckBox chkAgreePolicy;/countryName用來記錄用戶所選的國家名稱/phone用來記錄用戶輸入的電話號碼/content用來拼接短信字符串String countryName=null,phone=null,content=null;Overrideprotected void onCreate(Bundle savedIn

4、stanceState) super.onCreate(savedInstanceState);setContentView(R.layout.activity_main);spnCountry=(Spinner) this.findViewById(R.id.spn_country);edtPhone=(EditText) this.findViewById(R.id.edt_phone);chkAgreePolicy=(CheckBox) this.findViewById(R.id.chk_agreePolicy);/為下拉列表添加選擇監(jiān)聽spnCountry.setOnItemSele

5、ctedListener(this);public void clickReg(View v)/如果未勾選同意政策,則給用戶以操作提示,否則發(fā)送信息if(!chkAgreePolicy.isChecked()Toast.makeText(MainActivity.this, "請閱讀使用條款與隱私政策,并同意", Toast.LENGTH_LONG).show();else/捕獲電話號碼格式不正確的異常try/取得目標電話號碼,為發(fā)送短信做準備phone=edtPhone.getText().toString();/生成四位隨機數(shù),做驗證碼Random r=new Rand

6、om();r.setSeed(System.currentTimeMillis();int verifyTemp=0;String verifyCode=""for(int i=0;i<4;i+)verifyTemp=r.nextInt(10);verifyCode += verifyTemp;content="Dear "+countryName+" friend, " +"your verified code is"+verifyCode+"nSent By BigApp"/發(fā)送短信S

7、msManager smsManager=SmsManager.getDefault();/分割短信/if(content.length()>70)/List<String> msgs=smsManager.divideMessage(content);/Iterator<String> iter=msgs.iterator();/while(iter.hasNext()/String msg=iter.next();/將msg發(fā)送到接收方/smsManager.sendTextMessage(phone, null, content, null, null);c

8、atch(Exception e)/ 在信息提示框中輸出異常描述Toast.makeText(MainActivity.this, String.valueOf(e), Toast.LENGTH_LONG).show();Overridepublic void onItemSelected(AdapterView<?> parent, View view, int position,long itemID) /當下拉列表框中某項被選中時,將該項的值寫到countryName字符串中countryName=parent.getItemAtPosition(position).toSt

9、ring();Log.i("Fancy", "P="+position+" ID="+itemID);Overridepublic void onNothingSelected(AdapterView<?> arg0) 2 res/layout/activity_main.xml的代碼清單<RelativeLayout xmlns:android=" xmlns:tools=" android:layout_width="match_parent" android:layout

10、_height="match_parent" android:paddingBottom="dimen/activity_vertical_margin" android:paddingLeft="dimen/activity_horizontal_margin" android:paddingRight="dimen/activity_horizontal_margin" android:paddingTop="dimen/activity_vertical_margin" tools:con

11、text=".MainActivity"> <Spinner android:id="+id/spn_country" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_alignParentTop="true" android:entries="array/country_name" /> <EditText android:

12、id="+id/edt_phone" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_below="+id/spn_country" android:layout_alignLeft="+id/spn_country" android:inputType="phone" > </EditText> <CheckBox andr

13、oid:id="+id/chk_agreePolicy" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignLeft="+id/edt_phone" android:layout_below="+id/edt_phone" android:text="string/agreePolicy" android:checked="true

14、"/> <ImageButton android:id="+id/imgbtn_register" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignRight="+id/chk_agreePolicy" android:layout_below="+id/chk_agreePolicy" android:src="drawabl

15、e/register" android:onClick="clickReg"/></RelativeLayout>3 res/values/country_data.xml的代碼清單<?xml version="1.0" encoding="utf-8"?><resources> <string-array name="country_name"> <item >China</item> <item >America</item> <item >Australia</item> <item >Canada</item> <item >Austria</item> </string-array></resources>4 res/values/strings.xml的代碼清單<?xml version="1.0" encoding="utf-8"?><resources> <string name="app_name

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
  • 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論