我有 2 个活动。我开始一个,然后我开始另一个:
Intent enabler = new Intent(this, cprompt.class);
startActivity(enabler);
我想从旧方法中调用一个方法,但我也想传递一些数据。
这就是我尝试的方式:
Activity1.sendcommand(DATA);
我得到了这个:
Cannot make a static reference to the non-static method sendcommand(String) from the type Activity1
而且我不想将方法更改为静态。如果我做一个听众的唯一方法?如果我必须,你可以为我描述如何?
java对我来说是新的......:/但是如果这个问题得到解决,我想我的程序已经完成了:)