spartacus

activity的dialog样式设置

<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="FullHeightDialog" parent="android:style/Theme.Dialog">
<item name="android:windowNoTitle">true</item>
<item name="android:windowBackground">@android:color/transparent</item>
</style>

</resources>

上面的代码写在string.xml里面

然后在清单文件中给activity设置theme

 android:theme="@style/FullHeightDialog"  
 
ok  搞定~!!

 

分类:

技术点:

相关文章:

  • 2021-06-07
  • 2022-01-21
  • 2022-12-23
  • 2021-11-02
  • 2022-12-23
  • 2022-12-23
  • 2021-04-19
  • 2022-02-10
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-04-23
  • 2022-01-17
  • 2022-12-23
  • 2021-11-12
相关资源
相似解决方案