프로그래밍 정리/안드로이드

[Android] 키보드 위에 레이아웃 올리기

주누다 2014. 10. 28. 14:18
반응형

매니페스트에서 해당 액티비티에

android:windowSoftInputMode="adjustResize" 등록


레이아웃 올릴 레리아웃에 스타일 지정.

style="@android:style/ButtonBar"


ex)

<LinearLayout 

        style="@android:style/ButtonBar"

        android:layout_width="match_parent"

        android:layout_height="wrap_content"

        android:orientation="vertical">


이런식으로 하면 키보드 올라올시 

스타일지정한 레이아웃도 같이 올라오게 됨.


p.s - 전체적인 레이아웃(루트 레리아웃(?))은 리니어레이아웃으로 했음.

굳이 RelativeLayout을 할 필요없음.

반응형