亲宝软件园·资讯

展开

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

wangw-csdn 人气:0
想了解Android 仿今日头条评论时键盘自动弹出的效果(推荐)的相关内容吗,wangw-csdn在本文为您仔细讲解android 仿今日头条评论弹出键盘的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点: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; 
      } 
    }); 

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

加载全部内容

相关教程
猜你喜欢
用户评论