一个班级内有多项活动?

发布于 2024-11-25 07:36:36 字数 213 浏览 0 评论 0原文

所以我想做的就是这个。我想要一个包含其他启动活动的类的类,但我不确定这是否可能,甚至是一个好主意。一个例子:

public class General{
     public class Activity1 extends Activity{
          //Start Activity
     }
}

有没有办法调用这样的活动?

So what I want to do is this. I want to have a class that contains other classes which start activities, but I'm not sure if its possible, or even a good idea. An Example:

public class General{
     public class Activity1 extends Activity{
          //Start Activity
     }
}

Is there a way to call such an activity?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风渺 2024-12-02 07:36:36

所以我选择的解决方案是使用包。在这里阅读后 http://developer.android.com/guide /topics/manifest/manifest-intro.html 和此处 Android:将多个 Java 包包含到 Manifest ,这似乎是一个更好的方法做我上面说的。

So the solution I chose to go with was to use packages. After reading about it here http://developer.android.com/guide/topics/manifest/manifest-intro.html and here Android: Including multiple Java Packages to Manifest , it seems like a better method to do what I stated above.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文