我的编程空间,编程开发者的网络收藏夹
学习永远不晚

Android自定义软键盘的设计与实现代码

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

Android自定义软键盘的设计与实现代码

偶然间发现了Android.inputmethodservice.Keyboard类,即android可以自定义键盘类,做了一个简单例子供大家参考。

效果如下:

先看界面布局文件


 <?xml version="1.0" encoding="utf-8"?> 
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
  android:layout_width="fill_parent" 
  android:layout_height="fill_parent" 
  android:orientation="vertical" > 
  <EditText 
    android:id="@+id/edit" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" /> 
  <EditText 
    android:id="@+id/edit1" 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:password="true" /> 
  <RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" > 
    <android.inputmethodservice.KeyboardView 
      android:id="@+id/keyboard_view" 
      android:layout_width="fill_parent" 
      android:layout_height="wrap_content" 
      android:layout_alignParentBottom="true" 
      android:focusable="true" 
      android:focusableInTouchMode="true" 
      android:background="@color/lightblack" 
      android:keyBackground="@drawable/btn_keyboard_key" 
      android:keyTextColor="@color/white" 
      android:visibility="gone" /> 
  </RelativeLayout> 
</LinearLayout> 

通过布局文件可以看出界面上有两个输入框,其中一个是密码输入框,界面上还有一个隐藏的键盘控件。

在res下新建xml文件夹,在xml文件夹中新建qwerty.xml和symbols.xml文件. qwerty.xml 是字母键盘布局,symbols.xml 是数字键盘布局,内如如下:

qwerty.xml内容


<?xml version="1.0" encoding="UTF-8"?> 
<Keyboard android:keyWidth="10.000002%p" android:keyHeight="@dimen/key_height" 
    android:horizontalGap="0.0px" android:verticalGap="0.0px" 
    xmlns:android="http://schemas.android.com/apk/res/android"> 
    <Row> 
        <Key android:codes="113" android:keyEdgeFlags="left" 
            android:keyLabel="q" /> 
        <Key android:codes="119" android:keyLabel="w" /> 
        <Key android:codes="101" android:keyLabel="e" /> 
        <Key android:codes="114" android:keyLabel="r" /> 
        <Key android:codes="116" android:keyLabel="t" /> 
        <Key android:codes="121" android:keyLabel="y" /> 
        <Key android:codes="117" android:keyLabel="u" /> 
        <Key android:codes="105" android:keyLabel="i" /> 
        <Key android:codes="111" android:keyLabel="o" /> 
        <Key android:codes="112" android:keyEdgeFlags="right" 
            android:keyLabel="p" /> 
    </Row> 
    <Row> 
        <Key android:horizontalGap="4.999995%p" android:codes="97" 
            android:keyEdgeFlags="left" android:keyLabel="a" /> 
        <Key android:codes="115" android:keyLabel="s" /> 
        <Key android:codes="100" android:keyLabel="d" /> 
        <Key android:codes="102" android:keyLabel="f" /> 
        <Key android:codes="103" android:keyLabel="g" /> 
        <Key android:codes="104" android:keyLabel="h" /> 
        <Key android:codes="106" android:keyLabel="j" /> 
        <Key android:codes="107" android:keyLabel="k" /> 
        <Key android:codes="108" android:keyEdgeFlags="right" 
            android:keyLabel="l" /> 
    </Row> 
    <Row> 
        <Key android:keyWidth="14.999998%p" android:codes="-1" 
            android:keyEdgeFlags="left" android:isModifier="true" 
            android:isSticky="true" android:keyIcon="@drawable/sym_keyboard_shift" /> 
        <Key android:codes="122" android:keyLabel="z" /> 
        <Key android:codes="120" android:keyLabel="x" /> 
        <Key android:codes="99" android:keyLabel="c" /> 
        <Key android:codes="118" android:keyLabel="v" /> 
        <Key android:codes="98" android:keyLabel="b" /> 
        <Key android:codes="110" android:keyLabel="n" /> 
        <Key android:codes="109" android:keyLabel="m" /> 
        <Key android:keyWidth="14.999998%p" android:codes="-5" 
            android:keyEdgeFlags="right" android:isRepeatable="true" 
            android:keyIcon="@drawable/sym_keyboard_delete" /> 
    </Row> 
    <Row android:rowEdgeFlags="bottom"> 
        <Key android:keyWidth="20.000004%p" android:codes="-2" 
            android:keyLabel="12#" /> 
        <Key android:keyWidth="14.999998%p" android:codes="44" 
            android:keyLabel="," /> 
        <Key android:keyWidth="29.999996%p" android:codes="32" 
            android:isRepeatable="true" android:keyIcon="@drawable/sym_keyboard_space" /> 
        <Key android:keyWidth="14.999998%p" android:codes="46" 
            android:keyLabel="." /> 
        <Key android:keyWidth="20.000004%p" android:codes="-3" 
            android:keyEdgeFlags="right" android:keyLabel="完成" /> 
    </Row> 
