EditText 자동 오타 수정 기능 (입력 텍스트 자동 교정)

 

- 결과 -

 

- 코드 -

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"

  android:orientation="vertical"

  android:layout_width=match_parent"

  android:layout_height=match_parent">

 

<EditText

    android:id="@+id/editText1"

    android:layout_width=match_parent"

    android:layout_height="wrap_content"

    android:textSize="18sp"

    android:inputType="textAutoCorrect"       // 이거 사용하면 자동 오타 수정 해줌

    android:hint= "이름을 입력하세요.">

</EditText>

 

</LinearLayout>

 

 

 

'■ Android > Tip' 카테고리의 다른 글

[Android] SQLite - 내용 2  (0) 2019.12.16
[Android] SQLite - 내용 1  (0) 2019.12.15
EditText의 inputType속성 종류들  (0) 2019.12.03
[Android] 클래스명 변경 - 두번째  (0) 2019.11.27
[Android] 클래스명 변경  (0) 2019.11.26