对于一个项目,我想创建自己的窗口样式。我的意思是这样的:
<style name="MyFloatingWindow">
<item name="android:windowBackground">@android:color/transparent</item>
<item name="android:background">@android:color/transparent</item>
<item name="android:windowIsFloating">true</item>
<item name="android:windowNoTitle">true</item>
</style>
为了获得一些想法,我可以如何实现我的想法,我想研究 andriod 的样式源,但我找不到它。原来的风格是WindowManager.LayoutParams.TYPE_SYSTEM_ALERT
什么?
或者是否可以以TYPE_SYSTEM_ALERT
父级创建新的布局样式?作为家长我该写些什么?
<style name="MyOverlay" parent="android:***">
</style>