0

我有一个 RelativeLayout 作为我的视图的主要布局。我已将图像设置为背景。我还在该视图上添加了几个 EditText。我的问题是,当我开始编辑 EditText 并显示键盘时,我的背景会向上滚动。我怎么能解决这个问题?这是我的 RelaviveLayout 定义:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/layoutPrincipal"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:focusable="true" 
    android:focusableInTouchMode="true"
    android:background="@drawable/ciudad_hd_1"
    android:orientation="vertical" >
4

1 回答 1

2

尝试在 AndroidManifest.xml 的活动标签中使用它

<activity android:windowSoftInputMode="stateVisible|adjustPan" . . . >
于 2012-05-31T10:11:14.983 回答