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.
是否可以使用我的代码维护应用程序生命周期。我的意思是创建和控制活动创建。也许我的 Windows 编程经验搞砸了我的 Android 编程尝试。例如,我想列出已启动的活动并使用我的应用程序类中的代码开始新的活动。这可能吗?
Intent intent = new Intent(context, RequiredActivity.class); startActivityForResult(intent, 0);
希望这会有所帮助...
“我想列出已开始的活动”
=它由 Android 作为Activity Stack进行管理
“使用我的应用程序类中的代码开始新活动”
=可以使用Intent