I have a keyboard definition in an xml file in /res/xml which looks something like this:
<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"
>
<Row>
<Key... />
</Row>
<Row>
<Key... />
</Row>
<Row android:rowEdgeFlags="bottom" >
<Key ... />
</Row>
</Keyboard>
I’m looking for a way of making one row of keys taller than the others, but I can’t work out how. Increasing the keyHeight on the Keyboard tag makes all the keys bigger – is there a way to only target one row?
I think you can use this defaultHeight which defines the default height for a key in a row..