Re: [android-developers] ProgressDialog from within ContentProvider class!

2017-01-24 Thread Sourav Bagchi
Do you solve this problem? On Saturday, 5 December 2009 23:46:42 UTC+5:30, mateen wrote: > > Yes, exactly, Thank you for your great assistance, I think the problem > will be solved after, Insallah! > > Thank You. > > On Sat, Dec 5, 2009 at 1:12 PM, Mark Murphy > wrote: > >> >> > do you mean I re

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Abdul Mateen
Yes, exactly, Thank you for your great assistance, I think the problem will be solved after, Insallah! Thank You. On Sat, Dec 5, 2009 at 1:12 PM, Mark Murphy wrote: > > > do you mean I remove the declaration from manifest.xml and handle it my > > own > > way, If yes can you specify how? > > No.

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Mark Murphy
> do you mean I remove the declaration from manifest.xml and handle it my > own > way, If yes can you specify how? No. You have a ContentProvider. By your description, it is doing some sort of initialization that is preventing the first Activity from being displayed for a while. Since a ContentP

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Abdul Mateen
do you mean I remove the declaration from manifest.xml and handle it my own way, If yes can you specify how? On Sat, Dec 5, 2009 at 1:00 PM, Mark Murphy wrote: > > The problem is, activity starts its onCreate after completing the > > ContentProvider operations > > Ah. Can your ContentProvider do

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Mark Murphy
> The problem is, activity starts its onCreate after completing the > ContentProvider operations Ah. Can your ContentProvider do its setup work in a background thread, so it does not tie up the main application thread? -- Mark Murphy (a Commons Guy) http://commonsware.com Android App Developer B

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Abdul Mateen
The problem is, activity starts its onCreate after completing the ContentProvider operations, I donot know if this is default process content provider is declared in manifest.xml. On Sat, Dec 5, 2009 at 12:38 PM, Mark Murphy wrote: > > Thank you for your answers, the problem remains the same, the

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Mark Murphy
> Thank you for your answers, the problem remains the same, the android > system > starts content provider before starting any activity, If I explicitly > starts > any activity within the content provider class the android system after > completing the task for upgrading/creating starts the MAIN ac

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Abdul Mateen
Hi, Thank you for your answers, the problem remains the same, the android system starts content provider before starting any activity, If I explicitly starts any activity within the content provider class the android system after completing the task for upgrading/creating starts the MAIN activity.S

Re: [android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Mark Murphy
> Hi, > I have been stuck at a place , strange, I have a content provider class > i.e > class extends ContentProvider, I want to know about the method to show the > dialog to the user when upgrading / creating a content provider or > database > from within content provider, I tried many ways for i

[android-developers] ProgressDialog from within ContentProvider class!

2009-12-05 Thread Abdul Mateen
Hi, I have been stuck at a place , strange, I have a content provider class i.e class extends ContentProvider, I want to know about the method to show the dialog to the user when upgrading / creating a content provider or database from within content provider, I tried many ways for it, but nothing