Re: [android-developers] Plz help

2012-02-15 Thread TreKing
On Wed, Feb 15, 2012 at 10:21 AM, Dhaval Varia dhavalkva...@gmail.comwrote:

 Not able to understand how to withdraw money from google checkout to my
 bank account.


That's a question for Google Checkout.

Also, Plz help is a useless title for a post. Try indicating a relevant
subject so people have an idea what the thread is about. You'll get more
help that way.

Also, it's spelled Please. I really don't understand why that particular
word is apparently left out of English language instruction in certain
foreign countries.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] Plz help

2012-02-15 Thread Lew
TreKing wrote:

 Also, it's spelled Please. I really don't understand why that particular 
 word is apparently left out of English language instruction in certain 
 foreign countries.


Such as the U.S.
 
-- 
Lew

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help close application

2012-01-10 Thread Mark Murphy
On Tue, Jan 10, 2012 at 7:09 AM, Dhaval Varia dhavalkva...@gmail.com wrote:
 how can we close app/activity?

Your activity can close itself by calling finish().

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Android Training in NYC: http://marakana.com/training/android/

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] plz help close application

2012-01-10 Thread Ankit Kasliwal
just put
android.os.Process.killProcess(android.os.Process.myPid());
to close all activity related with your appliction

On Tue, Jan 10, 2012 at 4:19 AM, Mark Murphy mmur...@commonsware.comwrote:

 On Tue, Jan 10, 2012 at 7:09 AM, Dhaval Varia dhavalkva...@gmail.com
 wrote:
  how can we close app/activity?

 Your activity can close itself by calling finish().

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://github.com/commonsguy
 http://commonsware.com/blog | http://twitter.com/commonsguy

 Android Training in NYC: http://marakana.com/training/android/

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en




-- 

Thanks and Regards,

Ankit Kasliwal
kasliwalankit2...@gmail.com
+91-9300-940-136

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help close application

2012-01-10 Thread Mark Murphy
On Tue, Jan 10, 2012 at 7:24 AM, Ankit Kasliwal
kasliwalankit2...@gmail.com wrote:
 just put
 android.os.Process.killProcess(android.os.Process.myPid());
 to close all activity related with your appliction

Please do not use this in production applications.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Android Training in NYC: http://marakana.com/training/android/

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] plz help close application

2012-01-10 Thread Dhaval Varia
thanks friend
On Jan 10, 2012 5:50 PM, Mark Murphy mmur...@commonsware.com wrote:

 On Tue, Jan 10, 2012 at 7:09 AM, Dhaval Varia dhavalkva...@gmail.com
 wrote:
  how can we close app/activity?

 Your activity can close itself by calling finish().

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://github.com/commonsguy
 http://commonsware.com/blog | http://twitter.com/commonsguy

 Android Training in NYC: http://marakana.com/training/android/

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help close application

2012-01-10 Thread Dhaval Varia
thanks mark
On Jan 10, 2012 6:18 PM, Mark Murphy mmur...@commonsware.com wrote:

 On Tue, Jan 10, 2012 at 7:24 AM, Ankit Kasliwal
 kasliwalankit2...@gmail.com wrote:
  just put
  android.os.Process.killProcess(android.os.Process.myPid());
  to close all activity related with your appliction

 Please do not use this in production applications.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://github.com/commonsguy
 http://commonsware.com/blog | http://twitter.com/commonsguy

 Android Training in NYC: http://marakana.com/training/android/

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help....

2011-10-22 Thread RAJU V
having some apps to block



~~RAJU~~
~~www.itdoall.co.cc~~


On Sat, Oct 22, 2011 at 3:04 PM, Divyata Panchal 
panchal.divyat...@gmail.com wrote:

 how to block any contact number from contact list?

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to cthis group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help....

2011-10-13 Thread Kim Brorsson
Someone making malware, aye?

Den 12 okt 2011 13.06 skrev Divyata Panchal panchal.divyat...@gmail.com:

 how to stop uninstallation of any application in android...?

 plz help..

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help....

2011-10-13 Thread Divyata P
nope.. not malware!! jus to make an app for security purpose..

