[android-developers] Plz help

2012-02-15 Thread Dhaval Varia
Not able to understand how to withdraw money from google checkout to my
bank account.

I want to understand whole cycle.

I understand this is technical forum.bt i beleve some developer has
experiance.

Thanx in advance.

-- 
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 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

[android-developers] plz help

2012-01-11 Thread waqas aslam
Q#1

Suppose an application has a window and 2 menu resources, one is IDM_MENU1
and second is IDM_MENU2. While registering the window class in this
application, we make IDM_MENU1 the class menu. Now, we have 2 scenarios:

1.  We give the menu handle of IDM_MENU2 during creating the window.

2.  We give NULL as the menu during creating the window.
You have to tell which menu will be associated to the window in both cases.

Q#2

Suppose we have an application that creates an overlapped window with a
push button on it. We have coded the window procedure of the window in such
a way that when the button is pressed a message box appears. A smart user
makes a very good observation about our application. He say,” When I click
the button, a message box appears. I drag the message box to a side using
mouse and try to click the button again only to find that I cannot do it
now. Now I click OK button of message box and message box disappears. After
it I can again click the push button of the window.”

Explain to the user the reason of his/her observation.

-- 
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

[android-developers] plz help close application

2012-01-10 Thread Dhaval Varia
how can we close app/activity?

-- 
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

[android-developers] Plz Help on Sending Google Map Location in Email

2012-01-03 Thread Dhaval Varia
Dear

Through GPS I have found Latitude and Longitude.

*Now I wanted to do following things:*

*1. Send Location Link in Email.*
* By clicking this , receiving party should directly move
to that location on Google map*
*
*
*2. [If possible] Send this link in sms.**
*
*
*
* So,if user doesn't read Email,still he could get location
Information on map*
*
*
* *
Thanks  Best Regards.

Dhaval varia

-- 
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

[android-developers] PLZ HELP!!!! APPLICATION NOT GETTING UPLOADED ON EMULATOR

2011-11-14 Thread Shrav
Hi,
I am trying to work with google map , as instructed I have got the
certificate ,etc.
My appl is getting compiled with NO ERRORS but the application is not
being displayed on the emulator!!
The emulator is running properly with its default applications,,plz
help..

[2011-11-12 17:41:23 - HelloMapGoogle] --
[2011-11-12 17:41:23 - HelloMapGoogle] Android Launch!
[2011-11-12 17:41:23 - HelloMapGoogle] adb is running normally.
[2011-11-12 17:41:23 - HelloMapGoogle] Performing
com.example.hellomapgoogle.HelloMapGoogle activity launch
[2011-11-12 17:41:23 - HelloMapGoogle] Automatic Target Mode:
launching new emulator with compatible AVD 'map_me'
[2011-11-12 17:41:23 - HelloMapGoogle] Launching a new emulator with
Virtual Device 'map_me'
[2011-11-12 17:41:44 - Emulator] emulator: warning: opening audio
output failed
[2011-11-12 17:41:44 - Emulator]
[2011-11-12 17:41:47 - HelloMapGoogle] New emulator found:
emulator-5554
[2011-11-12 17:41:47 - HelloMapGoogle] Waiting for HOME
('android.process.acore') to be launched...
[2011-11-12 17:43:03 - HelloMapGoogle] HOME is up on device
'emulator-5554'
[2011-11-12 17:43:03 - HelloMapGoogle] Uploading HelloMapGoogle.apk
onto device 'emulator-5554'
[2011-11-12 17:43:08 - HelloMapGoogle] Installing
HelloMapGoogle.apk...

thanks in advance...

-- 
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


[android-developers] plz help....

2011-10-22 Thread Divyata Panchal
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 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

[android-developers] plz help....

2011-10-12 Thread Divyata Panchal
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


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


[android-developers] plz help me this code not work.....

2011-09-22 Thread gajendra singh
package com.com;


import java.io.IOException;

import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import org.xmlpull.v1.XmlPullParserException;

import android.util.Log;


public class WebServicesDemo  extends Thread{

private static final String SOAP_ACTION = http://quiver.in/mis/
WriteAndroideData;

public static final String NAME_SPACE = http://quiver.in/mis/;;


public static final String URL = http://quiver.in/mis/
GPSManager.asmx;

public static final String METHOD = WriteAndroideData;

public void run(){

SoapObject request = new SoapObject(NAME_SPACE, METHOD);

request.addProperty(device_id, 13 );
request.addProperty(id, 1 );
request.addProperty(lat, 100);
request.addProperty(lon, 200 );
request.addProperty(name, gajendra );
request.addProperty(village, gwalior);
request.addProperty(mobile_no, 8982820806 );
request.addProperty(district, abc );
request.addProperty(gram_name, msc);
request.addProperty(block, c );
request.addProperty(date, 21 );
request.addProperty(time, 3);
request.addProperty(product, m);


SoapSerializationEnvelope envelope = new
SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
HttpTransportSE transport = new HttpTransportSE(URL);

try {
String TAG = null ;
Log.i(TAG , ..Send Data );
transport.call(SOAP_ACTION, envelope);
} catch (IOException e) {
e.printStackTrace();
} catch (XmlPullParserException e) {
e.printStackTrace();
}

SoapObject response = (SoapObject)envelope.bodyIn;
 }
}


-- 
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


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

2011-09-22 Thread Divyata Panchal
Hie.. to al Android Developers...


please tell me how to stop service in one class which is already
started in other class.
i need to start and stop service again n again according to my
conditions.. pl give proper syntax to stop service..
i am using::: Intent service= new Intent(this, myService.class);
   stopService(service);

