Skip to content

naseemakhtar994/AwesomeKeyboard

 
 

Repository files navigation

AwesomeKeyboard

emoticons, sticker, photo and color keyboard

I. Demo

Emojicons Sticker Photo Color Nomal
alt text alt text alt text alt text alt text

II. Setting

III. Doc

  • Add
 keyboard = KeyboardBuilder.with(this)
                .setKeyboardLayout(keyboardLayout)
                .setEditText(editMessage)
                .setRoot(activtyMain)
                .setOnItemColorClickListener(this)
                .setOnItemPhotoClickListener(this)
                .setOnItemStickerClickListener(this)
                .setOnKeyDownListener(this)
                .setOnShopClickListener(this)
                .builder();
  • Show keyboard

1. show sticker

keyboard.showKeyboard(KeyboardType.STICKER);

2. show photo

keyboard.showKeyboard(KeyboardType.PHOTO);

3. show color

keyboard.showKeyboard(KeyboardType.COLOR);

4. show nomal

keyboard.showKeyboard(KeyboardType.NOMAL);
  • Hide keyboard
keyboard.hideAllKeyboard();
  • Add sticker
KeyboardBuilder.addSticker(this,sticker);
  • Get sticker
KeyboardBuilder.getSticker(this);
  • Clean sticker
 KeyboardBuilder.clearSticker(this);
  • Update sticker
keyboard.updateSticker();
  • convert from text to emojicons
KeyboardBuilder.convertFromTextToEmoji(this, editMessage.getText().toString());

About

emoticons, sticker, photo and color keyboard

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 100.0%