我不确定只是想知道我们有什么办法可以将数据从主项目发送到图书馆项目吗? 下面的代码给我 classnotfound 异常这里 LockScreenActivity 是我的图书馆项目活动。 我从主项目中调用此代码。
Intent myIntent = null;
try {
myIntent = new Intent(this,Class.forName("nseit.com.lockscreenusingservice.LockScreenActivity"));
} catch (ClassNotFoundException e) {
e.printStackTrace();
}
myIntent.putExtra("exam_id",exam_id);
myIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(myIntent );