</Keyboard> 

symbols.xml 内容


<?xml version="1.0" encoding="utf-8"?> 
<Keyboard xmlns:android="http://schemas.android.com/apk/res/android" 
    android:keyWidth="25%p" android:horizontalGap="0px" 
    android:verticalGap="0px" android:keyHeight="@dimen/key_height"> 
    <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="57419" android:keyEdgeFlags="right" 
            android:keyIcon="@drawable/sym_keyboard_left" /> 
    </Row> 
    <Row> 
        <Key android:codes="52" android:keyLabel="4" /> 
        <Key android:codes="53" android:keyLabel="5" /> 
        <Key android:codes="54" android:keyLabel="6" /> 
        <Key android:codes="57421" android:keyEdgeFlags="right" 
            android:keyIcon="@drawable/sym_keyboard_right" /> 
    </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="-3" android:keyHeight="100dip" 
            android:keyEdgeFlags="right" android:isRepeatable="true" 
            android:keyLabel="完成" /> 
    </Row> 
    <Row> 
        <Key android:codes="-2" android:keyLabel="ABC" /> 
        <Key android:codes="48" android:keyLabel="0" /> 
        <Key android:codes="-5" android:keyIcon="@drawable/sym_keyboard_delete" /> 
    </Row> 
</Keyboard> 

KeydemoActivity.java


package cn.key; 
import android.app.Activity; 
import android.content.Context; 
import android.os.Bundle; 
import android.text.InputType; 
import android.view.MotionEvent; 
import android.view.View; 
import android.view.View.OnTouchListener; 
import android.widget.EditText; 
public class KeydemoActivity extends Activity { 
    private Context ctx; 
    private Activity act; 
    private EditText edit; 
    private EditText edit1; 
    @Override 
    public void onCreate(Bundle savedInstanceState) { 
        super.onCreate(savedInstanceState); 
        setContentView(R.layout.main); 
        ctx = this; 
        act = this; 
        edit = (EditText) this.findViewById(R.id.edit); 
        edit.setInputType(InputType.TYPE_NULL); 
        edit1 = (EditText) this.findViewById(R.id.edit1); 
        edit.setOnTouchListener(new OnTouchListener() { 
            @Override 
            public boolean onTouch(View v, MotionEvent event) { 
                new KeyboardUtil(act, ctx, edit).showKeyboard(); 
                return false; 
            } 
        }); 
        edit1.setOnTouchListener(new OnTouchListener() { 
            @Override 
            public boolean onTouch(View v, MotionEvent event) { 
                int inputback = edit1.getInputType(); 
                edit1.setInputType(InputType.TYPE_NULL); 
                new KeyboardUtil(act, ctx, edit1).showKeyboard(); 
                edit1.setInputType(inputback); 
                return false; 
            } 
        }); 
    } 
} 

KeyboardUtil.java


