如何在android中设置自定义软键盘的高度?

发布于 2024-11-05 14:40:26 字数 817 浏览 0 评论 0原文

我想创建一个只需要在设备屏幕的一半中显示的软键盘。

主要目的是即使在显示键盘时用户也可以在屏幕中查看和选择项目(因为它不会全屏显示)。

我尝试更改“inputView”和“candidateView”xml 中的布局高度参数。但是,整个键盘高度没有改变。 请提出一种方法来实现这一目标。

input.xml

 <com.example.android.softkeyboard.LatinKeyboardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/keyboard"
    android:layout_alignParentBottom="true"
    android:layout_width="5px"
    android:layout_height="5px"
    />

qwerty.xml

<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="10%p"
android:horizontalGap="0px"
android:verticalGap="0px"
android:keyHeight="@dimen/key_height"
android:paddingTop="80px"
android:layout_height="50px"
android:layout_width="50px"
>

- 提前致谢。

I want to create a soft keyboard which needs to be displayed in only half of the device screen.

The main intention is that user can see and select items in the screen even while the keyboard is displayed (as it will not be in full screen).

I tried changing the layout height parameter in "inputView" and "candidateView" xml. But, the whole keyboard height is not getting changed.
Please propose a way to achieve this.

input.xml

 <com.example.android.softkeyboard.LatinKeyboardView
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/keyboard"
    android:layout_alignParentBottom="true"
    android:layout_width="5px"
    android:layout_height="5px"
    />

qwerty.xml

<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:keyWidth="10%p"
android:horizontalGap="0px"
android:verticalGap="0px"
android:keyHeight="@dimen/key_height"
android:paddingTop="80px"
android:layout_height="50px"
android:layout_width="50px"
>

-Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文