Created
September 19, 2017 07:50
-
-
Save ssaurel/7e9403912352c686319c1daf6984c4b5 to your computer and use it in GitHub Desktop.
Content of the System Keyboard for a tutorial on the SSaurel's Channel
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android" | |
android:keyWidth="20%p" | |
android:horizontalGap="5dp" | |
android:verticalGap="5dp" | |
android:keyHeight="60dp"> | |
<Row> | |
<Key android:codes="49" android:keyLabel="1" android:keyEdgeFlags="left"/> | |
<Key android:codes="50" android:keyLabel="2"/> | |
<Key android:codes="51" android:keyLabel="3"/> | |
<Key android:codes="52" android:keyLabel="4"/> | |
<Key android:codes="53" android:keyLabel="5" android:keyEdgeFlags="right"/> | |
</Row> | |
<Row> | |
<Key android:codes="54" android:keyLabel="6" android:keyEdgeFlags="left"/> | |
<Key android:codes="55" android:keyLabel="7"/> | |
<Key android:codes="56" android:keyLabel="8"/> | |
<Key android:codes="57" android:keyLabel="9"/> | |
<Key android:codes="48" android:keyLabel="0" android:keyEdgeFlags="right"/> | |
</Row> | |
<Row> | |
<Key android:codes="-5" | |
android:keyLabel="DELETE" | |
android:keyWidth="40%p" | |
android:keyEdgeFlags="left" | |
android:isRepeatable="true"/> | |
<Key android:codes="10" | |
android:keyLabel="ENTER" | |
android:keyWidth="60%p" | |
android:keyEdgeFlags="right"/> | |
</Row> | |
</Keyboard> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment