Android如何仿今日头条评论时键盘自动弹出的效果

这篇文章主要介绍Android如何仿今日头条评论时键盘自动弹出的效果,文中介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们一定要看完!

效果图:

Android如何仿今日头条评论时键盘自动弹出的效果

对这个对话框设置一个style效果:

<style name="inputDialog" parent="@android:style/Theme.Holo.Light.Dialog">
    <item name="android:windowBackground">@color/dialog_bg</item>
    <!--背景-->
    <item name="android:windowFrame">@null</item>
    <!--设置无边框-->
    <item name="android:windowNoTitle">true</item>
    <!-- 无标题 -->
    <item name="android:backgroundDimEnabled">true</item>
    <!-- 模糊 -->
    <item name="android:windowSoftInputMode">stateAlwaysVisible</item>
    <!--显示软件盘-->
  </style>

并设置Dialog的监听返回键事件,不然默认是隐藏软键盘:

dialog.setOnKeyListener(new DialogInterface.OnKeyListener() { 
      @Override 
      public boolean onKey(DialogInterface dialogInterface, int keyCode, KeyEvent keyEvent) { 
        if (keyCode == KeyEvent.KEYCODE_BACK && keyEvent.getRepeatCount() == 0) 
          dialog.cancel(); 
        return false; 
      } 
    });

做完以上两步,就可以实现与今日头条评论一样的效果了。

以上是“Android如何仿今日头条评论时键盘自动弹出的效果”这篇文章的所有内容,感谢各位的阅读!希望分享的内容对大家有帮助,更多相关知识,欢迎关注行业资讯频道!