键盘出现时如何防止布局滑动

时间:2013-09-21 09:42:45

标签: android android-layout

我已经编写了一个布局xml并将EditText放在ImageView下方和按钮上方。当我点击EditText发短信时,按钮即将出现并显示在EditText上。如何解决此问题?我已添加到清单android:windowSoftInputMode="adjustPan"。它仍然无法正常工作。这是我的布局;

<EditText
    android:id="@+id/editTextGunlukIcerik"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/imageView"
    android:layout_below="@+id/imageView"
    android:layout_marginTop="68dp"
    android:ems="10"
    android:maxLines="7"
    android:overScrollMode="always"
    android:scrollHorizontally="false"
    android:scrollbarAlwaysDrawVerticalTrack="true"
    android:scrollbarStyle="insideInset"
    android:scrollbars="vertical" >

    <requestFocus />
</EditText>

<TextView
    android:id="@+id/textViewTarih"
    android:layout_width="fill_parent"
    android:layout_height="15dp"
    android:textStyle="normal|italic"
    android:textAlignment="center"
    android:layout_alignLeft="@+id/editTextGunlukIcerik"
    android:layout_below="@+id/imageView"
    android:layout_marginTop="36dp"/>

<Button
    android:id="@+id/buttonGunlukKaydet"
    android:windowSoftInputMode="adjustResize"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_centerHorizontal="true"
    android:layout_marginBottom="17dp"
    android:text="Kaydet" />

1 个答案:

答案 0 :(得分:4)

将以下代码用于标记内的AndroidManifest文件,如下所示

 <activity android:windowSoftInputMode="adjustPan" 
           android:name=".MainActivity" >

参考这个问题

Android: How do I prevent the soft keyboard from pushing my view up?