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