2013-03-26 131 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>