gpt4 book ai didi

android - 如何开始一项 Activity

转载 作者:行者123 更新时间:2023-11-30 04:50:12 25 4
gpt4 key购买 nike

我创建了两个类:Example1Example2,它们扩展了 Activity 。Example1 包含按钮的 UI,而 Example2 包含 TextEdit 的 UI。我想在点击按钮时调用 Example2,所以这段代码在 onclick 方法中

Intent i = new Intent();
i.setClassName("com.a.ui", "com.a.ui.Example2");
startActivity(i);

这样我就可以成功获取Example2的UI了。调用 Intent 的另一种方法是什么?

有没有其他方法可以开始一项 Activity ?

最佳答案

你可以这样调用:

startActivity(new Intent(com.a.ui.this, com.a.ui.Example2.class));

关于android - 如何开始一项 Activity ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3714894/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com