1 回答

TA貢獻(xiàn)2039條經(jīng)驗(yàn) 獲得超8個(gè)贊
首先在xml中 設(shè)計(jì) 手機(jī)登錄界面,然后對(duì)應(yīng) 用戶名TextView 密碼TextView 然后 用戶名Edittext 和 密碼 Edittext 然后一個(gè)注冊(cè)按鈕。
在JAVA中,將程序中的各個(gè)對(duì)應(yīng)起來。如在JAVA文件中 頭文件定義private變量 Button button1;
button1=(Button)find.View.ById(R.id.button)//這里的id后面的button是在xml中的button控件的id號(hào)
然后寫入button1的監(jiān)聽事件
然后 如 。定義兩個(gè)label1,label2 然后labe1=edittext_yonghu.gettest.tostring(); labele2=edittext_mima.gettext.tosring();
最終得到兩個(gè)變量labe1 和labe2中的值都是從edittext中獲取。
然后可以選擇保存在數(shù)據(jù)庫,或者SD卡等。就實(shí)現(xiàn)了用戶注冊(cè)
登錄幾乎同理,只是需要判斷editttext里獲取的值是否和labe1和labe2中的值相等。用equal 比較。
添加回答
舉報(bào)