我想创建自定义键盘,其中一些键比正常情况更宽,而某些键更高。可能吗?这是图片:1
答案 0 :(得分:1)
好的,谢谢你的回答。也许我写的问题有点不清楚,但我想知道如何设计键盘看起来像图片,而不是如何从一开始创建键盘。 这有点令人困惑,因为起初我只使用android:keyHeight属性导致隐藏其他键。后来我尝试使用android:horizontalGap属性和height属性,这帮助我得到了我想要的结果。 这是我的代码:(需要更多调整键大小)
<?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_height="match_parent"
android:keyWidth="8%p"
android:keyHeight="14%p">
<Row>
<Key android:codes="-3" android:keyLabel="abc" android:horizontalGap="0.1%p" android:keyHeight="30%"/>
<Key android:codes="49" android:keyLabel="1" android:horizontalGap="0.1%p"/>
<Key android:codes="50" android:keyLabel="2" android:horizontalGap="0.1%p" />
<Key android:codes="51" android:keyLabel="3" android:horizontalGap="0.1%p" />
<Key android:codes="52" android:keyLabel="4" android:horizontalGap="0.1%p" />
<Key android:codes="53" android:keyLabel="5" android:horizontalGap="0.1%p" />
<Key android:codes="47" android:keyLabel="/" android:horizontalGap="0.1%p" android:keyHeight="30%"/>
</Row>
<Row>
<Key android:codes="54" android:keyLabel="6" android:horizontalGap="8%p"/>
<Key android:codes="55" android:keyLabel="7" android:horizontalGap="0.1%p" />
<Key android:codes="56" android:keyLabel="8" android:horizontalGap="0.1%p" />
<Key android:codes="57" android:keyLabel="9" android:horizontalGap="0.1%p" />
<Key android:codes="48" android:keyLabel="0" android:horizontalGap="0.1%p" />
</Row>
<Row>
<Key android:codes="-1" android:keyLabel="Back" android:keyWidth="50%p" android:horizontalGap="0.1%p"/>
<Key android:codes="-2" android:keyLabel="Next" android:keyWidth="50%p" android:horizontalGap="0.1%p"/>
</Row>
</Keyboard>