diff --git a/summary/EditText inputType.md b/summary/EditText inputType.md
new file mode 100644
index 0000000..32fcc60
--- /dev/null
+++ b/summary/EditText inputType.md
@@ -0,0 +1,50 @@
+# EditText inputType
+## π EditTextμ inputType μμ±μ΄λ?
+> EditTextκ° μ
λ ₯λ°μ λ°μ΄ν°μ μ νμ 미리 μ§μ νμ¬ μ¬μ©μμ μ
λ ₯ νμμ μ ννκ±°λ κ²μ¦ν λ μ¬μ©λλ μμ±
+- β|βλ‘ κ΅¬λΆνμ¬ μ¬λ¬ μ ν κ²°ν© κ°λ₯
+
+ EX) `android:inputType="text|textMultiLine"`
+
+- μ§μ νμ§ μμΌλ©΄ μ€λ°κΏ μ
λ ₯ κ°λ₯
+
+
+## π inputType μ ν
+
+| Type | Description |
+| --- | --- |
+| text | μ νμ μΈ ν
μ€νΈ μ
λ ₯μΌλ‘ μ€λ°κΏ λΆκ°λ₯ |
+| textCapCharacters | μλ¬Έ μ
λ ₯ μ λλ¬Έμλ‘ μ
λ ₯ (Shiftλ₯Ό λλ¬ μκ°μ μΌλ‘ μλ¬Έμ μ
λ ₯λ κ°λ₯νλ μ£Όμ) |
+| textCapWords | λͺ¨λ λ¨μ΄μ 첫 λ²μ§Έ μλ¬Έμ΄ λλ¬Έμλ‘ μ
λ ₯ |
+| textCapSentences | λͺ¨λ λ¬Έμ₯μ 첫 λ²μ§Έ μλ¬Έμ΄ λλ¬Έμλ‘ μ
λ ₯ |
+| textAutoCorrect | μ
λ ₯μ λν΄ μλ κ΅μ κ°λ₯ |
+| textAutoComplete | μ
λ ₯μ λν΄ μλ μμ± κ°λ₯ |
+| textMultiLine | μ€λ°κΏ κ°λ₯ (default: single line, max length: 5000) |
+| textNoSuggestions | μ
λ ₯ μ μ¬μ μ λ±λ‘λ λ¨μ΄λ₯Ό μΆμ² λ¨μ΄λ‘ νμνμ§ μμ |
+| textEnableTextConversionSuggestions | μΆκ° μ λ³΄κ° μλ κ²½μ° μ 곡 (EX. μΌλ³Έμ΄ κΈμ λ³ν) |
+| textUri | URI μ
λ ₯ |
+| textEmailAddress | μ΄λ©μΌ μ£Όμ μ
λ ₯ |
+| textEmailSubject | μ΄λ©μΌ μ λͺ© μ
λ ₯ |
+| textShortMessage | 짧μ λ©μμ§ μ
λ ₯ |
+| textLongMessage | κΈ΄ λ©μμ§ μ
λ ₯ |
+| textPersonName | μ¬λ μ΄λ¦ μ
λ ₯ |
+| textPostalAddress | μ£Όμ μ°νΈλ²νΈ μ
λ ₯ |
+| textPassword | μ
λ ₯λ λ¬Έμκ° κ°λ €μ§λλ‘ λΉλ°λ²νΈ μ
λ ₯ |
+| textVisiblePassword | μ
λ ₯λ λ¬Έμκ° λ³΄μ΄λλ‘ λΉλ°λ²νΈ μ
λ ₯ |
+| textWebEditText | μΉ μμμΌλ‘ μ 곡λλ ν
μ€νΈ μ
λ ₯ |
+| textFilter | νν°λ§ νκΈ° μν ν
μ€νΈ μ
λ ₯ |
+| textPhonetic | λ°μ λ¬Έμ μ
λ ₯ |
+| textWebEmailAddress | μΉ μμμΌλ‘ μ 곡λλ μ΄λ©μΌ μ£Όμ μ
λ ₯ |
+| textWebPassword | μΉ μμμΌλ‘ μ 곡λλ λΉλ°λ²νΈ μ
λ ₯ |
+| number | μ«μ μ
λ ₯ |
+| numberSigned | λΆνΈκ° μλ μ«μ μ
λ ₯ |
+| numberDecimal | μμμ μ΄ μλ μ«μ μ
λ ₯ |
+| numberPassword | μ«μλ‘ λ λΉλ°λ²νΈ μ
λ ₯ |
+| phone | β-β νμ©νμ¬ μ νλ²νΈ μ
λ ₯ |
+| datetime | λ μ§μ μκ° μ
λ ₯ (β-βλ‘ λ μ§, β:βλ‘ μκ° κ΅¬λΆ) |
+| date | β-β νμ©νμ¬ λ μ§ μ
λ ₯ |
+| time | β:β νμ©νμ¬ μκ° μ
λ ₯ |
+
+
+# Reference
+- [Android Developers > TextView > android:inputType](https://developer.android.com/reference/android/widget/TextView#attr_android:inputType)
+- [Tistory > [Android Studio] EditText - inputType μ’
λ₯](https://128june.tistory.com/65)