2013-03-26 61 views

回答

1

是的。 谁碰巧得到类似的想法可以按照this guide

这基本上解释了如何使用KeyboardView将自定义键盘放入您的布局xml。并且键可以被定义为具有任何图标

<Keyboard xmlns:android="http://schemas.android.com/apk/res/android" 
    <Row> 
     <Key android:codes="48" android:keyLabel="0" /> 
     <Key android:codes="-3" android:keyIcon="@drawable/human_saying_hello_icon" /> 
    </Row> 
</Keyboard>