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

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

c# - How to add a new treeview at the selected node? -

java - netbeans "Please wait - classpath scanning in progress..." -