Advertisement
minafaw3

keyboard

Jun 16th, 2015
319
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:keyWidth="12.50%p"
  4. android:keyHeight="7%p">
  5. <!--
  6. android:horizontalGap="0.50%p"
  7. android:verticalGap="0.50%p"
  8. NOTE When we add a horizontalGap in pixels, this interferes with keyWidth in percentages adding up to 100%
  9. NOTE When we have a horizontalGap (on Keyboard level) of 0, this make the horizontalGap (on Key level) to move from after the key to before the key... (I consider this a bug)
  10. -->
  11. <Row>
  12. <Key android:codes="-5" android:keyLabel="remove" android:keyEdgeFlags="left" />
  13. <Key android:codes="48" android:keyLabel="0" />
  14. <Key android:codes="55006" android:keyLabel="clear" />
  15. </Row>
  16. <Row>
  17. <Key android:codes="49" android:keyLabel="1" android:keyEdgeFlags="left" />
  18. <Key android:codes="50" android:keyLabel="2" />
  19. <Key android:codes="51" android:keyLabel="3" />
  20. </Row>
  21. <Row>
  22. <Key android:codes="52" android:keyLabel="4" android:keyEdgeFlags="left" />
  23. <Key android:codes="53" android:keyLabel="5" />
  24. <Key android:codes="54" android:keyLabel="6" />
  25. </Row>
  26.  
  27. <Row>
  28. <Key android:codes="55" android:keyLabel="7" android:keyEdgeFlags="left" />
  29. <Key android:codes="56" android:keyLabel="8" />
  30. <Key android:codes="57" android:keyLabel="9" />
  31. </Row>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement