Android5.0之材料設計各大元件
阿新 • • 發佈:2018-10-31
簡介
在Google I/O 2015大會中,Google為Android開發者介紹了Design Support Library。這個library可以讓開發者很容易地實現更多Material Design概念到他們的應用中,因為很多關鍵元素是不可用的在原來的框架外。首先就是很易於使用,Design Support Library向下相容到API 7。Design Support Library可以引入到你的Android工程中通過匯入Gradle依賴。
compile 'com.android.support:design:26.1.0'
1.TextInputLayout(帶提示的輸入框)
佈局檔案如下
<android.support.design.widget.TextInputLayout android:id="@+id/til_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <EditText android:id="@+id/et_account" android:layout_width="match_parent"
作者:GCZeng
連結:https://www.jianshu.com/p/de9c19d73450
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。 <android.support.design.widget.TextInputLayout android:id="@+id/til_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <EditText android:id="@+id/et_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/form_username"/> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:id="@+id/til_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <android.support.design.widget.TextInputEditText android:id="@+id/tiet_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/form_password" android:inputType="textPassword"/> </android.support.design.widget.TextInputLayout>
作者:GCZeng
連結:https://www.jianshu.com/p/de9c19d73450
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。 <android.support.design.widget.TextInputLayout android:id="@+id/til_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <EditText android:id="@+id/et_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/form_username"/> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:id="@+id/til_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <android.support.design.widget.TextInputEditText android:id="@+id/tiet_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/form_password" android:inputType="textPassword"/> </android.support.design.widget.TextInputLayout>
作者:GCZeng
連結:https://www.jianshu.com/p/de9c19d73450
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。 <android.support.design.widget.TextInputLayout android:id="@+id/til_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <EditText android:id="@+id/et_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/form_username"/> </android.support.design.widget.TextInputLayout> <android.support.design.widget.TextInputLayout android:id="@+id/til_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <android.support.design.widget.TextInputEditText android:id="@+id/tiet_password" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/form_password" android:inputType="textPassword"/> </android.support.design.widget.TextInputLayout>
作者:GCZeng
連結:https://www.jianshu.com/p/de9c19d73450
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。 <android.support.design.widget.TextInputLayout android:id="@+id/til_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_margin="@dimen/pd_10"> <EditText android:id="@+id/et_account" android:layout_width="match_parent" android:layout_height="wrap_content" android:hint="@string/form_username"/> </android.support.design.widget.TextInputLayout>
作者:GCZeng
連結:https://www.jianshu.com/p/de9c19d73450
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處。 < android.support.design.widget.TextInputLayout android:id= "@+id/til_account" android:layout_width= "match_parent" android:layout_height= "wrap_content" android:layout_margin= "@dimen/pd_10">
作者:GCZeng
連結:https://www.jianshu.com/p/de9c19d73450
來源:簡書
著作權歸作者所有。商業轉載請聯絡作者獲得授權,非商業轉載請註明出處
<android.support.design.widget.TextInputLayout
android:id="@+id/til_account"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp">
<EditText
android:id="@+id/et_account"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="使用者名稱" />
</android.support.design.widget.TextInputLayout>
<android.support.design.widget.TextInputLayout
android:id="@+id/til_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="10dp">
<android.support.design.widget.TextInputEditText
android:id="@+id/tiet_password"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="密碼"
android:inputType="textPassword" />
</android.support.design.widget.TextInputLayout>
TextInputLayout錯誤提示如下:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_text_input_layout);
Button button = findViewById(R.id.btn_login);
final TextInputLayout textInputLayout = findViewById(R.id.til_account);
button.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
showError(textInputLayout, "使用者名稱錯誤");
}
});
}
/**
* 顯示錯誤提示,並獲取焦點 * @param textInputLayout * @param error
*/
private void showError(TextInputLayout textInputLayout, String error) {
textInputLayout.setError(error);
textInputLayout.getEditText().setFocusable(true);
textInputLayout.getEditText().setFocusableInTouchMode(true);
textInputLayout.getEditText().requestFocus();
}
TextInputEditText
上面的例子中,你會看到使用者輸入控制元件使用的是的EditText,而密碼輸入控制元件則使用了TextInputEditText,這裡是為了對比一下兩者的區別。還是上面的例子,我們把手機設定為橫向,再看一下效果:
可以看到輸入的時候都變成了全屏模式,使用者名稱使用EidtText的時候hint就隱藏了,而密碼使用TextInputEditText的時候hint可以正常顯示。
由此可見TextInputEditText的設計就是修復了這個缺陷,所以TextInputLayout和TextInputEditText配合使用的效果最好!