먼저 첨부파일부터 봐주시기 바랍니다..

그리고 첨부파일에 있는 layout은 다음과 같습니다...


<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">
   
    <com.jwork.DrawingView 
        android:id="@+id/DrawingView"
        android:layout_width="match_parent"
        android:layout_height="match_parent"/>
    
    <AbsoluteLayout android:id="@+id/widget45"
        android:layout_width="fill_parent" android:layout_height="fill_parent"
        xmlns:android="http://schemas.android.com/apk/res/android">
       
         <EditText android:id="@+id/drawing_code" android:layout_width="200px"
                android:layout_height="100px" android:textSize="18sp"
                android:layout_x="3px" android:layout_y="300px">
        </EditText>
        <Button android:id="@+id/sendinput1button" android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:text="Exe"
                android:layout_x="270px" android:layout_y="300px">
        </Button>
    </AbsoluteLayout> 
       
       
</FrameLayout>



edittext 에 클릭하면 키보드입력창이 나오쟎아요..

그런데.. 뒤로가기 버튼을 눌러 키보드창을 안보이게 하면...

edittext창이 반이 안보여집니다.. 키보드창이 떴을때 가려졌던 부분이

다시 나타나는게 아니고 안보이더라고요.. 어디가 문제일까요?