如何让我的屏幕与键盘一起上升?

时间:2011-04-06 21:33:36

标签: android android-layout

键盘上升时如何收到通知?

我有一个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里面我打开一个带有EditText和Button的PopupWindow。

触摸EditText时,软键盘覆盖在屏幕底部,甚至覆盖弹出窗口。

1 个答案:

答案 0 :(得分:1)