我试图将字符串从mainActivity传递给a的活动 我一直在尝试使用Intent的库,但无法识别此功能,有人曾经这样做过吗?
我收到此错误:error
答案 0 :(得分:0)
getIntent是您的OFAndroid类中不可用的方法。如果要访问传递给活动的Intent,则应从活动类中调用它。
答案 1 :(得分:0)
像这样创建OFAndroid
类
public class OFAndroid {
private String text ;
public OFAndroid(String text) {
this.text = text ;
}
public void useText() {
Log.e("TAG" , this.text);
}
}
在您的MainActivity
实例化OFAndroid
中:
OFAndroid of = new OFAndroid("some string");
现在您可以使用传递的字符串
of.useText();