i am getting a noclassdeffound exception, when running my app with the emulator:
@Override public void onCreate(Bundle savedInstanceState) { super.onCre
I think you should use
Intent myScreen = new Intent(); myScreen.setClassName(YourCurrentScreen.this, fullpackagename.yourclassName.class.getName()); startActivityForResult(myScreen, 0);
This would definitely work