<?xml version="1.0" encoding="utf-8"?>
<TabHost xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@android:id/tabhost"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/i00_bg">
    <LinearLayout
     android:layout_width="fill_parent"
     android:layout_height="fill_parent"
     android:orientation="vertical"
     >
     <FrameLayout
       android:id="@android:id/tabcontent"    
       android:layout_width="fill_parent"
       android:layout_height="0dp"
       android:layout_weight="1"             
       android:layout_above="@android:id/tabs">
     </FrameLayout>
     <TabWidget    
      android:id="@android:id/tabs"        
      android:layout_width="fill_parent"  
      android:layout_height="55dp"
      android:background="@null"
      android:layout_alignParentBottom="true">
     </TabWidget>
 </LinearLayout>
</TabHost>

 

구조가 위와 같은데 FrameLayout 에 웹뷰가 들어가게 됩니다

폼에서 input에 focus 했을때 input이 키보드에 안가려지게 하려다 보니 adjustResize인것 같은데

문제는 탭위젯도 같이 밀려올라가는데 이부분을 해결할 수 있는 방법이 없나요?

많은 답변 부탁드립니다