[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-28 Thread ANKIT SOMANI
Thanks Niko, Yes I think that was the problem. It worked for me that way. Regards ~Ankit Somani 2009/8/27 niko20 nikolatesl...@yahoo.com Use the handler class with a postDelayed call on it, and in the function the handler calls it will look like this: private Runnable ShowHelpFirstTime

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-26 Thread niko20
Why are you trying to display an activity when the first activity isn't even done with it's OnCreate()? I think this is the reason it's not working. Try using a delayed intent or use a Handler with a timed post message in the first activity, then the handler launches the second activity. It's

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-26 Thread niko20
Use the handler class with a postDelayed call on it, and in the function the handler calls it will look like this: private Runnable ShowHelpFirstTime = new Runnable(){ public void run() { Intent i = new Intent(electrum.this, helppage.class);

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-25 Thread ANKIT SOMANI
Any Suggestions ...?? Regards ~Ankit Somani 2009/8/24 ANKIT SOMANI ankitsomani...@gmail.com This Problem is with the Cupcake 1.5 release, I tried it with 1.1 it was working there. Regards ~Ankit Somani 2009/8/24 suchita bhardwaj suchi.bhard...@gmail.com Hi, I am also facing the

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-24 Thread ANKIT SOMANI
Problem is with the Child activity, with the Theme.dialog 2009/8/24 ANKIT SOMANI ankitsomani...@gmail.com Hi all, I am facing a strange problem. I have 2 activities. The Second activity having the theme.Dialog (set in manifest). when I launched the second activity from first activity via

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-24 Thread suchita bhardwaj
Hi, I am also facing the same problem. Can anyone suggest something? On Mon, Aug 24, 2009 at 12:00 PM, ANKIT SOMANI ankitsomani...@gmail.comwrote: Problem is with the Child activity, with the Theme.dialog 2009/8/24 ANKIT SOMANI ankitsomani...@gmail.com Hi all, I am facing a strange

[android-developers] Re: Problem with Dialog theme when launching from another activity

2009-08-24 Thread ANKIT SOMANI
This Problem is with the Cupcake 1.5 release, I tried it with 1.1 it was working there. Regards ~Ankit Somani 2009/8/24 suchita bhardwaj suchi.bhard...@gmail.com Hi, I am also facing the same problem. Can anyone suggest something? On Mon, Aug 24, 2009 at 12:00 PM, ANKIT SOMANI