happyaday

导航

解决activity加上Theme.Translucent.NoTitleBar 页面跳转显示桌面

自定义style 继承Theme.Translucent.NoTitleBar  

 
 
  <style name="My.Translucent" parent="   @android :style/Theme.Translucent.NoTitleBar"> 
          <item name="android:windowBackground">   @android :color/transparent</item> 
          <item name="android:colorBackgroundCacheHint">   @android :color/transparent</item> 
          <item name="android:windowIsTranslucent">false</item> 
          <item name="android:windowAnimationStyle">   @android :style/Animation</item> 
      </style>
 
在配置文件中给activity设置这个theme,可以解决有时候会突然看到桌面的问题。

posted on 2015-07-02 18:05  happyaday  阅读(1565)  评论(0编辑  收藏  举报