package cn.key; 
import java.util.List; 
import android.app.Activity; 
import android.content.Context; 
import android.inputmethodservice.Keyboard; 
import android.inputmethodservice.KeyboardView; 
import android.inputmethodservice.Keyboard.Key; 
import android.inputmethodservice.KeyboardView.OnKeyboardActionListener; 
import android.text.Editable; 
import android.view.View; 
import android.widget.EditText; 
public class KeyboardUtil { 
    private Context ctx; 
    private Activity act; 
    private KeyboardView keyboardView; 
    private Keyboard k1;// 字母键盘 
    private Keyboard k2;// 数字键盘 
    public boolean isnun = false;// 是否数据键盘 
    public boolean isupper = false;// 是否大写 
    private EditText ed; 
    public KeyboardUtil(Activity act, Context ctx, EditText edit) { 
        this.act = act; 
        this.ctx = ctx; 
        this.ed = edit; 
        k1 = new Keyboard(ctx, R.xml.qwerty); 
        k2 = new Keyboard(ctx, R.xml.symbols); 
        keyboardView = (KeyboardView) act.findViewById(R.id.keyboard_view); 
        keyboardView.setKeyboard(k1); 
        keyboardView.setEnabled(true); 
        keyboardView.setPreviewEnabled(true); 
        keyboardView.setOnKeyboardActionListener(listener); 
    } 
    private OnKeyboardActionListener listener = new OnKeyboardActionListener() { 
        @Override 
        public void swipeUp() { 
        } 
        @Override 
        public void swipeRight() { 
        } 
        @Override 
        public void swipeLeft() { 
        } 
        @Override 
        public void swipeDown() { 
        } 
        @Override 
        public void onText(CharSequence text) { 
        } 
        @Override 
        public void onRelease(int primaryCode) { 
        } 
        @Override 
        public void onPress(int primaryCode) { 
        } 
        @Override 
        public void onKey(int primaryCode, int[] keyCodes) { 
            Editable editable = ed.getText(); 
            int start = ed.getSelectionStart(); 
            if (primaryCode == Keyboard.KEYCODE_CANCEL) {// 完成 
                hideKeyboard(); 
            } else if (primaryCode == Keyboard.KEYCODE_DELETE) {// 回退 
                if (editable != null && editable.length() > 0) { 
                    if (start > 0) { 
                        editable.delete(start - 1, start); 
                    } 
                } 
            } else if (primaryCode == Keyboard.KEYCODE_SHIFT) {// 大小写切换 
                changeKey(); 
                keyboardView.setKeyboard(k1); 
            } else if (primaryCode == Keyboard.KEYCODE_MODE_CHANGE) {// 数字键盘切换 
                if (isnun) { 
                    isnun = false; 
                    keyboardView.setKeyboard(k1); 
                } else { 
                    isnun = true; 
                    keyboardView.setKeyboard(k2); 
                } 
            } else if (primaryCode == 57419) { // go left 
                if (start > 0) { 
                    ed.setSelection(start - 1); 
                } 
            } else if (primaryCode == 57421) { // go right 
                if (start < ed.length()) { 
                    ed.setSelection(start + 1); 
                } 
            } else { 
                editable.insert(start, Character.toString((char) primaryCode)); 
            } 
        } 
    }; 
     
    private void changeKey() { 
        List<Key> keylist = k1.getKeys(); 
        if (isupper) {//大写切换小写 
            isupper = false; 
            for(Key key:keylist){ 
                if (key.label!=null && isword(key.label.toString())) { 
                    key.label = key.label.toString().toLowerCase(); 
                    key.codes[0] = key.codes[0]+32; 
                } 
            } 
        } else {//小写切换大写 
            isupper = true; 
            for(Key key:keylist){ 
                if (key.label!=null && isword(key.label.toString())) { 
                    key.label = key.label.toString().toUpperCase(); 
                    key.codes[0] = key.codes[0]-32; 
                } 
            } 
        } 
    } 
  public void showKeyboard() { 
    int visibility = keyboardView.getVisibility(); 
    if (visibility == View.GONE || visibility == View.INVISIBLE) { 
      keyboardView.setVisibility(View.VISIBLE); 
    } 
  } 
  public void hideKeyboard() { 
    int visibility = keyboardView.getVisibility(); 
    if (visibility == View.VISIBLE) { 
      keyboardView.setVisibility(View.INVISIBLE); 
    } 
  } 
  private boolean isword(String str){ 
      String wordstr = "abcdefghijklmnopqrstuvwxyz"; 
      if (wordstr.indexOf(str.toLowerCase())>-1) { 
            return true; 
        } 
      return false; 
  } 
} 
您可能感兴趣的文章:Android的ImageButton当显示Drawable图片时就不显示文字Android开发仿咸鱼键盘DEMO(修改版)Android 自定义View时使用TypedArray配置样式属性详细介绍Android ListView适配器(Adapter)优化方法详解实现一个Android锁屏App功能的难点总结Android 实现界面刷新的几种方法Android控件RefreshableView实现下拉刷新Android 自定义控件实现显示文字的功能


免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

Android自定义软键盘的设计与实现代码

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

Android自定义软键盘的设计与实现代码

偶然间发现了Android.inputmethodservice.Keyboard类,即android可以自定义键盘类,做了一个简单例子供大家参考。效果如下:先看界面布局文件2022-06-06

Android 自定义输入支付密码的软键盘实例代码

Android 自定义输入支付密码的软键盘 有项目需求需要做一个密码锁功能,还有自己的软键盘,类似与支付宝那种,这里是整理的资料,大家可以看下,如有错误,欢迎留言指正 需求:要实现类似支付宝的输入支付密码的功能,
2022-06-06

