本文介绍了我可以在其他班级中创建活动的对象吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我已经在 mainactivity 中定义了一个函数,现在我想使用我的应用程序中的另一个类访问.我通过使用该对象创建了一个 mainactivity 对象,我调用了该函数.它没有显示任何错误,但没有执行每次我尝试执行应用程序时都会崩溃?任何解决方案
i have defined a function in mainactivity now i want to access with another class in my app.I have created a object of the mainactivity by using that object i have called the function.It is not showing any error but its not executing every time i try to execute the app crashes?any solutions
推荐答案
Activity A 应该有一个变量
Activity A should have a variable
static ActivityA activityA;
处于 onCreate 状态:
In onCreate state:
activityA = this;
并添加此方法:
public static ActivityA getInstance(){
return activityA;
}
在活动 B 中,调用
ActivityA.getInstance().myFunction(); //call myFunction using activityA
这篇关于我可以在其他班级中创建活动的对象吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!