Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您知道如何从 Android 的设置菜单中激活所有动画吗?问题是设备,至少在三星 Galaxy 的情况下,必须启用动画才能使传递动画工作。这可以在设置菜单中完成,但我希望我的应用程序以编程方式完成。这可能吗 ?
我认为这可能有效:
ContentResolver contentResolver = getContentResolver(); Settings.System.putInt(contentResolver , Settings.System.WINDOW_ANIMATION_SCALE, 0);
看到这个