从android中的主项目向库项目发送数据

时间:2017-06-07 06:56:57

标签: android classnotfoundexception android-library

我不确定只是想知道我们有什么办法可以将数据从主项目发送到图书馆项目吗? 下面的代码给我 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 );

0 个答案:

没有答案