Android自定义View软键盘实现搜索

1. xml文件中加入自定义 搜索view2022-06-06

Android自定义键盘的实现(数字键盘和字母键盘)

在项目中,产品对于输入方式会有特殊的要求,需要对输入方式增加特定的限制,这就需要采用自定义键盘。本文主要讲述数字键盘和字母键盘的自定义实现。项目地址:https://github.com/xudjx/djkeyboard键盘效果:自定义键盘
2023-05-30

Android 自定义dialog的实现代码

Android 自定义dialog的实现代码 搜索相关关键字网上一大堆实现,但是看完总觉得缺胳膊少腿,绕了不少弯路,终于弄好了自定义dialog。把自己整合的完整代码发上来。要点:1、设置自定义dialog的布局文件my_dialog.xm
2022-06-06

Android自定义View——扇形统计图的实现代码

Android 扇形统计图 先看看效果: 看上去如果觉得还行就继续往下看吧!自定义View 定义成员变量private int mHeight, mWidth;//宽高private Paint mPaint;//扇形的画笔private
2022-06-06

Android自定义相机界面的实现代码

我们先实现拍照按钮的圆形效果哈,Android开发中,当然可以找美工人员设计图片,然后直接拿进来,不过我们可以自己写代码实现这个效果哈,最常用的的是用layout-list实现图片的叠加,我们这个layout命名为btn_take_phot
2022-06-06

Android实现自定义加载框的代码示例

