源码网商城,靠谱的源码在线交易网站 我的订单 购物车 帮助

源码网商城

Android 仿今日头条评论时键盘自动弹出的效果(推荐)

  • 时间:2021-10-08 00:30 编辑: 来源: 阅读:
  • 扫一扫,手机访问
摘要:Android 仿今日头条评论时键盘自动弹出的效果(推荐)
Android 仿今日头条评论时键盘自动弹出的效果:当点击评论时,弹出对话框,同时弹出软键盘,当点击返回键时,将对话框关闭,不只是关闭软键盘。 效果图: [img]http://files.jb51.net/file_images/article/201706/201706221511307.png[/img] 对这个对话框设置一个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; 
      } 
    }); 
做完以上两步,就可以实现与今日头条评论一样的效果了。
  • 全部评论(0)
联系客服
客服电话:
400-000-3129
微信版

扫一扫进微信版
返回顶部