but this is not working...
please guys reply as soon as possible..

-- 
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


[android-developers] Plz help. android emulator on eclipse

2010-07-19 Thread xuxu
Hi all,
I'm newbie with android and eclipse and I got this strange
thing...when ever I'm running little program that I write on the
emulator I'm getting: Hello android, program_name
for example: I'm writing a little program could udp_client and I'm
getting: Hello android, udp_client
can someone tell me if this is the way it should be?
thanks

-- 
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


[android-developers] Plz help me with integrating 'login via facebook' functionality with android app

2010-03-21 Thread wahib.t...@gmail.com
dear experts !! i am trying to implement facebook account
authenticating in my app though its in dev phase. I downloaded the
fbconnect api [http://code.google.com/p/fbconnect-android/]and tried
to run it but all i get is a blank white screen when i try to connect
to facebook. I also created a sample application and added its secret
and api key into the code. I can expect many ppl have already done it
so kindly help me out if i need to do anything else with the api code
as there are many bugs which i found reviewing the issues section of
the project.
There are no exceptions shown in the log. furthermore i also found
this link [http://www.xeomax.net/fbrocket] and executed the code. It
is working but the code is not available so its tough to use it in my
way. kindly refer any other resources.

i posted this problem many times in beginners group but no one
responded so helplessly i am doing here with hope that some1 who has
already implemented this feature can help me out.

Regards,
wahib

-- 
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

To unsubscribe from this group, send email to 
android-developers+unsubscribegooglegroups.com or reply to this email with the 
words REMOVE ME as the subject.


[android-developers] plz help me ... how to implement camera intent correctly?

2009-11-13 Thread wahib.t...@gmail.com
hi !! I am working to find out a solution to use Intent to call camera
app and then call my custom function in overridden onActivityResult().
This code actually displays camera preview and return like i want it
to but no actual snap is taken by it. There is no new image added to
the gallery. :S


   Button takePictureButton = (Button) this.findViewById
(R.id.camera);
   takePictureButton.setOnClickListener(new View.OnClickListener
() {
   public void onClick(View v) {


   ContentValues values = new ContentValues();
   values.put(Media.TITLE, IMAGE);
   values.put(Media.DISPLAY_NAME, Image Captured by Camera);
   Uri uri =
   getContentResolver().insert(Media.EXTERNAL_CONTENT_URI,
values);
   //Intent i = new Intent(android.media.action.action);
   Intent i = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
   i.putExtra(output, uri);
   startActivityForResult(i, ACTIVITY_TAKE_PICTURE_WITH_INTENT);

  This is my onActivityResult() code

 @Override
   protected void onActivityResult(int requestCode, int resultCode,
Intent data)
   {
   //super.onActivityResult(requestCode, resultCode, data);
   if (requestCode == ACTIVITY_TAKE_PICTURE_WITH_INTENT) {
   if (resultCode == RESULT_OK) {
  ///here i will call my function
   Toast.makeText(temp1.this, done !!,
Toast.LENGTH_SHORT).show();
   }
}

   }


Plz help me out what i am missing. I just used this code from a post
but being a newbie i have limited know how. so kindly explain with
suggestion.

Regards,
wahib

-- 
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


[android-developers] PLZ help !!!

2009-07-22 Thread shoume

I needed to create a high score table.
I looked everywhere but couldn't find any tutorial on that.
please help me if you could,
I looked at SQLiteDatabase but that seemed too complicated.
I am seeking something simpler and easier.  I'm trying to make a
table.just displaying data. it asks the user to insert his name and
shows his name and a given score already calculated. where it only
shows the highest 10 scores.

any advice how to go about that?

thanks in advance

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] PLZ help !!!

2009-07-22 Thread shoume

I needed to create a high score table.
I looked everywhere but couldn't find any tutorial on that.
please help me if you could,
I looked at SQLiteDatabase but that seemed too complicated.
I am seeking something simpler and easier.  I'm trying to make a
table.just displaying data. it asks the user to insert his name and
shows his name and a given score already calculated. where it only
shows the highest 10 scores.

any advice how to go about that?

thanks in advance

--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] plz help me for this question

2009-07-16 Thread tstanly

hi all,

this is a layout issue,
now my app's layout is this screenshot:
ps: my btn means ImageButton

-|
 |
 webview|
 |
-
btn|
-


now how can do this:

-|
 |
 webview|
 |
--   |
btn  |  |
-


ple help me!!
thanks!!
--~--~-~--~~~---~--~~
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
-~--~~~~--~~--~--~---



[android-developers] Plz help me getting solution for the below problem

2008-11-25 Thread sal123

Hi All,

I am beginner to android development , it would be helpful if some one
care to provide  follwing solutions


1.   Example application which can send and recieve chunk data across
the data network(GPRS)  and display the recieved data on the UI.

2.  Procedure to configure android emulator in order to enable it to
connect it to internet ( enabling browser to connect to internet ).


Thanks and regards
Suhail

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Plz Help!!

2008-04-06 Thread areslp

Boolean t = flags.get(position);
Log.e( + position, getView_flag: + 
t.booleanValue());
if (t.booleanValue()==true) {
Log.e(postion:true + position, );
flags.set(position, false);
view.reset();
return view;
}else if(t.booleanValue()==false){
Log.e(postion:false + position, );
return view;
}else{
Log.e(postion:else + position, );
return view;
}


Log.e( + position, getView_flag: + t.booleanValue()):I can get the
line's output ,it prints true(false)
But I cant get Log's output in the if-else if-else block,and there is
no error throw out,why?

Thanks in advance!!
--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---