Android软键盘显示/隐藏控制问题
这里我写了简单的布局xml。 (使用一个列表视图和编辑文本)
当我使用通用 setContentView(R.layout.main); 激活此 xml 时 软键盘总是从底部出现。 但是,当我从 xml 中删除列表视图条目时,不会显示软键盘。
我不知道列表视图和软键盘之间有什么关系。
我从这个网站搜索了类似的问题,并提到了一些文章 使用焦点控制的解决方案。 但我希望我的 xml 在没有软键盘的情况下默认聚焦于 edittext。
有人可以给我建议如何解决这个问题吗?
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="480px"
android:layout_height="762px"
android:layout_gravity="center"
android:background="@drawable/bg_blank"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ListView
android:id="@+id/mylist"
android:layout_width="100px"
android:layout_height="200px"
android:layout_marginLeft="0px"
android:layout_marginTop="70px"
/>
<EditText
android:id="@+id/input1"
android:layout_width="200px"
android:layout_height="50px"
android:layout_marginLeft="64px"
android:layout_marginTop="400px"
/>
</RelativeLayout>
</FrameLayout>
Here I wrote simple layout xml. (with one listview and edittext)
When I activate this xml using common setContentView(R.layout.main);
soft keyboard is always appears from the bottom side.
BUT, when I remove listview entry from xml, softkeyboard is not shown.
I have no idea what's the relation between listview and softkeyboard.
I searched similar questions from this site, and some articles mentioned
solution using focus control.
But I want my xml have default focus at edittext without soft keyboard.
Can someone give me an advise to how to solve this problem?
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="480px"
android:layout_height="762px"
android:layout_gravity="center"
android:background="@drawable/bg_blank"
>
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<ListView
android:id="@+id/mylist"
android:layout_width="100px"
android:layout_height="200px"
android:layout_marginLeft="0px"
android:layout_marginTop="70px"
/>
<EditText
android:id="@+id/input1"
android:layout_width="200px"
android:layout_height="50px"
android:layout_marginLeft="64px"
android:layout_marginTop="400px"
/>
</RelativeLayout>
</FrameLayout>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试将此属性添加到清单文件中的活动中
try adding this attribute to your activity in the manifest file