android 自定义键盘
引用
compile 'com.dilusense.android:customkeyboard:1.1'
布局文件引用键盘布局文件
<include
layout="@layout/layout_keyboardview"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"/>
创建键盘实例
KeyboardIdentity keyboardIdentity = new KeyboardIdentity(this);
绑定点击,焦点变化事件给EditText
KeyboardUtils.bindEditTextEvent(keyboardIdentity, editText);