有没有办法为Android中的软键盘外观提供动画效果?

问题描述 投票:-1回答:1

键盘处理仍是Android应用开发中的主要挫折。让我具体说明我的问题,我想提供动画软键盘外观。我知道这是不直接可行的,但是有人知道对此有任何解决方法/调整和技巧吗?

android android-studio keyboard android-softkeyboard android-things
1个回答
0
投票

您可以尝试创建自定义软键盘并注册您的edittext来加载此键盘(看看可以使用https://android-arsenal.com/tag/232的大量自定义键盘)

一个例子是“ Floating KeyboardView” https://android-arsenal.com/details/1/5247向您展示了如何自定义键盘。

用作普通键盘视图和

  • 将FloatingKeyboardView放在FrameLayout或RelativeLayout内(提示:将其放到最后或/和带有一定高度的位置)
  • 使用键盘布局生成xml(https://developer.android.com/reference/android/inputmethodservice/Keyboard.html
  • 在活动代码中声明

    FloatingKeyboardView mCustomKeyboard = (FloatingKeyboardView) findViewById(R.id.keyboardview); 
    
  • 分配键盘布局

     mCustomKeyboard.setKeyboard(new Keyboard(this, R.xml.numkbd)); 
    
  • 注册编辑文本以使用它

     mCustomKeyboard.registerEditText(R.id.edittext1);
    
© www.soinside.com 2019 - 2024. All rights reserved.