zoukankan      html  css  js  c++  java
  • Android AlertDialog全屏显示去除白色边框

    使用styles.xml风格:
     
    Style.xml代码 
    <style name="FullScreenDialog" parent="android:style/Theme.Dialog"> 
        <item name="android:windowNoTitle">true</item> 
        <item name="android:windowFrame">@null</item> 
        <item name="android:windowIsFloating">true</item> 
        <item name="android:windowIsTranslucent">false</item> 
        <item name="android:background">@android:color/black</item> 
        <item name="android:windowBackground">@null</item> 
        <item name="android:backgroundDimEnabled">false</item> 
    </style> 
    使用AlertDialog的上层接口类:
     
    Java代码 
    Dialog reNameDialog = new Dialog(getContext(), R.style.FullScreenDialog); 
    LayoutInflater mLayoutInflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE); 
    View reNameView = mLayoutInflater.inflate(R.layout.audiorecord_rename, null); 
    LayoutParams params = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT); 
    reNameDialog.addContentView(reNameView, params); 
    reNameDialog.show(); 
  • 相关阅读:
    文件
    drf序列化组件
    drf入门规范
    单例模式
    初识drf
    restful规范
    虚拟环境使用
    vue基础(三)
    vue基础(二)
    作业
  • 原文地址:https://www.cnblogs.com/tianshidechibang234/p/3259439.html
Copyright © 2011-2022 走看看