On Thu, Oct 13, 2011 at 3:23 AM, Kim Brorsson zhoo...@gmail.com wrote:

 Someone making malware, aye?

 Den 12 okt 2011 13.06 skrev Divyata Panchal panchal.divyat...@gmail.com
 :

 how to stop uninstallation of any application in android...?

 plz help..

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en


-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help....

2011-10-12 Thread Mark Murphy
On Wed, Oct 12, 2011 at 7:04 AM, Divyata Panchal
panchal.divyat...@gmail.com wrote:
 how to stop uninstallation of any application in android...?

Build your own phone and pre-install your application.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com | http://github.com/commonsguy
http://commonsware.com/blog | http://twitter.com/commonsguy

Warescription: Three Android Books, Plus Updates, One Low Price!

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en


Re: [android-developers] plz help....

2011-10-12 Thread Divyata P
i want to hide my application from uninstall list in android... give some
solution...!!!

On Wed, Oct 12, 2011 at 4:43 PM, Mark Murphy mmur...@commonsware.comwrote:

 On Wed, Oct 12, 2011 at 7:04 AM, Divyata Panchal
 panchal.divyat...@gmail.com wrote:
  how to stop uninstallation of any application in android...?

 Build your own phone and pre-install your application.

 --
 Mark Murphy (a Commons Guy)
 http://commonsware.com | http://github.com/commonsguy
 http://commonsware.com/blog | http://twitter.com/commonsguy

 Warescription: Three Android Books, Plus Updates, One Low Price!

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help....

2011-10-12 Thread TreKing
On Wed, Oct 12, 2011 at 12:27 PM, Divyata P panchal.divyat...@gmail.comwrote:

 i want to hide my application from uninstall list in android... give some
 solution...!!!


Mark gave it to you minutes after you asked.

-
TreKing http://sites.google.com/site/rezmobileapps/treking - Chicago
transit tracking app for Android-powered devices

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help..!!!

2011-10-03 Thread Luis Ramirez
Pray about it
On Sep 27, 2011 9:13 AM, Divyata P panchal.divyat...@gmail.com wrote:
 *how to solve error given below..!!!*

 ERROR/ActivityThread(14320): Service com.micro.btsT.BtsService has
 leaked IntentReceiver com.micro.btsT.BtsService$1@462b5288 that was
 originally registered here. Are you missing a call to
 unregisterReceiver()?
 ERROR/ActivityThread(14320): android.app.IntentReceiverLeaked: Service
 com.micro.btsT.BtsService has leaked IntentReceiver
 com.micro.btsT.BtsService$1@462b5288 that was originally registered
 here. Are you missing a call to unregisterReceiver()?
 ERROR/ActivityThread(14320): at

android.app.ActivityThread$PackageInfo$ReceiverDispatcher.init(ActivityThread.java:972)
 ERROR/ActivityThread(14320): at

android.app.ActivityThread$PackageInfo.getReceiverDispatcher(ActivityThread.java:755)
 ERROR/ActivityThread(14320): at
 android.app.ContextImpl.registerReceiverInternal(ContextImpl.java:799)
 ERROR/ActivityThread(14320): at
 android.app.ContextImpl.registerReceiver(ContextImpl.java:786)
 ERROR/ActivityThread(14320): at
 android.app.ContextImpl.registerReceiver(ContextImpl.java:780)
 ERROR/ActivityThread(14320): at
 android.content.ContextWrapper.registerReceiver(ContextWrapper.java:318)
 ERROR/ActivityThread(14320): at
 com.micro.btsT.BtsService.onStart(BtsService.java:134)
 ERROR/ActivityThread(14320): at
 android.app.Service.onStartCommand(Service.java:420)
 ERROR/ActivityThread(14320): at
 android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3267)
 ERROR/ActivityThread(14320): at
 android.app.ActivityThread.access$3600(ActivityThread.java:135)
 ERROR/ActivityThread(14320): at
 android.app.ActivityThread$H.handleMessage(ActivityThread.java:2211)
 ERROR/ActivityThread(14320): at
 android.os.Handler.dispatchMessage(Handler.java:99)
 ERROR/ActivityThread(14320): at android.os.Looper.loop(Looper.java:144)
 ERROR/ActivityThread(14320): at
 android.app.ActivityThread.main(ActivityThread.java:4937)
 ERROR/ActivityThread(14320): at
 java.lang.reflect.Method.invokeNative(Native Method)
 ERROR/ActivityThread(14320): at
 java.lang.reflect.Method.invoke(Method.java:521)
 ERROR/ActivityThread(14320): at

