Android 自定义软键盘遇到的问题

首先来分析一下软键盘的基本属性
- 软键盘的实现
- 点击输入框从底部弹出软键盘
- 弹出软键盘后焦点在输入框
- 弹出软键盘不遮挡输入框

软键盘的实现
可以使用KeyboardView也可以自己写布局写点击事件(除特殊情况不推荐)
KeyboardView的简单实现方法
一、在res下新建xml文件夹,在xml文件夹中新建keyboard.xml文件

<?xml version="1.0" encoding="utf-8"?>
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
          android:keyWidth="33.3333%p" android:horizontalGap="0px"
          android:verticalGap="0px" android:keyHeight="80dp">
    <Row>
        <Key android:codes="55" android:keyLabel="7" />
        <Key android:codes="56" android:keyLabel="8" />
        <Key android:codes="57" android:keyLabel="9" android:keyEdgeFlags="right"/>
    </Row>
    <Row>
        <Key android:codes="52" android:keyLabel="4" />
        <Key android:codes="53" android:keyLabel="5" />
        <Key android:codes="54" android:keyLabel="6" android:keyEdgeFlags="right"/>

    </Row>
    <Row>
        <Key android:codes="49" android:keyLabel="1" />
        <Key android:codes="50" android:keyLabel="2" />
        <Key android:codes="51" android:keyLabel="3" android:keyEdgeFlags="right"/>
    </Row>
    <Row>
        <Key android:codes="46" android:keyLabel="." />
        <Key android:codes="48" android:keyLabel="0" />
        <Key android:codes="-3" android:keyEdgeFlags="right" andr
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值