美文网首页
Android自定义Dialog 软键盘、大小的设置

Android自定义Dialog 软键盘、大小的设置

作者: 带着bug看世界 | 来源:发表于2016-11-04 10:36 被阅读296次

    Dialog中EditText可弹出软键盘

    <style name="CustomDialogStyle" parent="@android:style/Theme.Dialog">  
      <item name="android:windowFrame">@null</item>  
      <item name="android:windowIsFloating">true</item>  
      <item name="android:windowIsTranslucent">true</item>  
      <item name="android:windowNoTitle">true</item>  
      <item name="android:background">@android:color/transparent</item>  
      <item name="android:windowBackground">@android:color/transparent</item>  
      <item name="android:backgroundDimEnabled">true</item>  
      <item name="android:backgroundDimAmount">0.6</item>  
    </style>
    

    把style设置到dialog中

    Dialog ad = new Dialog(context,R.style.CustomDialogStyle);  
    ad.show();  
    Window window = ad.getWindow();  
    window.setBackgroundDrawable(new ColorDrawable(0));    
    window.setContentView(R.layout.cancel_sos_dialog);
    

    Dialog中设置大小

    代码承接上面的代码

    WindowManager.LayoutParams  lp= window.getAttributes();    
    lp.width=screenWidth - 50;//定义宽度    
    lp.height=LayoutParams.WRAP_CONTENT;//定义高度    
    window.setAttributes(lp);  
    

    相关文章

      网友评论

          本文标题:Android自定义Dialog 软键盘、大小的设置

          本文链接:https://www.haomeiwen.com/subject/hgxxjttx.html