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
Post a Comment