在自己的项目中,我需要使用Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK来开始新的activity同时移除之前所有的activity。我使用这个intent flag的代码如下:
<span style="white-space:pre"> </span>Intent intent = new Intent(Gerenxinxi.this, MainPart.class); intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK); startActivity(intent); finish()
但是当执行这段代码的时候,我发现会有一段黑屏的时间段(很短,但是能很明显感觉出来)。我试着把intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK | Intent.FLAG_ACTIVITY_CLEAR_TASK);这行代码去掉,发现黑屏就不见了。为了测试,使用其他的flag,如FLAG_ACTIVITY_CLEAR_TOP等均没有发生黑屏的情况,但是根据需求我又必须要使用Intent.FLAG_ACTIVITY_NEW_TASK
| Intent.FLAG_ACTIVITY_CLEAR_TASK。后来经过自己的查找和测试,发现通过下面的方法可以去掉黑屏。
如果是像上面的代码那样所展现的是从Gerenxinxi这个activity跳转到MainPart,那么我们在AndroidManifest里的mainpart的配置应该是这样的:
<span style="white-space:pre"> </span><activity android:name="com.ci123.jiayuanbao.school.MainPart" android:screenOrientation="portrait" android:theme="@style/AppTheme_yu" > </activity>
同时,在style里我们要配置style:
<span style="white-space:pre"> </span><style name="AppTheme_yu" parent="@android:style/Theme.Light"> <span style="white-space:pre"> </span><item name="android:windowNoTitle">true</item> <span style="white-space:pre"> </span><item name="android:animationDuration">0</item> <span style="white-space:pre"> </span><item name="android:windowDisablePreview">true</item> </style>
主要是<item name="android:windowDisablePreview">true</item>,可以去掉之前所出现的黑屏。
这是我在网上问的问题,别人回复的链接:http://stackoverflow.com/questions/31264157/how-to-avoid-black-screen-when-intent-flag-activity-new-task-intent-flag-activ
版权声明:本文为博主原创文章,未经博主允许不得转载。