1. 程式人生 > >Android學習筆記(第一行程式碼) 做一個簡單的登入介面

Android學習筆記(第一行程式碼) 做一個簡單的登入介面

一.建立xml檔案

1.賬戶輸入框和密碼輸入框的編寫

    <TextView
        android:layout_height="wrap_content"
        android:text="@string/LG_name" />
        <EditText
            android:id="@+id/account"
            android:layout_height="wrap_content" 
            android:hint="@string/LG_name_"/>
        </TableRow
>
<TableRow> <TextView android:layout_height="wrap_content" android:text="@string/LG_m" /> <EditText android:id="@+id/password" android:layout_height="wrap_content" android:inputType="textPassword" /> </TableRow
>
<TableRow>

android:inputType=”textPassword” 是密碼格式,輸入後顯示星號*。

2.登入按鍵編寫

    <Button
        android:id="@+id/login"
        android:layout_height="wrap_content"
        android:text="@string/LG_button" />

《第一行程式碼》原文中是

    <Button
        android:id="@+id/login"
        android:layout_height="wrap_content"
android:layout_span="2" android:text="@string/LG_button" />

由於原文佈局是TableLayout所以使用了合併單元格的方法讓其美觀(android:layout_span=”2”合併倆個單元格)

二.登入介面活動的編寫

package com.example.ohmst;

import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import android.view.Window;
import android.widget.Button;
import android.widget.EditText;
import android.widget.Toast;

public class LoginActivuty extends Activity{

    private EditText accountEdit;
    private EditText passwordEdit;
    private Button login;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
     super.onCreate(savedInstanceState);
     requestWindowFeature(Window.FEATURE_NO_TITLE);
     setContentView(R.layout.login);

     accountEdit = (EditText) findViewById(R.id.account);
     passwordEdit = (EditText) findViewById(R.id.password);
     login = (Button) findViewById(R.id.login);

     login.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
        String account = accountEdit.getText().toString();
        String password = passwordEdit.getText().toString();
            // 如果賬號是admin且密碼是123456,就認為登入成功
    if (account.equals("admin") && password.equals("123456")) {
Intent intent = new Intent(LoginActivuty.this,MainActivity.class);
startActivity(intent);
finish();
    } else {
    Toast.makeText(LoginActivuty.this, "登入密碼不正確或賬戶不存在!",
    Toast.LENGTH_SHORT).show();
    }
            }
            }  );

        }
}

註冊按鍵點選事件用getText()採集輸入框裡的資料

三.對AndroidManifest.xml檔案進行配置

<activity
android:name=".LoginActivity"
android:label="@string/app_name" >
<intent-filter>
 <action android:name="android.intent.action.MAIN" />
 <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity" >
</activity>

把原來預設第一個啟動的 .MainActivity
改為建立的登入活動 .LoginActivity
然後在對 .MainActivity進行註冊

以上就可以完成一個及其簡單的登陸功能(並沒什麼實際卵用),原書有更加完善的登入介面的編寫,以解決在登陸時所遇到的衝突問題。

因為所有的程式碼的是從書裡調出來整理過的,假裝是翻譯QAQ