自定义软键盘

自定义一个软键盘,解决软键盘遮蔽问题

有不同的考虑路径。。。。

  • 第三方的自定义控件

最终选择 StomHong 提供的方案,满足了项目的需求。

  • 我写的软键盘

正常来说,找了一个第三方的,就可以了,但是第三方的改起来没有自己定义来的方便,因此我来试试吧。

先看看设计图

数字键盘

数字键盘.png

字母键盘


字母键盘.png

字符键盘


字符键盘.png

想要改变颜色的朋友可以自定义改变哦!!!!

源码展示

<pre>
public class KeyBoardLayout extends BaseKeyBoardLayout<KeyBoardLayout> {
public KeyBoardLayout(Context context) {
super(context);
setChildViewLayoutRes(R.layout.keyboard_integer, R.layout.keyboard_letters, R.layout.keyboard_symbol);
setTextAllCaps(false);
}

@Override
public void show(@KeyBoardType int keyBoardType) {
    if (isShowing()) {
        hiddenAllChildView();
    }
    setVisibility(View.VISIBLE);
    this.keyBoardType = keyBoardType;
    randomKeySet(keyBoardType);
    isShowing = true;
    if (getParent() == null) {
        windowManager.addView(this, wmLayoutParams);
    }
    View childView = getChildViewByType(keyBoardType);
    childView.setVisibility(View.VISIBLE);
    int targetLocationY = getLocationY(targetEditText) + targetEditText.getHeight();
    height = getKeyBoardLayoutHeight();
    if (getHasScrollView()) {
        targetOffset = height;
        FrameLayout.LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
        params.bottomMargin = targetOffset;
        targetContentView.setLayoutParams(params);
    } else {

        int tmpOffset = targetLocationY - (screenHeight - height);
        targetOffset = tmpOffset > 0 ? tmpOffset : targetOffset;
        //LogTrack.e("输入框最高点  = " + targetLocationY + " 软键盘最高点 = " + (screenHeight - height) + " tmpOffset = " + tmpOffset + " offset = " + targetOffset);
        if (tmpOffset > 0) {
            ViewCompat.offsetTopAndBottom(targetContentView, -targetOffset);
        }
    }
    //LogTrack.e("展示 " + childView.getTag());
}

private void randomKeySet(@KeyBoardType int keyBoardType) {
    View childView = getChildViewByType(keyBoardType);
    List<String> dataSetByType = getChildDataSetByType(keyBoardType);
    int[] keyViewArray = getChildKeyViewArrayByType(keyBoardType);
    for (int i = 0; i < keyViewArray.length; i++) {
        setText(childView.findViewById(keyViewArray[i]), dataSetByType.get(i));
    }
}

private void hiddenAllChildView() {
    for (int i = 0; i < getChildCount(); i++) {
        getChildAt(i).setVisibility(View.GONE);
    }
}

@Override
public void hidden() {
    LogTrack.e("进来了 ");
    if (!isShowing()) {
        return;
    }
    isShowing = false;
    View childView = getChildViewByType(keyBoardType);
    setVisibility(View.GONE);
    if (getParent() == null) {
        windowManager.removeView(KeyBoardLayout.this);
    }
    childView.setVisibility(View.GONE);
    if (getHasScrollView()) {
        FrameLayout.LayoutParams params = new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT);
        params.bottomMargin = 0;
        targetContentView.setLayoutParams(params);
    } else {
        //LogTrack.e(targetOffset);
        if (targetOffset > 0) {
            //ViewCompat.setTranslationY(targetContentView, 0);
            ViewCompat.offsetTopAndBottom(targetContentView, targetOffset);
        }
    }
    targetOffset = 0;
}

private View getChildViewByType(int keyBoardType) {
    if (KeyBoardType.integer == keyBoardType) {
        return getChildAt(0);
    }
    if (KeyBoardType.letters == keyBoardType) {
        return getChildAt(1);
    }
    if (KeyBoardType.symbol == keyBoardType) {
        return getChildAt(2);
    }
    return getChildAt(0);
}

private int[] getChildKeyViewArrayByType(int keyBoardType) {
    if (KeyBoardType.integer == keyBoardType) {
        return DataSet.getIntegerKeyId();
    }
    if (KeyBoardType.letters == keyBoardType) {
        return DataSet.getLetterKeyId();
    }
    if (KeyBoardType.symbol == keyBoardType) {
        return DataSet.getSymbolKeyId();
    }
    return DataSet.getIntegerKeyId();
}

protected void setChildViewLayoutRes(int... resource) {
    String tag[] = new String[]{"数字键盘", "字母键盘", "小数键盘", "符号键盘"};
    for (int i = 0; i < resource.length; i++) {
        View view = LayoutInflater.from(getContext()).inflate(resource[i], null);
        view.setVisibility(View.GONE);
        view.setTag(tag[i]);
        view.findViewById(R.id.fun_delete).setOnLongClickListener(this);
        KeyBoardHelper.getInstance().onBindClickListener(view, this);
        addView(view);
    }
}


