2011-04-06 62 views
0

當鍵盤上升時,我該如何得到通知?如何讓我的屏幕與鍵盤一起上升?

我有一個FrameLayout,它不會調整大小,所以我需要自己翻譯屏幕。

這是我的實際佈局XML

<?xml version="1.0" encoding="utf-8"?> 
<FrameLayout android:orientation="vertical" 
xmlns:android="http://schemas.android.com/apk/res/android" 
android:layout_width="match_parent" android:layout_height="match_parent" 
android:layout_weight="1"> 
<br.view.image.ScrollableImage 
    android:id="@+id/image01" android:layout_width="match_parent" 
    android:layout_height="match_parent" /> 
<br.view.TopBarView android:id="@+id/topBar" 
    android:layout_width="match_parent" android:layout_height="wrap_content" /> 
<br.view.BottomBarView 
    android:id="@+id/bottomBar" android:layout_gravity="bottom" 
    android:layout_width="match_parent" android:layout_height="wrap_content" /> 
</FrameLayout> 

從BottomBar裏面我打開一個PopupWindow至極一個的EditText和一個按鈕。

當觸摸EditText時,軟鍵盤只覆蓋屏幕底部,即使彈出窗口也覆蓋。

回答