在Linearlayout中我有四个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 >
我的屏幕链接在这里
答案 0 :(得分:2)
不要浪费你的时间 只需加上
android:windowSoftInputMode="adjustPan"
在主要活动的AndroidManifest.xml中。