3

在线性布局中,我有四个 Edittext 字段。打开虚拟键盘时,我无法查看第一个 edittext 字段。我可以从第二个视图滚动,第一个视图部分可见。如何解决这个问题。在此先感谢。

<ScrollView android:layout_height="fill_parent"
    android:layout_width="fill_parent" android:id="@+id/scrlLogin"
    android:layout_below="@+id/Title" android:background="@drawable/screenbackground"
    android:scrollbars="none">
    <LinearLayout android:id="@+id/linearLayout1"
        android:layout_width="fill_parent" android:layout_height="wrap_content"
        android:orientation="vertical" android:layout_gravity="center">

             ..............
</LinearLayout >
</ScrollView >

我的屏幕链接在这里

普通画面

带虚拟键盘

4

1 回答 1

2

不要浪费你的时间只要放

android:windowSoftInputMode="adjustPan"

在主要活动的 AndroidManifest.xml 中。

于 2012-10-16T07:10:47.903 回答