Android 特殊界面效果之——透明界面

想写一个透明的界面如何实现?看网上有好多复杂的说法,实际尝试了一下,其实蛮简单的:


假如想写一个透明的activity:

在manifest 中配置该activity:theme属性为:android:theme="@android:style/Theme.Translucent.NoTitleBar"

假如想让所有的activity都是透明效果:

可以在application中配置属性theme为:android:theme="@android:style/Theme.Translucent.NoTitleBar"

这样的话,假如界面中没有其他组件,程序运行后就是一个完全透明的界面,跟开启程序之前一模一样,但是点击屏幕上的图标或按钮不会有反应,因为前面有透明的界面,这些图标或按钮只能看见却获取不到焦点。


假如设置为:android:theme="@android:style/Theme.Translucent",则界面是透明但是会显示titlebar;

假如设置属性为:android:theme="@android:style/Theme.Translucent.NoTitleBar.Fullscreen" 状态栏电量等会看不到。

所以,要想写一个完全透明的界面,最逼真的方式便是设置theme为:android:theme="@android:style/Theme.Translucent.NoTitleBar"。






你可能感兴趣的:(Android,功能范例)