com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
 ERROR/ActivityThread(14320): at
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
 ERROR/ActivityThread(14320): at
 dalvik.system.NativeStart.main(Native Method)

 --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help..!!!

2011-09-27 Thread Kumar Bibek
In the onPause method of your activity, you should unregister the receivers
that you might have registered.

*Thanks and Regards,
Kumar Bibek*
*
http://techdroid.kbeanie.com
http://www.kbeanie.com*



On Tue, Sep 27, 2011 at 9:43 PM, Divyata P panchal.divyat...@gmail.comwrote:

 *how to solve error given below..!!!*

 ERROR/ActivityThread(14320): Service com.micro.btsT.BtsService has leaked 
 IntentReceiver com.micro.btsT.BtsService$1@462b5288 that was originally 
 registered here. Are you missing a call to unregisterReceiver()?
 ERROR/ActivityThread(14320): android.app.IntentReceiverLeaked: Service 
 com.micro.btsT.BtsService has leaked IntentReceiver 
 com.micro.btsT.BtsService$1@462b5288 that was originally registered here. Are 
 you missing a call to unregisterReceiver()?
 ERROR/ActivityThread(14320): at 
 android.app.ActivityThread$PackageInfo$ReceiverDispatcher.init(ActivityThread.java:972)
 ERROR/ActivityThread(14320): at 
 android.app.ActivityThread$PackageInfo.getReceiverDispatcher(ActivityThread.java:755)
 ERROR/ActivityThread(14320): at 
 android.app.ContextImpl.registerReceiverInternal(ContextImpl.java:799)
 ERROR/ActivityThread(14320): at 
 android.app.ContextImpl.registerReceiver(ContextImpl.java:786)
 ERROR/ActivityThread(14320): at 
 android.app.ContextImpl.registerReceiver(ContextImpl.java:780)
 ERROR/ActivityThread(14320): at 
 android.content.ContextWrapper.registerReceiver(ContextWrapper.java:318)
 ERROR/ActivityThread(14320): at 
 com.micro.btsT.BtsService.onStart(BtsService.java:134)
 ERROR/ActivityThread(14320): at 
 android.app.Service.onStartCommand(Service.java:420)
 ERROR/ActivityThread(14320): at 
 android.app.ActivityThread.handleServiceArgs(ActivityThread.java:3267)
 ERROR/ActivityThread(14320): at 
 android.app.ActivityThread.access$3600(ActivityThread.java:135)
 ERROR/ActivityThread(14320): at 
 android.app.ActivityThread$H.handleMessage(ActivityThread.java:2211)
 ERROR/ActivityThread(14320): at 
 android.os.Handler.dispatchMessage(Handler.java:99)
 ERROR/ActivityThread(14320): at android.os.Looper.loop(Looper.java:144)
 ERROR/ActivityThread(14320): at 
 android.app.ActivityThread.main(ActivityThread.java:4937)
 ERROR/ActivityThread(14320): at 
 java.lang.reflect.Method.invokeNative(Native Method)
 ERROR/ActivityThread(14320): at 
 java.lang.reflect.Method.invoke(Method.java:521)
 ERROR/ActivityThread(14320): at 
 com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
 ERROR/ActivityThread(14320): at 
 com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
 ERROR/ActivityThread(14320): at dalvik.system.NativeStart.main(Native 
 Method)

  --
 You received this message because you are subscribed to the Google
 Groups Android Developers group.
 To post to this group, send email to android-developers@googlegroups.com
 To unsubscribe from this group, send email to
 android-developers+unsubscr...@googlegroups.com
 For more options, visit this group at
 http://groups.google.com/group/android-developers?hl=en

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Re: [android-developers] plz help..!!!

2011-09-27 Thread Ralph Bergmann | the4thFloor.eu
Am 27.09.11 18:13, schrieb Divyata P:
 *how to solve error given below..!!!*

read the error message

 Are you missing a call to unregisterReceiver()?

-- 
You received this message because you are subscribed to the Google
Groups Android Developers group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en