[android-developers] Long Click Event of Button

2009-03-19 Thread Omer Saatcioglu
Hello all, I have a problem. I use Click and Long Click Event in a button. Everything's seems fine. However; whenever a user long click the button, the click event also triggers. I couldn't find what I am doing wrong. On the other hand, I noticed something might highly relevant showDialog

[android-developers] Restoring the active Activity while resuming the application

2009-04-07 Thread Omer Saatcioglu
Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity, the ChildActivity is launched. What I want to do is this: When the active activity is the ChildActivity and the user clicks the home button then relaunch the

[android-developers] Re: Restoring the active Activity while resuming the application

2009-04-08 Thread Omer Saatcioglu
On Apr 7, 8:22 pm, Marco Nelissen marc...@android.com wrote: On Tue, Apr 7, 2009 at 10:04 AM, Omer Saatcioglu osaatcio...@gmail.com wrote: Hello all, I have two activities running: MainActivity and ChildActivity. Whenever the user clicks in the button in MainActivity

[android-developers] Re: Restoring the active Activity while resuming the application

2009-04-09 Thread Omer Saatcioglu
to do any wrk while the activity is finishing then use isFinishing() method On Thu, Apr 9, 2009 at 11:10 AM, Omer Saatcioglu osaatcio...@gmail.comwrote: On Apr 7, 8:22 pm, Marco Nelissen marc...@android.com wrote: On Tue, Apr 7, 2009 at 10:04 AM, Omer Saatcioglu osaatcio...@gmail.com

[android-developers] Re: Restoring the active Activity while resuming the application

2009-04-09 Thread Omer Saatcioglu
(); ctrlMaintanence.savetheGame(); *finish();* } if you need to do any wrk while the activity is finishing then use isFinishing() method On Thu, Apr 9, 2009 at 11:10 AM, Omer Saatcioglu osaatcio...@gmail.com wrote: On Apr 7, 8:22 pm, Marco Nelissen marc...@android.com wrote

[android-developers] Re: How to change APN Settings

2009-04-16 Thread Omer Saatcioglu
I have the same problem too. Is there anyone who can help us for this? Thank you, Omer On Feb 24, 12:42 pm, Jun'ichiHira hiraya...@gmail.com wrote: Hello I'm developing an application that change SystemAPN. but I don't have any information to do that. Does anyone know how to

[android-developers] How to enable/disable GPRS/EDGE data connection

2009-04-16 Thread Omer Saatcioglu
Hello all, The service providers in my country are charging for the MBs I downloaded in my GPRS/EDGE connection. So, whenever I want to disable the GPRS, I just change my default APN to something wrong and then correct it when I want to enable it again. I couldn't find another way to

[android-developers] Re: How to enable/disable GPRS/EDGE data connection

2009-04-16 Thread Omer Saatcioglu
...@android.com wrote: For what is worth, there is already an application on Market called APNDroid that will just do that for you On Thu, Apr 16, 2009 at 8:14 PM, Omer Saatcioglu osaatcio...@gmail.comwrote: Hello all, The service providers in my country are charging for the MBs I downloaded

[android-developers] Re: Active Calendar app on Android Emulator?

2009-04-18 Thread Omer Saatcioglu
Emulator can not sync with Google Server. You should test the sync with a real device that had activated with google ID. On Feb 26, 1:52 pm, Steven Farley srfar...@gmail.com wrote: I have the same problem, running the emulator on Mac OS X.  Any suggesstions would be appreciated. On Feb 21,

[android-developers] Re: Writting/Reading Sync settings - Possible?

2009-04-19 Thread Omer Saatcioglu
Ok. I am looking for the same thing desperately too and I think that configuring sync settings is not possible (I mean supported) Anyway, even though it is not possible, could anybody tell us why it is not? I will be very happy. Thanks, Omer On Feb 24, 1:21 pm, Abraham

[android-developers] ADC 2 rating

2009-10-26 Thread Omer Saatcioglu
Hi, I submitted an app to ADC 2 and I had the chance to track user statistics over my server. As I observed that only 125 users used my app during the first round. This seemed to me a very low rate. What do you think? Does anybody has an statistic like this? Best Regards, Omer

[android-developers] Re: ADC 2 rating

2009-10-26 Thread Omer Saatcioglu
Yes, in deed! But, still, IMHO it is not enough to score user experience. On Oct 26, 11:50 am, Nightwolf mikh...@gmail.com wrote: I have no such statistics. According to Google blog the target was about 100 ratings per application. On Oct 26, 11:36 am, Omer Saatcioglu osaatcio...@gmail.com

[android-developers] Re: ActivityInfo is null in Intrumentation class

2009-04-28 Thread Omer Saatcioglu
did you add the intents to AndroidManifest.xml? On Tue, Apr 28, 2009 at 2:05 PM, a...@lg l.prade...@gmail.com wrote: @Override public void onStart() { super.onStart(); _intent = new Intent(Intent.ACTION_MAIN); _intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); _intent =

[android-developers] Can not change the text appears in AlertDialog

2009-05-07 Thread Omer Saatcioglu
Hello, Today I faced a very weird problem. In my game I create AlertDialog to show the user next level challenges when one is succeeded. So, the corresponding code is like this. when the game is succeeded showDialog (R.id.display_success) is called and the following code is executed. So, I am

[android-developers] Re: Can not change the text appears in AlertDialog

2009-05-07 Thread Omer Saatcioglu
); showDialog(R.id.display_success); On Thu, May 7, 2009 at 11:16 AM, Omer Saatcioglu osaatcio...@gmail.comwrote: Hello, Today I faced a very weird problem. In my game I create AlertDialog to show the user next level challenges when one is succeeded. So, the corresponding code is like