App在与服务器进行网络交互的时候,需要有一个提示的加载框,如图:此时我们可以自定义一个加载中的对话框,代码如下:public class LoadingDialog extends Dialog { private static fin
2022-06-06

Android自定义View实现游戏摇杆键盘的方法示例

前言本文主要给大家介绍的是关于Android自定义View实现游戏摇杆键盘的相关内容,为什么会有这篇文章呢?因为在之前的一个项目,操作方向的方式为上下左右,左上需要同时按住左键和右键的方式进行操作。如下图:近来需要升级项目,操作方式改为类似
2023-05-30

Android 实现自定义圆形进度条的实例代码

Android 自定义圆形进度条 今天无意中发现一个圆形进度,想想自己实现一个,如下图:基本思路是这样的: 1.首先绘制一个实心圆 2.绘制一个白色实心的正方形,遮住实心圆 3.在圆的中心动态绘制当前进度的百分比字符 4.绘制一个与之前实心
2022-06-06

Android自定义View实现字母导航栏的代码

思路分析: 1、自定义View实现字母导航栏 2、ListView实现联系人列表 3、字母导航栏滑动事件处理 4、字母导航栏与中间字母的联动 5、字母导航栏与ListView的联动 效果图:首先,我们先甩出主布局文件,方便后面代码的说明
2022-06-06

Android自定义控件之圆形/圆角的实现代码

一、问题在哪里? 问题来源于app开发中一个很常见的场景——用户头像要展示成圆的: 二、怎么搞? 机智的我,第一想法就是,切一张中间圆形透明、四周与底色相同、尺寸与头像相同的蒙板图片,盖在头像上不就完事了嘛,哈哈哈! 在背景纯色的前提下,这
2022-06-06

Android自定义View实现带数字的进度条实例代码

第一步、效果展示 图1、蓝色的进度条 图2、红色的进度条 图3、多条颜色不同的进度条 图4、多条颜色不同的进度条第二步、自定义ProgressBar实现带数字的进度条 0、项目结构如上图所示:library项目为自定义的带数字的进度条Num
2022-06-06

Android实现自定义圆角对话框Dialog的示例代码

前言: 项目中多处用到对话框,用系统对话框太难看,就自己写一个自定义对话框。 对话框包括:1、圆角2、app图标 , 提示文本,关闭对话框的"确定"按钮 难点:1、对话框边框圆角显示2、考虑到提示文本字数不确定,在不影响美观的情况下,需
2022-06-06

解析android中隐藏与显示软键盘及不自动弹出键盘的实现方法

1、//隐藏软键盘 ((InputMethodManager)getSystemService(INPUT_METHOD_SERVICE)).hideSoftInputFromWindow(WidgetSearchActivity.t
2022-06-06

android 自定义ScrollView实现背景图片伸缩的实现代码及思路

用过多米音乐的都市知道, 这个UI可以上下滑动,作用嘛---无聊中可以划划解解闷,这被锤子公司老罗称谓为“情怀”,其实叫“情味”更合适。嘿嘿.如今挪动互联网开展这么迅速,市场上已不再是那早期随便敲个APP放上架就能具有几十万用户
2022-06-06

Android UI设计系列之自定义ViewGroup打造通用的关闭键盘小控件ImeObserverLayout(9)

转载请注明出处:http://blog.csdn.net/llew2011/article/details/51598682 我们平时开发中总会遇见一些奇葩的需求,为了实现这些需求我们往往绞尽脑汁有时候还茶不思饭不香的,有点夸张了(*^__
2022-06-06

Android通过自定义ImageView控件实现图片的缩放和拖动的实现代码

概述:通过自定义ImageView控件,在xml布局里面调用自定的组件实现图片的缩放。 public class
2022-06-06

Android ImageButton自定义按钮的按下效果的代码实现方法分享

使用Button时为了让用户有“按下”的效果,有两种实现方式:1.在代码里面。代码如下:imageButton.setOnTouchListener(new OnTouchListener(){
2022-06-06

Android 自定义圆形头像CircleImageView支持加载网络图片的实现代码

在Android开发中我们常常用到圆形的头像,如果每次加载之后再进行圆形裁剪特别麻烦。所以在这里写一个自定义圆形ImageView,直接去加载网络图片,这样的话就特别的方便。 先上效果图主要的方法 1.让自定义 CircleImageVie
2022-06-06

编程热搜

  • Android:VolumeShaper
    VolumeShaper(支持版本改一下,minsdkversion:26,android8.0(api26)进一步学习对声音的编辑,可以让音频的声音有变化的播放 VolumeShaper.Configuration的三个参数 durati
    Android:VolumeShaper
  • Android崩溃异常捕获方法
    开发中最让人头疼的是应用突然爆炸,然后跳回到桌面。而且我们常常不知道这种状况会何时出现,在应用调试阶段还好,还可以通过调试工具的日志查看错误出现在哪里。但平时使用的时候给你闹崩溃,那你就欲哭无泪了。 那么今天主要讲一下如何去捕捉系统出现的U
    Android崩溃异常捕获方法
  • android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
    系统的设置–>电池–>使用情况中,统计的能耗的使用情况也是以power_profile.xml的value作为基础参数的1、我的手机中power_profile.xml的内容: HTC t328w代码如下:
    android开发教程之获取power_profile.xml文件的方法(android运行时能耗值)
  • Android SQLite数据库基本操作方法
    程序的最主要的功能在于对数据进行操作,通过对数据进行操作来实现某个功能。而数据库就是很重要的一个方面的,Android中内置了小巧轻便,功能却很强的一个数据库–SQLite数据库。那么就来看一下在Android程序中怎么去操作SQLite数
    Android SQLite数据库基本操作方法
  • ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
    工作的时候为了方便直接打开编辑文件,一些常用的软件或者文件我们会放在桌面,但是在ubuntu20.04下直接直接拖拽文件到桌面根本没有效果,在进入桌面后发现软件列表中的软件只能收藏到面板,无法复制到桌面使用,不知道为什么会这样,似乎并不是很
    ubuntu21.04怎么创建桌面快捷图标?ubuntu软件放到桌面的技巧
  • android获取当前手机号示例程序
    代码如下: public String getLocalNumber() { TelephonyManager tManager =
    android获取当前手机号示例程序
  • Android音视频开发(三)TextureView
    简介 TextureView与SurfaceView类似,可用于显示视频或OpenGL场景。 与SurfaceView的区别 SurfaceView不能使用变换和缩放等操作,不能叠加(Overlay)两个SurfaceView。 Textu
    Android音视频开发(三)TextureView
  • android获取屏幕高度和宽度的实现方法
    本文实例讲述了android获取屏幕高度和宽度的实现方法。分享给大家供大家参考。具体分析如下: 我们需要获取Android手机或Pad的屏幕的物理尺寸,以便于界面的设计或是其他功能的实现。下面就介绍讲一讲如何获取屏幕的物理尺寸 下面的代码即
    android获取屏幕高度和宽度的实现方法
  • Android自定义popupwindow实例代码
    先来看看效果图:一、布局
  • Android第一次实验
    一、实验原理 1.1实验目标 编程实现用户名与密码的存储与调用。 1.2实验要求 设计用户登录界面、登录成功界面、用户注册界面,用户注册时,将其用户名、密码保存到SharedPreference中,登录时输入用户名、密码,读取SharedP
    Android第一次实验

目录