1

找不到解决方案如何通过位于主窗口底部的 ScrollView 下方的 EditText 的弹出 SoftKeyboard 来避免重叠。我花了一天时间在这里寻找解决方案,但所有建议:

我添加了 android:descendantFocusability="beforeDescendants" android:focusableInTouchMode="true" 和 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 及更高版本的问题。

4

1 回答 1

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>
于 2012-09-06T16:06:57.827 回答