想要为 Android 活动提供半透明背景?
我希望某个活动有一个半透明的背景,以便可以在该活动下方看到之前的活动。类似于在后台播放的视频上方弹出的半透明菜单。
这可能吗?你能告诉我怎么做吗?
注意:我无法使用 Android 的默认半透明主题,因为我正在为我的应用程序使用我自己的自定义背景和主题。
请帮忙。下面是我的 style.xml,其中 my_btn 和 my_list 是选择器:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="btnstyle" parent="@android:style/Widget.Button">
<item name="android:textColor">#FFFFFF</item>
<item name="android:background">@drawable/my_btn</item>
</style>
<style name="liststyle" parent="@android:style/Widget.ListView">
<item name="android:listSelector">@drawable/my_list</item>
</style>
<style name="theme" parent="android:Theme.Translucent">
<item name="android:windowBackground">@drawable/background</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:buttonStyle">@style/btnstyle</item>
<item name="android:listViewStyle">@style/liststyle</item>
</style>
</resources>
I wish to have a transluscent background for an activity, so that the previous activity can be seen beneath this activity. Something like a transluscent menu that pops up over a videa being played in the background.
Is this possible? Can you tell me how?
Note:I cannot use the default transluscent theme from android, since I am using my own customised background and theme for my application.
Pls help. Below is my style.xml wherein my_btn and my_list are selectors :
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="btnstyle" parent="@android:style/Widget.Button">
<item name="android:textColor">#FFFFFF</item>
<item name="android:background">@drawable/my_btn</item>
</style>
<style name="liststyle" parent="@android:style/Widget.ListView">
<item name="android:listSelector">@drawable/my_list</item>
</style>
<style name="theme" parent="android:Theme.Translucent">
<item name="android:windowBackground">@drawable/background</item>
<item name="android:windowIsTranslucent">true</item>
<item name="android:buttonStyle">@style/btnstyle</item>
<item name="android:listViewStyle">@style/liststyle</item>
</style>
</resources>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将半透明主题应用到 AndroidManifest.xml 中的 Activity
Apply Translucent theme to your activity in AndroidManifest.xml