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:launchMode="singleTop"
我如何操作 Intent 以便在 Top 上创建新的 Activity。因为在特殊情况下我需要一个新的活动。
还是不可能?
我会删除singleTop清单中的标志,而是将其作为标志添加到您需要它们的意图中,使用:
singleTop
intent.setFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
然后在不需要使用的情况下singleTop,不要设置这个标志。