我在这个类的构造函数中有一个 noraml java 类说 ReceivedChat.java 我想调用 Android 的 Activity。
public class ReceivedChat {
String message;
String from;
Context context;
ReceivedChat(String message, String from) {
this.message = message;
this.from = from;
Bundle b = new Bundle();
b.putString("message", this.message);
b.putString("from", this.from);
b.putString("fromChat", "true");
Intent i = new Intent(context.getApplicationContext(), XmppChatActivity.class);
i.putExtras(b);
context.getApplicationContext().startActivity(i);
}
}
我的活动课程是XmppChatActivity
。
这个程序不工作。它没有调用我XmppChatActivity
班级的 onCreate 任何帮助都会感谢我。