Android 自定義數(shù)字鍵盤實(shí)現(xiàn)方法

自定義數(shù)字鍵盤

1.鍵盤布局
horizontalGap:按鍵間的水平間隔
keyHeight:按鍵高度以%或者%p結(jié)尾
keyWidth:按鍵寬度,”33.33333%p”
verticalGap:按鍵間的垂直間隔
codes:可以是系統(tǒng)給的固定值也可以是自定義的值

  <?xml version="1.0" encoding="utf-8"?>
 <Keyboard xmlns:android="http://schemas.android.com/apk/res/android"
android:horizontalGap="1dp"
android:keyHeight="8%p"
android:keyWidth="33.33333%p"
android:verticalGap="1dp">
<Row>
    <Key
        android:codes="49"
        android:keyLabel="1"></Key>
    <Key
        android:codes="50"
        android:keyLabel="2"></Key>
    <Key
        android:codes="51"
        android:keyLabel="3"></Key>
</Row>
<Row>
    <Key
        android:codes="52"
        android:keyLabel="4"></Key>
    <Key
        android:codes="53"
        android:keyLabel="5"></Key>
    <Key
        android:codes="54"
        android:keyLabel="6"></Key>
</Row>
<Row>
    <Key
        android:codes="53"
        android:keyLabel="7"></Key>
    <Key
        android:codes="54"
        android:keyLabel="8"></Key>
    <Key
        android:codes="55"
        android:keyLabel="9"></Key>
</Row>
<Row>
    <Key
        android:codes="-10"
        android:keyLabel=""></Key>
    <Key
        android:codes="48"
        android:keyLabel="0"></Key>
    <Key
        android:codes="-5"
        android:keyIcon="@color/colorPrimary"></Key>
</Row>
</Keyboard>

2.繼承keyboardview
這里主要就是3個(gè)點(diǎn):1、獲取按鍵布局(setkeyboard)2锈锤、繪制空白鍵跟刪除鍵(onDraw)3姚淆、設(shè)置回調(diào)(OnKeyPressListener)陵叽。
刪除按鈕我做了一點(diǎn)處理媳友,因?yàn)橹苯邮褂毛@取的dp(intrinsicWidth)的話圖片會(huì)比較大,不是很好看撒轮,為了協(xié)調(diào)一點(diǎn)我寬高各自除了個(gè)6乞旦,然后計(jì)算了上下左右的邊距(widthInterval,heightInterval)题山,再進(jìn)行的繪制兰粉。

這里用了自定義的屬性展示在這里:

  <declare-styleable name="NumKeyView">
    <attr name="gbColor" format="color|reference"></attr>
    <attr name="deleteDrawable" format="reference"></attr>
</declare-styleable>

