본문 바로가기

Android/개발 정보

Android 키보드 호출 시 화면 스크롤링

728x90
반응형

안드로이드 개발 중 EditText 에 글자 입력을 위해 키보드를 호출하면 화면이 가려지면서 아래 내용이 안보일 때가 있다.

이때 해결방법.

 

1. xml 설정

해당 화면 xml의 최 상단 layout 부분에 id를 설정한다.

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:id="@+id/loginView"				// 이부분
    tools:context=".ui.login.LoginActivity">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:paddingLeft="@dimen/activity_horizontal_margin"
        android:paddingTop="@dimen/activity_vertical_margin"
        android:paddingRight="@dimen/activity_horizontal_margin"
        android:paddingBottom="@dimen/activity_vertical_margin"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintTop_toTopOf="parent">

        <androidx.constraintlayout.widget.ConstraintLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">	// height은 wrap_content

 

쓰는 부분은 최상단에 설정한 id 값이여서 scrollview 가 꼭 필요하진 않지만 화면이 작거나 입력창이 아래에 있을 경우엔 스크롤이 없으면 키보드에 가려질 수 있으니 권장.

이 때 scrollview의 자식은 한가지만 올 수 있는데 그 자식 layout의 height은 wrap_content로 설정해주어야 함. (match_parent로 설정 시 scrollview가 스크롤 할 내용이 없는 것으로 간주 할 수도 있음)

 

 

2. Activity 설정.

onCreate() 부분에 해당 코드 입력

// 키보드 호출 시 화면 스크롤링
val rootView = findViewById<View>(R.id.loginView)
ViewCompat.setOnApplyWindowInsetsListener(rootView) { view, insets ->
    val imeHeight = insets.getInsets(WindowInsetsCompat.Type.ime()).bottom
    view.setPadding(0, 0, 0, imeHeight)
    insets
}

 

 

따로 AndroidManifest 부분에 adjustResize 안해주어도 됨.

728x90
반응형