我的布局中有页脚,页脚的上方有一些EditText。现在,当我尝试写入编辑文本时,默认键盘显示。并且页脚也是从默认键盘的底部移动到上侧。 。 。我该如何解决? 布局代码如下。 。 。
<?xml version="1.0" encoding="utf-8"?>
<!-- For the Header Part -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="fill_parent"
android:layout_height="45dip"
android:background="@drawable/header_gradient">
<Button
android:id="@+id/backToMainMenuFromDonationForm"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/backhome"
android:layout_gravity="center"/>
<TextView
android:text="Donation Form"
android:layout_height="fill_parent"
android:layout_width="240dip"
android:layout_gravity="center"
android:layout_marginLeft="5dip"
android:layout_marginTop="5dip"
android:layout_marginRight="5dip"
android:layout_marginBottom="5dip"
android:gravity="center"
android:textColor="#ffffff"
android:textSize="20dip"/>
</LinearLayout>
<!-- Header Part Finish -->
</LinearLayout>
<ImageView
android:src="@drawable/right_arrow_small"
android:layout_gravity="center_vertical|right"
android:layout_height="25dip"
android:layout_marginRight="7dip"
android:layout_width="10dip">
</ImageView>
请帮帮我。 。 。 感谢。
答案 0 :(得分:0)
好的,将此代码添加到您的清单活动中..
android:windowSoftInputMode="adjustResize|adjustPan"
android:configChanges="keyboardHidden|orientation"