일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- WebView
- android recyclerview
- scope function
- Android
- Android WebView
- OkHttp Interceptor
- Kotlin
- 카카오 알고리즘
- DataBinding
- 프로그래머스 알고리즘
- Android 12
- Android Jetpack
- 영어공부
- MVP Architecture
- 안드로이드 fcm
- Android ViewPager2
- 안드로이드 갤러리 접근
- Android 12 대응
- 알고리즘 자바
- Android ProgressBar
- 66챌린지
- 안드로이드 카카오 로그인
- Java
- 안드로이드
- 습관만들기
- Android Navigation
- 영어독립365
- Kotlin FCM
- Android Interceptor
- Android DataBinding
Archives
- Today
- Total
Developer Geek
EditText 키보드 엔터 키보드 내리기 In Kotlin 본문
반응형
실행화면
EditText에 텍스트를 입력하고 키보드 엔터를 눌렀을 때 줄바뀜이 아닌 키보드가 내려가도록 한다.
추가적으로 응용할 때, 특정 기능이 동작할 수 있게 하기 위해서 Toast Message를 추가했다.
프로젝트 구조
참고). ViewBinding 을 사용한다.
Code
activity_main.xml
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<EditText
android:id="@+id/edit_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Hello World!"
android:singleLine="true"
android:imeOptions="actionGo"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
MainActivity.kt
class MainActivity : AppCompatActivity() {
lateinit var binding: ActivityMainBinding
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = ActivityMainBinding.inflate(layoutInflater)
setContentView(binding.root)
setListenerToEditText()
}
private fun setListenerToEditText() {
binding.editText.setOnKeyListener { view, keyCode, event ->
// Enter Key Action
if (event.action == KeyEvent.ACTION_DOWN
&& keyCode == KeyEvent.KEYCODE_ENTER
) {
// 키패드 내리기
val imm = getSystemService(INPUT_METHOD_SERVICE) as InputMethodManager
imm.hideSoftInputFromWindow(binding.editText.windowToken, 0)
// Toast Message
showToastMessage(binding.editText.text.toString())
true
}
false
}
}
private fun showToastMessage(msg: String?) {
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show()
}
}
build.gradle(:app)
ViewBinding 사용을 위해 android { } 속성으로 viewBinding{ enabled = true }
를 추가한다.
plugins {
id 'com.android.application'
id 'kotlin-android'
}
android {
compileSdk 31
defaultConfig {
applicationId "com.example.enterkeyexample"
minSdk 26
targetSdk 31
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
kotlinOptions {
jvmTarget = '1.8'
}
viewBinding{
enabled = true
}
}
dependencies {
implementation 'androidx.core:core-ktx:1.7.0'
implementation 'androidx.appcompat:appcompat:1.4.1'
implementation 'com.google.android.material:material:1.5.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.3'
testImplementation 'junit:junit:4.+'
androidTestImplementation 'androidx.test.ext:junit:1.1.3'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
}
반응형
'안드로이드' 카테고리의 다른 글
Android Application Class란 in Kotlin (0) | 2022.06.17 |
---|---|
Higher-Order Function(고차함수)란 in Kotlin (0) | 2022.06.14 |
Android Action Bar 숨기기 in Kotlin (0) | 2022.03.03 |
Android BottomSheetDialogFragment in Kotlin (0) | 2022.03.02 |
Kotlin 람다식 Basic (0) | 2022.02.06 |
Comments