自定义软键盘,随机数字位置键盘

本文介绍了如何实现自定义软键盘,特别是创建一个数字位置错位的安全输入键盘,以增加输入安全性。通过加载自定义键盘布局并隐藏系统键盘,详细记录了实现过程,并提供了GitHub项目链接。
摘要由CSDN通过智能技术生成

简介

今天在掘金上看了一篇文章,实现自定义软键盘,发现其实实现方式比较简单,不需要改动系统api,只是单纯的加载自己的键盘布局,隐藏系统弹出的键盘,实现数字错位,安全输入软键盘,记录一下实现过程用于总结

github地址: https://github.com/fushuangdage/CustomView

这里写图片描述

实现

<?xml version="1.0" encoding="utf-8"?>
<Keyboard
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:horizontalGap="0px"
    android:keyHeight="9%p"
    android:keyWidth="25%p"
    android:verticalGap="0px"
    >

    <Row>

        <Key
            android:codes="49"
            android:keyLabel="1"/>

        <Key
            android:codes="50"
            android:keyLabel="2"/>

        <Key
            android:codes="51"
            android:keyLabel="3"/>

        <Key
            android:codes="-5"
            android:isRepeatable="true"
            android:keyEdgeFlags="right"
            android:keyHeight="18%p"
            android:keyIcon="@drawable/icon_delete_32dp"/>

    </Row>

    <Row>

        <Key
            android:codes="52"
            android:keyLabel="4"/>

        <Key
            android:codes="53"
            android:keyLabel="5"/>

        <Key
            android:codes="54"
            android:keyLabel="6"/>


    </Row>

    <Row>

        <Key
            android:codes="55"
            android:keyLabel="7"/>

        <Key
            android:codes="56"
            android:keyLabel="8"/>

        <Key
            android:codes="57"
            android:keyLabel="9"/>

        <Key
            android:codes="-4"
            android:keyEdgeFlags="right"
            android:keyHeight="18%p"
            android:keyLabel="确定"
            android:keyIcon="@drawable/icon_enter_32dp"/>

    </Row>

    <
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值