Hide keyboard when click EditText Android – Hide keyboard when click EditText

Have you ever wanted to click on the EditText without displaying the default keyboard on Android? For example, when pocket calculators. Chúng ta xây dựng bàn phím sẵn và không muốn nó hiện lên rồi 😉
Đoạn code dưới đây sẽ giúp bạn làm điều đó 😉

editMath.setInputType(InputType.TYPE_NULL);
if (android.os.Build.VERSION.SDK_INT >= 11) {
	editMath.setRawInputType(InputType.TYPE_CLASS_TEXT);
	editMath.setTextIsSelectable(true);
}

In the code above is the EditText editMath we want to manipulate.

Ví dụ với máy tính đơn giản mình vừa làm 😉

calculator