我想创建一个软键盘,只需要在设备屏幕的一半显示。
主要目的是即使显示键盘,用户也可以在屏幕上看到和选择项目(因为它不会全屏显示)。
我尝试更改“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"
>
- 提前谢谢。