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

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -