解决activity加上Theme.Translucent.NoTitleBar 页面跳转显示桌面_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > 解决activity加上Theme.Translucent.NoTitleBar 页面跳转显示桌面

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

 2014/4/22 12:17:39  Y了个L  博客园  我要评论(0)
  • 摘要:自定义style继承Theme.Translucent.NoTitleBar<stylename="My.Translucent"parent="@android:style/Theme.Translucent.NoTitleBar"><itemname="android:windowBackground">@android:color/transparent</item><itemname="android
  • 标签:解决 not 页面跳转 Activity

自定义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>

发表评论
用户名: 匿名