android - Can we show the dialog after finish the Activity? -
i have tried dialog box dismiss when activity finish because dialog takes context of activity.is there way it?
you can. create separate activity show dialog box. define dialog activity in manifest following:
<activity android:name=".dialogactivity" android:theme="@android:style/theme.dialog" android:excludefromrecents="true" android:taskaffinity="" android:launchmode="singleinstance"> </activity>
define dialog box or whatever want show in activity. start dialogactivity when finish activity.
Comments
Post a Comment