NumKeyView的代碼

 public class NumKeyView extends KeyboardView implements OnKeyboardActionListener {
  //用于區(qū)分左下角空白按鍵,(要與xml里設(shè)置的數(shù)值相同)
  private int KEYCODE_EMPTY=-10;
   //刪除按鍵背景圖片
  private Drawable mDeleteDrawable;
  //最下面兩個(gè)灰色的按鍵(空白按鍵跟刪除按鍵)
  private int mBgColor;


 public NumKeyView(Context context, AttributeSet attrs) {
    super(context, attrs);
    init(context,attrs,0);
 }

 public NumKeyView(Context context, AttributeSet attrs, int defStyleAttr) {
    super(context, attrs, defStyleAttr);
    init(context, attrs, defStyleAttr);
 }

 private void init(Context context, AttributeSet attrs, int defStyleAttr) {
    TypedArray ta=context.obtainStyledAttributes(attrs, R.styleable.NumKeyView);
    mBgColor=ta.getColor(R.styleable.NumKeyView_gbColor, Color.RED);
    mDeleteDrawable=ta.getDrawable(R.styleable.NumKeyView_deleteDrawable);
    ta.recycle();
    //獲取xml中的按鍵布局
    Keyboard keyboard=new Keyboard(context,R.xml.numkeyview);
    setKeyboard(keyboard);
    setEnabled(true);
    setPreviewEnabled(false);
    setOnKeyboardActionListener(this);
    }

@Override
public void onDraw(Canvas canvas) {
    super.onDraw(canvas);
    List<Keyboard.Key> keys=getKeyboard().getKeys();
    for (Keyboard.Key key:keys){
        //繪制空白鍵
        if (key.codes[0]==KEYCODE_EMPTY){
            drawKeyBackGround(key,canvas);
        }else if (key.codes[0]==Keyboard.KEYCODE_DELETE){
            //繪制刪除鍵背景
            drawKeyBackGround(key,canvas);
            //繪制按鍵圖片
            drawkeyDelete(key,canvas);
        }
    }
}
private void drawKeyBackGround(Keyboard.Key key, Canvas canvas) {
    ColorDrawable colordrawable=new ColorDrawable(mBgColor);
    colordrawable.setBounds(key.x,key.y,key.x+key.width,key.y+key.height);
    colordrawable.draw(canvas);
}
private void drawkeyDelete(Keyboard.Key key, Canvas canvas) {
    int intrinsicWidth=mDeleteDrawable.getIntrinsicWidth();
    int intrinsicHeight=mDeleteDrawable.getIntrinsicHeight();
    int drawWidth=key.width;
    int drawHeight=key.height;
    if(drawWidth<intrinsicWidth){
        drawHeight=drawWidth*intrinsicHeight/intrinsicWidth;
    }
    drawWidth=drawWidth/6;
    drawHeight=drawHeight/6;
    int widthInterval=(key.width-drawWidth)/2;
    int heightInterval=(key.height-drawHeight)/2;

    mDeleteDrawable.setBounds(key.x+widthInterval,key.y+heightInterval,key.x+widthInterval+drawWidth,key.y+heightInterval+drawHeight);
    mDeleteDrawable.draw(canvas);
}
//回調(diào)接口
public interface OnKeyPressListener{
    //添加數(shù)據(jù)回調(diào)
    void onInertKey(String text);
    //刪除數(shù)據(jù)回調(diào)
    void onDeleteKey();
}
private OnKeyPressListener mOnkeyPressListener;
public void setOnKeyPressListener(OnKeyPressListener li){
    mOnkeyPressListener=li;
}
@Override
public void onKey(int i, int[] ints) {
        if (i==Keyboard.KEYCODE_DELETE&&mOnkeyPressListener!=null){
            //添加數(shù)據(jù)回調(diào)
            mOnkeyPressListener.onDeleteKey();
        }else if (i!=KEYCODE_EMPTY){
            //刪除數(shù)據(jù)回調(diào)
            mOnkeyPressListener.onInertKey(Character.toString((char) i));
        }
}
@Override
public void onPress(int i) {

}

@Override
public void onRelease(int i) {

}



@Override
public void onText(CharSequence charSequence) {

}

@Override
public void swipeRight() {
    super.swipeRight();
}

@Override
public void swipeDown() {
    super.swipeDown();
}

@Override
public void swipeLeft() {
    super.swipeLeft();
}

@Override
public void swipeUp() {
    super.swipeUp();
}
}

注意!調(diào)用的時(shí)候顶瞳,因?yàn)槭褂昧俗远x屬性(AS)所以注意添加下面一行代碼
xmlns:app="http://schemas.android.com/apk/res-auto"
3.其他部分
上面按鍵部分就做好了玖姑,下面看下自定義按鍵的中上面的接口回調(diào)

