android - How to finish activity from other activity -


im looking way finish first activity other

first activity it's splashscreen. want show him while second activity building../downloading datas , interface, , in asynctask second activity want finish first activity. dont need simple way delay. it's possible ?

try android:nohistory="true" in splash screen, can set in manifest file.

like this:

<activity         android:name=".package.splashscreen"         android:nohistory="true"         ... </activity> 

see more here.


Comments

Popular posts from this blog

php - Submit Form Data without Reloading page -

linux - Rails running on virtual machine in Windows -

php - $params->set Array between square bracket -