Activity跳转短暂黑屏

来源:互联网 发布:calendar.js api 编辑:程序博客网 时间:2024/05/01 14:28
        <activity android:theme="@style/AppTheme"            android:name="....."            android:configChanges="orientation|keyboardHidden"            android:screenOrientation="portrait" >        </activity> 


在Activity中使用样式

 

 

样式的定义

 

<style name="AppTheme" parent="@android:style/Theme.Light">        <item name="android:windowNoTitle">true</item>        <item name="android:windowIsTranslucent">true</item>        <item name="android:windowContentOverlay">@null</item></style>


原创粉丝点击