Android dialog 全屏

时间:2014-08-02 23:16:44   收藏:0   阅读:514

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

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

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!