如何在android中设置自定义软键盘的高度?
我想创建一个只需要在设备屏幕的一半中显示的软键盘。
主要目的是即使在显示键盘时用户也可以在屏幕中查看和选择项目(因为它不会全屏显示)。
我尝试更改“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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论