Android软键盘显示/隐藏控制问题

发布于 2024-11-30 17:04:07 字数 1260 浏览 0 评论 0原文

这里我写了简单的布局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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伪装你 2024-12-07 17:04:07

尝试将此属性添加到清单文件中的活动中

<activity android:windowSoftInputMode="stateAlwaysHidden" android:name=".Demo"/>

try adding this attribute to your activity in the manifest file

<activity android:windowSoftInputMode="stateAlwaysHidden" android:name=".Demo"/>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文