카카오톡같은경우 키패드가 올라오면 메시지 내용만 위로 올라가고 타이틀 바는 고정이 되는데요.


제가 하면 타이틀 바가 위로 올라가버리면서 안보이네요.


어떤분이 weight와 gravity설정을 잘못하면 그런 문제가 발생한다고 하여서 기본설정만으로 코딩을 해서 테스트를 해봤는데요.


아래와 같은 소스에서도 동일하게 타이틀바가 사라집니다. 혹시 해결방법 아시는분 계신가요?


주의 : TextView의 내용과 EditText는 키패드위로 올라가야하며 타이틀바만 고정시켜야 합니다.




<LinearLayout

xmlns:android="http://schemas.android.com/apk/res/android"

android:orientation="vertical"

android:layout_width="fill_parent"

android:layout_height="wrap_content">

<TextView

android:id="@+id/text1"

android:layout_width="fill_parent"

android:layout_height="wrap_content"

android:text="aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa...화면에 반정도 차도록 출력함" />

<EditText

android:id="@+id/text3"

android:layout_width="fill_parent"

android:layout_height="wrap_content" 

/>

</LinearLayout>