Android 4.0软键盘与EditText重叠

时间:2012-09-06 15:43:09

标签: android android-edittext android-softkeyboard

无法找到解决方法如何避免重叠位于主窗口底部的EditText的弹出式SoftKeyboard,就在ScrollView下面。  我在这里寻找解决方案的一天,但所有的建议:  

我补充说     机器人:descendantFocusability = “beforeDescendants”     机器人:focusableInTouchMode = “真”  和     android:focusable =“true”android:focusableInTouchMode =“true” - 这没有帮助。

调整清单:

<activity
    android:name=".mvc.views.SightingDetailsActivity"
    android:theme="@android:style/Theme.Black"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="stateHidden|adjustPan"
    />

解决了Android低于4.0(2.2,2.3和3.2)的问题,但尚未解决Android 4.0及更高版本的问题。

1 个答案:

答案 0 :(得分:0)

use scroll View as a parent and put the other layout component as
a child inside this scroll View.

  <?xml version="1.0" encoding="utf-8"?>
  <ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
  android:layout_width="match_parent"
  android:paddingLeft="30dp"
  android:paddingRight="30dp"
  android:layout_height="match_parent">
 <TableLayout
   android:layout_width="match_parent"
   android:layout_height="wrap_content"
   android:shrinkColumns="*" 
   android:stretchColumns="*" 
   android:focusableInTouchMode="true">
    <TableRow
         android:layout_width="match_parent"
         android:padding="20dp"
         android:layout_height="wrap_content">
       <TextView
           android:text="@string/introduction"
           android:layout_width="match_parent"
           android:layout_height="wrap_content"
           android:textSize="27dp"
           android:textColor="@color/green"
           android:layout_span="4"
           android:gravity="center_horizontal"/>
  </TableRow>
    <TableRow
          android:layout_width="match_parent"
          android:layout_height="1dp"
          android:background="@color/green">
       <TextView android:layout_span="2" 
           android:layout_height="1dp" 
           android:layout_width="match_parent"
           android:text="">
       </TextView>
      </TableRow>
    </ScrollView>