用戶登錄(Material Design + Data-Binding + MVP架構模式)實現

来源:http://www.cnblogs.com/cnwutianhao/archive/2017/04/27/6772759.html
-Advertisement-
Play Games

轉載請註明出處: http://www.cnblogs.com/cnwutianhao/p/6772759.html MVP架構模式 大家都不陌生,Google 也給出過相應的參考 Sample, 但是有的人會有疑問為啥 GitHub 上面大神寫的 MVP架構模式 和 Google 的不太一樣。 G ...


 轉載請註明出處: http://www.cnblogs.com/cnwutianhao/p/6772759.html 

 

 MVP架構模式 大家都不陌生,Google 也給出過相應的參考 Sample,

 但是有的人會有疑問為啥 GitHub 上面大神寫的 MVP架構模式 和 Google 的不太一樣。

 Google MVP架構模式 Sample 地址 https://github.com/googlesamples/android-architecture/tree/todo-mvp/

 下麵我們就仿照 Google 的 Sample 實現用戶登錄

 

 項目結構:

 

 示例演示圖:

 

 代碼實現:

 1.導入必要的開源庫

 示例項目採用 Material Design + Data-Binding + MVP

android {
    ...

    // Data Binding
    // https://developer.android.google.cn/topic/libraries/data-binding/index.html
    dataBinding {
        enabled true
    }
    
}
dependencies {
    ...

    // UI
    compile 'com.android.support:appcompat-v7:25.3.1'
    compile 'com.android.support:cardview-v7:25.3.1'
    compile 'com.android.support:design:25.3.1'
}

 

 2.Base類

 1) BaseActivity

public abstract class BaseActivity extends AppCompatActivity implements View.OnClickListener {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        initView();
        initData();
        dataProcess();
    }

    protected abstract void initView();

    protected abstract void initData();

    protected abstract void dataProcess();
}

 2) BasePresenter

public class BasePresenter {
}

 3) BaseView

public interface BaseView {
}

 4) IBasePresenter

public interface IBasePresenter {

    void onDestroyView();

}

 

 3.定義一個契約類,連接 P層 和 V層。這樣可以使介面一目瞭然

 在這裡我要說明一下,用戶登錄界面,最基本的需要判斷用戶名是否為空,密碼是否為空。

public class LoginContract {

    interface loginView extends BaseView {

        void accountIsNull();

        void passWordIsNull();

        void loginSuccess();

    }

    interface loginPresenter extends IBasePresenter {

        void login(String account, String password);

    }

}

 

 4.定義一個 LoginPresenter ,判斷條件在這裡實現

public class LoginPresenter extends BasePresenter implements LoginContract.loginPresenter {

    private LoginContract.loginView mView;

    public LoginPresenter(LoginContract.loginView view) {
        mView = view;
    }

    @Override
    public void onDestroyView() {
        mView = null;
    }

    @Override
    public void login(String account, String password) {
        if (TextUtils.isEmpty(account)) {
            mView.accountIsNull();
            return;
        }
        if (TextUtils.isEmpty(password)) {
            mView.passWordIsNull();
            return;
        }
        mView.loginSuccess();
    }
}

 

 5.定義一個 LoginActivity ,可以視其為 View層

public class LoginActivity extends BaseActivity implements LoginContract.loginView {

    private Context mContext;
    private LoginPresenter mLoginPresenter;
    private ActivityLoginBinding mBinding;

    @Override
    protected void initView() {
        mContext = LoginActivity.this;
        mBinding = DataBindingUtil.setContentView(this, R.layout.activity_login);
    }

    @Override
    protected void initData() {
        mLoginPresenter = new LoginPresenter(this);
        mBinding.loginBtn.setOnClickListener(this);
        mBinding.loginChangePassword.setOnClickListener(this);
        mBinding.loginRegister.setOnClickListener(this);
    }

    @Override
    protected void dataProcess() {

    }

    @Override
    public void onClick(View v) {
        switch (v.getId()) {
            case R.id.login_btn:
                mLoginPresenter.login(
                        mBinding.loginAccount.getText().toString(),
                        mBinding.loginPassword.getText().toString());
                break;
            default:
                break;

        }
    }

    @Override
    public void accountIsNull() {
        Toast.makeText(mContext, "請輸入您的賬戶", Toast.LENGTH_LONG).show();
    }

    @Override
    public void passWordIsNull() {
        Toast.makeText(mContext, "請輸入您的密碼", Toast.LENGTH_LONG).show();
    }

