zoukankan      html  css  js  c++  java
  • Dialog_ _dialog系统样式讲解 及 透明背景

    Android <wbr>Dialog <wbr>系统样式讲解及透明背景Android <wbr>Dialog <wbr>系统样式讲解及透明背景
    AlertDialog.Builder builder = new AlertDialog.Builder(DialogActivity.this,AlertDialog.THEME_TRADITIONAL);//传统主题
     
    Android <wbr>Dialog <wbr>系统样式讲解及透明背景

    AlertDialog.Builder builder = new AlertDialog.Builder(DialogActivity.this,AlertDialog.THEME_HOLO_DARK);//使用深色背景主题
     
    Android <wbr>Dialog <wbr>系统样式讲解及透明背景
     
     
    AlertDialog.Builder builder = new AlertDialog.Builder(DialogActivity.this,AlertDialog.THEME_HOLO_LIGHT);//使用浅色背景 主题

    Android <wbr>Dialog <wbr>系统样式讲解及透明背景
     
     
    AlertDialog.Builder builder = new AlertDialog.Builder(DialogActivity.this,AlertDialog.THEME_DEVICE_DEFAULT_DARK);//使用默认设备深色主题
     
    Android <wbr>Dialog <wbr>系统样式讲解及透明背景
     
    AlertDialog.Builder builder = new AlertDialog.Builder(DialogActivity.this,AlertDialog.THEME_DEVICE_DEFAULT_LIGHT);//使用默认设备 浅色主题
     
    Android <wbr>Dialog <wbr>系统样式讲解及透明背景

    //自定义布局 
    View layout = getActivity().getLayoutInflater().inflate(R.layout.mydialog,null);
    AlertDialog.Builder dialog = new AlertDialog.Builder(DialogActivity.this,AlertDialog.THEME_DEVICE_DEFAULT_DARK);
    final AlertDialog dialog = builder.create();
    dialog.setView(layout);
    //透明
    Window window = dialog.getWindow(); 
    WindowManager.LayoutParams lp = window.getAttributes();
    lp.alpha = 0.9f;
    window.setAttributes(lp);
    。。。
    dialog.show();
     
    Android <wbr>Dialog <wbr>系统样式讲解及透明背景
  • 相关阅读:
    Meet Hadoop
    C++常用函数
    Summary
    获得小黄衫感想
    课程作业(八)
    课程作业(七)
    课程作业(六)
    课程作业(五)
    课程作业(四)
    课程作业(三)
  • 原文地址:https://www.cnblogs.com/awkflf11/p/5535687.html
Copyright © 2011-2022 走看看