《Android進階之光》--Material Design

來源:互聯網
上載者:User

標籤:slist   textinput   his   htm   private   bottom   滑塊   day   val   

接上篇《Android進階之光》--Android新特性

No1:

組件:

1)底部工作條-Bottom Sheets

2)卡片-Cards

3)提示框-Dialogs

4)菜單-Menus

5)選取器

6)滑塊控制項-Sliders

7)進度和動態

8)Snackbar(底部可操作彈出框)與Toast

9)Tab

No2:

Snackbar

包含了文字資訊和一個可選的操作按鈕

Snackbar.make(activity_main,"標題",Snackbar.LENGTH_LONG)    .setAction("點擊事件",new View.OnClickListener(){    @Override    public void onClick(View v){        Toast.makeText(            MainActivity.this,            "Toast",            Toast.LENGTH_LONG).show();    }}).setDuration(Snackbar.LENGTH_LONG).show();

make第一個參數是View類型的參數,是Snackbar的父控制項

No3:

TextInputLayout輸入框容器(hint上浮,錯誤提示下方顯示)

<android.support.design.widget.TextInputLayout    android:id="@+id/t1_username"    android:layout_width="match_parent"    android:layout_height="warp_content"    android:layout_centerInParent="true">    <EditText        android:id="@+id/et_username"        android:layout_width="match_parent"        android:layout_height="warp_content"        android:hint="username"        android:maxLength="25"        android:maxLines="1"/></android.support.design.widget.TextInputLayout>
private void login(){    String username = t1_username.getEditText().getText().toString();    String password = t1_password.getEditText().getText().toString();    if(!validateUserName(username)){        t1_username.setErrorEnabled(true);        t1_username.setError("請輸入正確的郵箱地址");    }else if(!validatePassword(password)){        t1_password.setErrorEnabled(true);        t1_password.setError("密碼數字過少");    }else{        t1_username.setErrorEnabled(false);        t1_password.setErrorEnabled(false);        Toast.makeText(getApplicationContext(),"登陸成功",Toast.LENGTH_SHORT).show();    }}

No4:

自訂Bahavior

CoordinatorLayout中最經典的設計就是Bahavior,app:layout_behavior="@string/appbar_scrolling_view_behavior"的值對應著的是AppBarLayout.ScrollingViewBehavior。

自訂Behavior分兩種方法:

1)定義的View監聽CoordinatorLayout裡的滑動狀態。注意重寫onStartNestedScroll()和onNestedPreScroll()方法

2)定義的View監聽另一個View的狀態變化。注意重寫layoutDependsOn()和onDependentViewChanged()方法

《Android進階之光》--Material Design

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.