    @Override
    public void loginSuccess() {
        Intent intentRegister = new Intent();
        intentRegister.setClass(LoginActivity.this, MainActivity.class);
        startActivity(intentRegister);
        overridePendingTransition(android.R.anim.fade_in, android.R.anim.fade_out);
        finish();
    }
}

 

 6.佈局代碼

 佈局里涉及到 layout(Data-Binding)、CardView(Material Design)、TextInputLayout(Material Design)

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">

    <RelativeLayout xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/activity_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="@drawable/splash_image">

        <android.support.v7.widget.CardView
            style="@style/cardElevation"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:layout_marginLeft="16dp"
            android:layout_marginRight="16dp"
            app:cardCornerRadius="7dp">

            <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:orientation="vertical">

                <TextView
                    style="@style/TextStyle.Heading"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center|top"
                    android:layout_marginTop="40dp"
                    android:text="登錄賬號"
                    android:textAllCaps="true"
                    android:textSize="20sp" />

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center"
                    android:layout_margin="20dp"
                    android:orientation="vertical">

                    <android.support.design.widget.TextInputLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:hint="賬號"
                        android:textColorHint="@color/gray"
                        app:hintTextAppearance="@style/TextAppearance.App.TextInputLayout">

                        <android.support.design.widget.TextInputEditText
                            android:id="@+id/login_account"
                            style="@style/TextStyle"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="20dp"
                            android:layout_marginRight="20dp"
                            android:background="@drawable/input_border_bottom"
                            android:cursorVisible="true"
                            android:gravity="center|left|bottom"
                            android:inputType="textEmailAddress"
                            android:maxLength="50"
                            android:paddingBottom="10dp"
                            android:textColor="@color/black_effective"
                            android:textSize="18sp" />

                    </android.support.design.widget.TextInputLayout>

                    <android.support.design.widget.TextInputLayout
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:hint="密碼"
                        android:textColorHint="@color/gray"
                        app:hintTextAppearance="@style/TextAppearance.App.TextInputLayout"
                        app:passwordToggleEnabled="true">

                        <android.support.design.widget.TextInputEditText
                            android:id="@+id/login_password"
                            style="@style/TextStyle"
                            android:layout_width="match_parent"
                            android:layout_height="wrap_content"
                            android:layout_marginLeft="20dp"
                            android:layout_marginRight="20dp"
                            android:layout_marginTop="30dp"
                            android:background="@drawable/input_border_bottom"
                            android:cursorVisible="true"
                            android:gravity="center|left|bottom"
                            android:inputType="textPassword"
                            android:maxLength="50"
                            android:paddingBottom="10dp"
                            android:textColor="@color/black_effective"
                            android:textSize="18sp" />

                    </android.support.design.widget.TextInputLayout>

                    <Button
                        android:id="@+id/login_btn"
                        style="@style/Button.Primary"
                        android:layout_width="match_parent"
                        android:layout_height="wrap_content"
                        android:layout_gravity="center"
                        android:layout_marginLeft="15dp"
                        android:layout_marginRight="15dp"
                        android:layout_marginTop="20dp"
                        android:padding="10dp"
                        android:text="登錄"
                        android:textSize="18dp" />
                </LinearLayout>

                <RelativeLayout
                    android:layout_width="match_parent"
                    android:layout_height="wrap_content"
                    android:layout_margin="35dp">

                    <TextView
                        android:id="@+id/login_change_password"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentLeft="true"
                        android:text="修改密碼" />

                    <TextView
                        android:id="@+id/login_register"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_alignParentRight="true"
                        android:text="註冊賬號" />
                </RelativeLayout>

            </LinearLayout>

        </android.support.v7.widget.CardView>
    </RelativeLayout>

</layout>

 

 示例Sample下載:Material Design風格登錄界面

 

 7.總結

 MVP架構模式 作為 MVC架構模式 的替代產物,是當今 Android開發 的趨勢。Google 都在推薦開發者去用這種模式,作為開發者沒有理由拒絕。

 現在生產出來的安卓手機我覺得99.9%的系統都是Android 5.0+,所以開發者們更應該多瞭解Material Design。而不是做個頁面像Android 2.x 甚至 1.x的樣式。

 Data-Binding 是 Google 推薦開發者使用的替代 findViewById 的產物。

 總之一句話,Google官方推薦,就是開發者們要在App中重點使用的技術,早晚都要使用,你不用,不會用,就要被會用的人淘汰。

 

 關註我的新浪微博,請認準黃V認證,獲取最新安卓開發資訊。

 關註科技評論家,領略科技、創新、教育以及最大化人類智慧與想象力!

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...