public class KeyDemo extends AppCompatActivity {
private EditText mEditText;
private NumKeyView mKeyView;
private Button mButton;
private LinearLayout mLinearlayout;
private PopupWindow mPop;
private LinearLayout mProgressBarLn;
private View mPopView;
private Handler mhandler=new Handler(){
    @Override
    public void handleMessage(Message msg) {
        super.handleMessage(msg);
        mPop.dismiss();
        mKeyView.setVisibility(View.VISIBLE);
        mProgressBarLn.setVisibility(View.INVISIBLE);
        mButton.setText("完成");
    }
};
@Override
protected void onCreate(@Nullable Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_keyboard);
    init();
    mButton.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            //點(diǎn)擊按鈕顯示鍵盤
            mPop.showAtLocation(mLinearlayout, Gravity.BOTTOM,0,0);
        }
    });
    //設(shè)置回調(diào)愕秫,并進(jìn)行文本的插入與刪除
    mKeyView.setOnKeyPressListener(new NumKeyView.OnKeyPressListener() {
        @Override
        public void onInertKey(String text) {
            if(mEditText.getText().length()<6){
                mEditText.append(text);
                //文本長(zhǎng)度為6時(shí)隱藏鍵盤,顯示進(jìn)度條焰络,一段時(shí)間后pop消失
                if (mEditText.getText().length()==6){
                    mKeyView.setVisibility(View.INVISIBLE);
                    mProgressBarLn.setVisibility(View.VISIBLE);
                    mhandler.sendEmptyMessageDelayed(0x11,4000);
                }
            }
        }

        @Override
        public void onDeleteKey() {
            int last=mEditText.getText().length();
            if (last>0){
                //刪除最后一位
            mEditText.getText().delete(last-1,last);
            }
        }
    });

}

private void init() {
    mEditText= (EditText) findViewById(R.id.et);
    mButton= (Button) findViewById(R.id.bt);
    mLinearlayout= (LinearLayout) findViewById(R.id.ln);
    mPop=new PopupWindow();
    mPopView=LayoutInflater.from(getApplicationContext()).inflate(R.layout.keyboard_pop,null);
    mPop.setContentView(mPopView);
    mPop.setTouchable(true);
    mPop.setFocusable(true);
    mPop.setBackgroundDrawable(new ColorDrawable());
    mPop.setWidth(ViewGroup.LayoutParams.MATCH_PARENT);
    mPop.setHeight(ViewGroup.LayoutParams.WRAP_CONTENT);
    mPop.setAnimationStyle(R.style.PopWindowstyle);
    mProgressBarLn= (LinearLayout) mPopView.findViewById(R.id.progressbar_ln);
    mKeyView= (NumKeyView) mPopView.findViewById(R.id.keyboardview);
}
}

主布局

 <?xml version="1.0" encoding="utf-8"?>
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/ln"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">

<EditText
    android:id="@+id/et"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />
<Button
    android:id="@+id/bt"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="點(diǎn)擊彈出彈出窗"/>

</LinearLayout>

Pop布局

 <?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">

<com.zhjh.keydemo.NumKeyView
    android:id="@+id/keyboardview"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:focusable="true"
    android:focusableInTouchMode="true"
    android:keyBackground="@color/colorAccent"
    app:gbColor="#eeeeee"
    app:deleteDrawable="@drawable/keyboard_backspace"
    />
<LinearLayout
    android:id="@+id/progressbar_ln"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:visibility="invisible"
    >
    <View
        android:layout_width="match_parent"
        android:layout_height="2px"
        android:background="#000000"
        ></View>
    <ProgressBar
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_gravity="center"
        android:layout_margin="20dp"
        style="@android:style/Widget.Holo.ProgressBar.Large"
        />
</LinearLayout>

</FrameLayout>

Pop動(dòng)畫

彈出

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
    android:fromXDelta="0"
    android:fromYDelta="100%"
    android:toXDelta="0"
    android:toYDelta="0"
    android:duration="1000"
    ></translate>

 </set>

消失

<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate
 android:toXDelta="0"
android:fromXDelta="0"
android:fromYDelta="0"
android:toYDelta="100%"
android:duration="1000"
></translate>
</set>

