我有一个framelayout,我设置了前景。一切都很好,但是当我在框架布局的顶部选择textview时,framelayout前景比例通过显示键盘而改变。 我的代码是:
`<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:foreground="@drawable/gol"
android:foregroundGravity="center|center_horizontal"
android:orientation="vertical" >
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RelativeLayout
android:id="@+id/rlsearch"
android:layout_width="fill_parent"
android:layout_height="48dp"
android:layout_marginBottom="10dp"
android:background="@drawable/searchback" >
<Button
android:id="@+id/buttonSearch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="5dp"
android:background="@drawable/search"
android:focusable="false"
android:textSize="20sp" />
<EditText
android:id="@+id/editTextSearch"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_centerVertical="true"
android:layout_marginLeft="5dp"
android:layout_marginRight="5dp"
android:layout_toLeftOf="@+id/buttonSearch"
android:background="@android:color/transparent"
android:hint="@string/HintSearch"
android:imeOptions="actionSearch"
android:lines="1"
android:singleLine="true"
android:textColor="@color/TextColor"
android:textColorHint="@color/HintColor" />
</RelativeLayout>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<ImageView
android:id="@+id/imageView1"
android:layout_width="fill_parent"
android:layout_height="100dp"
android:scaleType="fitXY"
android:src="@drawable/up" />
<ListView
android:id="@+id/DynamicListView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@id/imageView1"
android:cacheColorHint="#00000000"
android:divider="#00000000"
android:dividerHeight="10dp"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:paddingRight="10dp"
android:paddingTop="10dp" >
</ListView>
</RelativeLayout>
</LinearLayout>
`
那我的代码有什么问题? 感谢
答案 0 :(得分:0)
在清单中的活动中,添加以下内容:
android:windowSoftInputMode="adjustPan"
说明:软键盘既可以设置为此模式(平移),也可以将我们正在编辑的字段滚动到键盘旁边,也可以设置为缩放(默认值)缩小所有内容,使整个布局仍然适合键盘可见。