您的位置:首页 > 移动开发 > Android开发

android 自定义软键盘时 字体模糊解决办法

2017-06-15 10:12 281 查看
在KeyboardView中加入

android:shadowRadius=”0.0”

这句话就ok

android.inputmethodservice.KeyboardView android:id=”@+id/kv_input_car_plate_keyboard_view”

android:layout_width=”fill_parent”

android:layout_height=”wrap_content”

android:layout_alignParentBottom=”true”

android:focusable=”true”

android:background=”#ffffff” android:keyBackground=”@drawable/selector_keyboard_btn_bg”

android:keyTextColor=”#000000”

android:shadowRadius=”0.0”

/>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android-键盘