如何从不扩展 Activity 的类中使用 setContentView(int)

发布于 2024-11-24 08:20:29 字数 215 浏览 0 评论 0原文

我需要从另一个不扩展 Activity 的类中调用我的主 Activity 中的 setContentView(int) 。

在我的自定义类中,我有 private Context context; var,它是从构造函数中的 Activity 传递的,但我不知道如何使用 context< 访问 Activity 方法/代码> 变量。

I need to call the setContentView(int) from my main Activity from another class which does not extends Activity.

In my custom class I've got the private Context context; var that is passed from the Activity in the Constructor but I can't figure out how to acces the Activity methods using the context variable.

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

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

发布评论

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

评论(3

酷遇一生 2024-12-01 08:20:29

如果您的上下文是 Activity 类的实例,则简单的类转换应该可以工作:

Activity a = (Activity) context;
a.setContentView(R.layout.your_layout);

If your context is an instance of Activity class, simple class cast should work:

Activity a = (Activity) context;
a.setContentView(R.layout.your_layout);
┈┾☆殇 2024-12-01 08:20:29

一种解决方案(可能不是最优雅的)是将调用活动传递给另一个类,而不仅仅是上下文。

One solution (may not be the most elegant) is to pass the calling activity to the other class, not just the context.

温暖的光 2024-12-01 08:20:29

您必须传递对您正在使用的活动的引用。

像这样

class ActivityA extends Activity{
   @Override
   public void onCreate(Bundle state){
      super.onCreate(state);
      ClassA myclass = new ClassA(this);
   }
}

然后A类就会有:

class ClassA {
   public ClassA(Activity yourActivity){
      ... Get your view here ....
      yourActivity.setContentView(view);
      ... do more things...
   }
}

You would have to pass in a reference to the Activity you're using.

Something like this

class ActivityA extends Activity{
   @Override
   public void onCreate(Bundle state){
      super.onCreate(state);
      ClassA myclass = new ClassA(this);
   }
}

And then Class A would have:

class ClassA {
   public ClassA(Activity yourActivity){
      ... Get your view here ....
      yourActivity.setContentView(view);
      ... do more things...
   }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文