<?xml version="1.0" enCoding="utf-8"?><ScrollVIEw xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:ID="@+ID/my_scrollvIEw" androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" > <linearLayout androID:layout_wIDth="fill_parent" androID:layout_height="wrap_content" androID:orIEntation="vertical" > <EditText androID:ID="@+ID/input_one" androID:layout_wIDth="300dp" androID:layout_height="wrap_content" androID:layout_gravity="center" androID:inputType="number" > <EditText androID:ID="@+ID/input_two" androID:layout_wIDth="300dp" androID:layout_height="wrap_content" androID:layout_gravity="center" androID:inputType="number" > <EditText androID:ID="@+ID/input_three" androID:layout_wIDth="300dp" androID:layout_height="wrap_content" androID:layout_gravity="center" androID:inputType="number" > <button androID:ID="@+ID/ok_btn" androID:layout_wIDth="200dp" androID:layout_height="wrap_content" androID:layout_gravity="center" androID:layout_margintop="20dp" androID:text="@string/ok_str" /> </linearLayout></ScrollVIEw>
如上所示,简单布局包含三个输入字段和一个“确定”按钮.
我使用上面的布局运行我的应用程序,当我点击第一个输入字段(@ ID / input_one)时,软键盘将从屏幕底部d出,它隐藏第三个输入字段和“确定”按钮.
因为我使用< ScrollVIEw>,我以为我可以向上滚动页面以查看第三个输入字段和软键盘隐藏的“确定”按钮,但页面不可滚动.为什么?如何摆脱它?基本上,我想看到每个输入字段和“确定”按钮,甚至软键盘d出.
解决方法 我通过在< activity>中定义以下属性来解决问题. AndroIDManifest.xmlandroID:windowsoftinputMode="stateVisible|adjustResize"总结
以上是内存溢出为你收集整理的android – d出软键盘时页面滚动全部内容,希望文章能够帮你解决android – d出软键盘时页面滚动所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)