EditText 使用詳解

本篇文章主要介紹 Android 開發中的部分知識點,經過閱讀本篇文章,您將收穫如下內容:java

1、EditText 繼承關係

2、EditText 經常使用舉例

3、EditText 自定義背景框

4、EditText自動檢測輸入內容

5、Edittext 密文顯示

6、EditText 限制只能輸入特定字符

7、EditText 輸入保存的字符串不能爲空
android

1、EditText 繼承關係

EditText繼承關係 以下:git

java.lang.Object    
       ↳ android.view.View     
              ↳ android.widget.TextView      
                      ↳ android.widget.EditText

2、EditText 經常使用舉例

EditText主要用於輸入和修改文本內容。code

限制只能輸入純文本內容舉例以下:xml

<EditText
      android:id="@+id/plain_text_input"
      android:layout_height="wrap_content"
      android:layout_width="match_parent"
      android:inputType="text"/>

3、EditText 自定義背景框

  • xml 中使用EditText 控件
<!-- 自定義EditText 背景 -->

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_marginLeft="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginTop="10dp"
        android:background="@drawable/custom_edittext_background"
        android:gravity="center"
        android:hint="1、自定義EditText背景框"
        android:padding="8dp"
        android:textSize="16sp" />
  • 自定義 EditText 背景框
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
    android:shape="rectangle">

    <!-- 圓角-->
    <corners android:radius="5dp" />
    <!--描邊-->
    <stroke
        android:width="1dp"
        android:color="@android:color/holo_blue_light" />

</shape>
  • 實現效果
    image

4、EditText自動檢測輸入內容

  • xml 中使用EditText 控件
<EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:autoText="true"
        android:hint="2、自動檢測輸入更正屬性 autoText"
        android:textColor="#FF6100" />
  • 實現效果

image

5、Edittext 密文顯示

  • xml 中使用EditText 控件
<!-- 以密文的形式顯示 -->

    <EditText
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="3、以密文的形式顯示密碼"
        android:password="true" />
  • 實現效果

image

6、EditText 限制只能輸入特定字符

限定只能輸入阿拉伯數字實現以下:blog

  • xml 中使用EditText 控件
<!-- 設置容許輸入的字符 -->

    <EditText
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:digits="123456789.+-*/\n()"
        android:hint="4、設置限制容許輸入阿拉伯數字" />
  • 實現效果

image

7、EditText 輸入保存的字符串不能爲空

EditText經常使用來獲取用戶輸入內容,由於咱們要規避用戶輸入的內容爲空的狀況。繼承

實現效果以下:utf-8

image

實現代碼以下:開發

相關文章
相關標籤/搜索