定義動(dòng)畫

  <style name="PopWindowstyle">
   <item name="android:windowEnterAnimation">@anim/showanim</item>
   <item name="android:windowExitAnimation">@anim/dismissanim</item>
 </style>
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末戴甩,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子闪彼,更是在濱河造成了極大的恐慌甜孤,老刑警劉巖,帶你破解...
    沈念sama閱讀 212,718評(píng)論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件畏腕,死亡現(xiàn)場(chǎng)離奇詭異缴川,居然都是意外死亡,警方通過(guò)查閱死者的電腦和手機(jī)描馅,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,683評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門把夸,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái),“玉大人流昏,你說(shuō)我怎么就攤上這事扎即。” “怎么了况凉?”我有些...
    開(kāi)封第一講書(shū)人閱讀 158,207評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵,是天一觀的道長(zhǎng)各拷。 經(jīng)常有香客問(wèn)我刁绒,道長(zhǎng),這世上最難降的妖魔是什么烤黍? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,755評(píng)論 1 284
  • 正文 為了忘掉前任知市,我火速辦了婚禮,結(jié)果婚禮上速蕊,老公的妹妹穿的比我還像新娘嫂丙。我一直安慰自己,他們只是感情好规哲,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,862評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布跟啤。 她就那樣靜靜地躺著,像睡著了一般唉锌。 火紅的嫁衣襯著肌膚如雪隅肥。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 50,050評(píng)論 1 291
  • 那天袄简,我揣著相機(jī)與錄音腥放,去河邊找鬼。 笑死绿语,一個(gè)胖子當(dāng)著我的面吹牛秃症,可吹牛的內(nèi)容都是我干的候址。 我是一名探鬼主播,決...
    沈念sama閱讀 39,136評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼种柑,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼岗仑!你這毒婦竟也來(lái)了?” 一聲冷哼從身側(cè)響起莹规,我...
    開(kāi)封第一講書(shū)人閱讀 37,882評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤赔蒲,失蹤者是張志新(化名)和其女友劉穎,沒(méi)想到半個(gè)月后良漱,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體舞虱,經(jīng)...
    沈念sama閱讀 44,330評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,651評(píng)論 2 327
  • 正文 我和宋清朗相戀三年母市,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了矾兜。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,789評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡患久,死狀恐怖椅寺,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情蒋失,我是刑警寧澤返帕,帶...
    沈念sama閱讀 34,477評(píng)論 4 333
  • 正文 年R本政府宣布,位于F島的核電站篙挽,受9級(jí)特大地震影響荆萤,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜铣卡,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,135評(píng)論 3 317
  • 文/蒙蒙 一链韭、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧煮落,春花似錦敞峭、人聲如沸。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,864評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至量淌,卻和暖如春骗村,著一層夾襖步出監(jiān)牢的瞬間,已是汗流浹背呀枢。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,099評(píng)論 1 267
  • 我被黑心中介騙來(lái)泰國(guó)打工胚股, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人裙秋。 一個(gè)月前我還...
    沈念sama閱讀 46,598評(píng)論 2 362
  • 正文 我出身青樓琅拌,卻偏偏與公主長(zhǎng)得像缨伊,于是被迫代替她去往敵國(guó)和親。 傳聞我的和親對(duì)象是個(gè)殘疾皇子进宝,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,697評(píng)論 2 351

推薦閱讀更多精彩內(nèi)容

  • Android 自定義View的各種姿勢(shì)1 Activity的顯示之ViewRootImpl詳解 Activity...
    passiontim閱讀 171,858評(píng)論 25 707
  • 發(fā)現(xiàn) 關(guān)注 消息 iOS 第三方庫(kù)刻坊、插件、知名博客總結(jié) 作者大灰狼的小綿羊哥哥關(guān)注 2017.06.26 09:4...
    肇東周閱讀 12,066評(píng)論 4 62
  • 今日開(kāi)心播種党晋,他日定有收成谭胚!無(wú)比感恩實(shí)修群老師和同學(xué)的帶領(lǐng)、督導(dǎo)和激勵(lì)未玻!每晚都無(wú)比喜悅地為自己播種的好種子澆水施肥...
    如意寶閱讀 236評(píng)論 0 2
  • 昨夜星辰昨夜風(fēng) 畫樓西畔桂堂東 時(shí)光流逝 歲月如梭 螺旋之光時(shí)光的旅程 波浪長(zhǎng)發(fā)歲月的感知 女神在演奏唯美夜曲 巴...
    lynls8888閱讀 246評(píng)論 1 0
  • 班上頻繁的瑣碎和生活的日常扳剿,每天一樣旁趟,但也可以不一樣。 自從開(kāi)始了100天寫作的練習(xí)庇绽,來(lái)自各方的反應(yīng)锡搜,令生活不一樣...
    悅書(shū)_王小悅閱讀 200評(píng)論 3 5