在比较开发人员之间的设计时,我们发现了一个奇怪的行为。经过一些分析,我们进行了这个观察。
当活动开始时,在某些情况下会出现键盘,但有时不会。
事实上,如果没有ScrollView
,软键盘默认不会出现在EditText
.
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TestActivity" >
<EditText
android:id="@+id/editText1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:ems="10"
android:inputType="text" >
<requestFocus />
</EditText>
</LinearLayout>
但是当我们添加 aScrollView
时,默认情况下会显示软键盘。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".TestActivity" >
<ScrollView
android:id="@+id/scrollView1"
android:layout_width="0dp"
android:layout_height="match_parent"
android:layout_weight="1" >
<EditText
android:id="@+id/editText1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="text" >
<requestFocus />
</EditText>
</ScrollView>
</LinearLayout>
这仅取决于ScrollView
. 我们可以通过在 中的特定声明来解决这个问题AndroidManifest
,但这是默认行为。
我和我的开发人员同事想知道为什么会发生这种情况?