当我在 Android 应用程序中切换活动时,渲染时屏幕会快速变暗(半秒)。例如,如果我按下启动活动的按钮,屏幕会快速变暗。无论如何我可以阻止这个吗???
1 回答
GCT1015
TA贡献1827条经验 获得超4个赞
也许如果你尝试关闭动画你会得到你需要的东西
overridePendingTransition(R.anim.stay, R.anim.stay)
//then start the new activity
R.anim.stay:
<?xml version="1.0" encoding="utf-8"?>
<set xmlns:android="http://schemas.android.com/apk/res/android">
<translate android:duration="@android:integer/config_mediumAnimTime"/>
</set>
添加回答
举报
0/150
提交
取消