如何从 Activity 的包含类启动 Intent

发布于 2024-11-15 01:14:17 字数 584 浏览 0 评论 0原文

我正在寻找从不是 Activity 而是 Activity 类的包含对象的类启动意图的最佳方法。

例如,活动类:

Class MainActivity extends ListActivty
{
...
TestLauncher tester;
}

以及我想要从中启动意图的类:

Class TestLauncher
{
   public TestLauncher ()
   {
      //Code to create an intent needs a Context
      //Intent i = new Intent(Context, class)

      //Code to start activity needs to be called with an Activity
      //Activity.StartActivity(i);
   }
}

在架构上执行此操作的最佳方法是什么?我应该将 MainActivity 作为参数传递给 TestLauncher 的构造函数吗?还是有我不知道的更好的方法?

I'm looking for the best way to start an intent from a class that is not an Activity, but is a contained object of an Activity class.

For example the Activity Class:

Class MainActivity extends ListActivty
{
...
TestLauncher tester;
}

and the class that I want to start the intent from:

Class TestLauncher
{
   public TestLauncher ()
   {
      //Code to create an intent needs a Context
      //Intent i = new Intent(Context, class)

      //Code to start activity needs to be called with an Activity
      //Activity.StartActivity(i);
   }
}

What is the best way to do this architecturally? Should I pass MainActivity as a parameter to TestLauncher's constructor? Or is there a better way that I am not aware of?

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

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

发布评论

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

评论(1

橘亓 2024-11-22 01:14:17
Class TestLauncher
{
   public TestLauncher (Context c)
   {
      Intent i = new Intent(c, YourActivity.class)
      c.startActivity(i);
   }
}

TestLauncher ts=new TestLauncher(getApplicationContext());
Class TestLauncher
{
   public TestLauncher (Context c)
   {
      Intent i = new Intent(c, YourActivity.class)
      c.startActivity(i);
   }
}

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