首页 > 移动平台 > 详细

Android dialog 全屏

时间:2014-08-02 23:16:44      阅读:513      评论:0      收藏:0      [点我收藏+]

Android中让Dialog全屏: 
一、在style中定义样式: 

<?xml version="1.0" encoding="utf-8"?>  
<resources>  
    <style name="Transparent">    
    <item name="android:windowBackground">@color/transparent_background</item>    
    <item name="android:windowNoTitle">true</item>    
    <item name="android:windowFullscreen">true</item>  
    <item name="android:windowIsTranslucent">true</item>       
    <item name="android:windowAnimationStyle">@+android:style/Animation.Translucent</item>    
  </style>  
</resources>  

 

 


其中transparent_background为颜色值:#50000000,透明度为50 

二、代码中定义Dialog时添加样式: 

View myLoginView = LayoutInflater.from(mContext).inflate(R.layout.activity_answer_category, null);
ListView cList = (ListView) myLoginView.findViewById(R.id.cagetoryList);
cList.setAdapter(new Adapter());
alertDialog = new Dialog(mContext, R.style.Transparent);
alertDialog.setContentView(myLoginView);
alertDialog.show();

 

Android dialog 全屏,布布扣,bubuko.com

Android dialog 全屏

原文:http://www.cnblogs.com/niray/p/3887499.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!