how to link two acitivities in android project -


i new android want code splashscreen. used intent getting error instrumention source not found. have 2 files splashscreen.java , myapps.java have use threading concept , called anothe activity

finally {   finish();   startactivity(new intent("com.example.myapps"));   stop(); } 

@ startacitivy getting axception please guide me have modify androidmanifest file? if yes please provide me syntax that....

thanks in advance.

if you're starting new activity intent, prefer using like:

intent intent = new intent(myclass.this, myapps.class); startactivity(intent); 

and have proper entry on manifest myapps class like:

<application>     .......     .....     <activity android:name="com.example.myapps" />     ........ </application> 

Comments

Popular posts from this blog

delphi - TJvHidDeviceController "DevicePath" always showing "\" -

Disabling Android home button for industry application -

asp.net mvc 3 - Unexpected "foreach" keyword after "@" character -