private void switchChildViewByType(@KeyBoardType int keyBoardType) {
    int k = 0;
    if (KeyBoardType.integer == keyBoardType) {
        k = 0;
    } else if (KeyBoardType.letters == keyBoardType) {
        k = 1;
    } else if (KeyBoardType.symbol == keyBoardType) {
        k = 2;
    }
    for (int i = 0; i < getChildCount(); i++) {
        getChildAt(i).setVisibility(k == i ? View.VISIBLE : View.GONE);
    }
    randomKeySet(keyBoardType);
}

@Override
public KeyBoardLayout setTextAllCaps(boolean isTextAllCaps) {
    super.setTextAllCaps(isTextAllCaps);
    int[] array = getLetterViewIdArray();
    View childView = getChildViewByType(KeyBoardType.letters);
    setTextAllCaps(childView.findViewById(R.id.fun_shift), isTextAllCaps);
    for (int i = 0; i < array.length; i++) {
        setTextAllCaps(childView.findViewById(array[i]), isTextAllCaps);
    }
    return this;
}

/*/*/
 */ 设置 键盘 的 label
 */
 */ @param text
 *//
public KeyBoardLayout setLabel(Object text) {
    for (int i = 0; i < getChildCount(); i++) {
        setText(getChildAt(i).findViewById(R.id.tv_label), text);
    }
    return this;
}

@Override
public void onClick(View view) {
    if (!(view instanceof TextView) || view.getId() < 0) {
        return;
    }
    if (R.id.tv_close == view.getId()) {
        hidden();
    } else if (R.id.fun_symbol == view.getId()) {
        switchChildViewByType(KeyBoardType.symbol);
    } else if (R.id.fun_letter == view.getId()) {
        switchChildViewByType(KeyBoardType.letters);
    } else if (R.id.fun_integer == view.getId()) {
        switchChildViewByType(KeyBoardType.integer);
    } else if (R.id.fun_delete == view.getId()) {
        delete(targetEditText);
    } else if (R.id.fun_shift == view.getId()) {
        setTextAllCaps(!isTextAllCaps());
    } else {
        TextView textView = (TextView) view;
        if (R.id.im_30 == view.getId()) {
            targetEditText.append(" ");
        } else {
            targetEditText.append(textView.getText());
        }
    }
}

@Override
public boolean onLongClick(View view) {
    if (R.id.fun_delete == view.getId()) {
        targetEditText.setText("");
    }
    return true;
}

private int[] getLetterViewIdArray() {
    int array[] = new int[]{R.id.imc_00, R.id.imc_01, R.id.imc_02, R.id.imc_03, R.id.imc_04, R.id.imc_05, R.id.imc_06, R.id.imc_07, R.id.imc_08, R.id.imc_09, R.id.imc_10, R.id.imc_11, R.id.imc_12, R.id.imc_13, R.id.imc_14, R.id.imc_15, R.id.imc_16, R.id.imc_17, R.id.imc_20, R.id.imc_21, R.id.imc_22, R.id.imc_23, R.id.imc_24, R.id.imc_25, R.id.imc_26, R.id.im_30};
    return array;
}

}

</pre>

  • 然后 修改 清单文件

<pre>
<activity
android:name=".mine.bank.PromoterBindBankActivity"
android:configChanges="orientation|keyboardHidden"
android:description="@string/activity_select_bank"
android:screenOrientation="portrait"/>
</pre>

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 202,980评论 5 476
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,178评论 2 380
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 149,868评论 0 336
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,498评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,492评论 5 364
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,521评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,910评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,569评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,793评论 1 296
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,559评论 2 319
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,639评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,342评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,931评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,904评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,144评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,833评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,350评论 2 342

推荐阅读更多精彩内容

  • 先上图: 刚开始写自定义软键盘是走了点弯路,用控件去实现,好多小细节处理起来真的太抓狂了… 后来发现 神控件 Ke...
    silence_jjj阅读 4,311评论 0 0
  • 简介 今天在掘金上看了一篇文章,实现自定义软键盘,发现其实实现方式比较简单,不需要改动系统api,只是单纯的加载自...
    fushuang阅读 4,506评论 1 14
  • 概述 在项目开发中遇到一个需求,”只要数字键盘的输入,仅仅有大写字母的输入,某些输入法总是会提示更新,弹出广告等“...
    张云飞Vir阅读 3,370评论 3 48
  • 去年因公司需要给电视盒子做一个自定义键盘,今天偶然想起来, 想趁此机会记录一下。当时好像是下载了一个别人的例子,参...
    Wing_L阅读 1,343评论 2 50
  • 老婆,今晚不要锁门,我去你房间. 你叫我什么? 当然是叫你老婆,你是我最最亲爱的老婆! 我怎么以为我只是你家的门卫...
    张译刈阅读 139评论 0 1