[android-developers] Install .apk without User action

2011-08-01 Thread Mahavir Jain
Hi, I have one requirement of installing the apk without user intervention. I know there is very straight forward way to install the apk programmatically but that requires the user action. I want the way where user action is not required and that will happen in background. It is required

[android-developers] Paypal using Webview

2011-06-24 Thread Mahavir Jain
Hi, I want to know if i can integrate the paypal without using paypal library for android. (May be using webview)? Can anyone throw some light on this? I tried to find but didn't got any proper point to start with. Thanks in advance. Mahavir -- You received this message because you are

[android-developers] Re: Network operation every half sec.

2011-05-29 Thread Mahavir Jain
Anyone out there who had handled such type of scenarios previously? Regards, Mahavir On Sun, May 29, 2011 at 7:51 AM, Mahavir Jain vir.j...@gmail.com wrote: Hi, I want to make network operation in every half sec and depending on data, i want to update the ListView continuously. Following

[android-developers] Network operation every half sec.

2011-05-28 Thread Mahavir Jain
in advance. Regards, Mahavir Jain -- 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

[android-developers] Android 1.5: Service

2011-04-16 Thread Mahavir Jain
Hi, This may be very basic question but I really cannot find any proper solution for this. I was developing app (which have service) on Android 2.2. Then I realize that I should also make it compatible to Android 1.5. But for android 1.5, onStartCommand() method was not there and instead

Re: [android-developers] Android 1.5: Service

2011-04-16 Thread Mahavir Jain
On Sat, Apr 16, 2011 at 12:38 PM, Mahavir Jain vir.j...@gmail.com wrote: Hi, This may be very basic question but I really cannot find any proper solution for this. I was developing app (which have service) on Android 2.2. Then I realize that I should also make it compatible to Android

Re: [android-developers] Facebook and twitter integration

2011-04-16 Thread Mahavir Jain
For Facebook, You will have to login through the FB dialog box but you can post the content through Graph API.. Checkout http://developers.facebook.com/docs/reference/api/ For FB SDK visit http://developers.facebook.com/docs/sdks/ Regards, Mahavir On Sat, Apr 16, 2011 at 11:29 AM, Laxmi Verma

[android-developers] AdWhirl: Ads not getting displayed.

2011-04-15 Thread Mahavir Jain
I really having trouble in displaying Ads through AdWhirl. Following is the code: AdWhirlTargeting.setTestMode(true); AdWhirlAdapter.setGoogleAdSenseAppName(APP_NAME); AdWhirlAdapter.setGoogleAdSenseCompanyName(COMPANY_NAME); final DisplayMetrics

Re: [android-developers] Re: Continuously running service.

2011-04-06 Thread Mahavir Jain
Yes.. I am thinking of that approach only.. Thanks to all. Mahavir On Tue, Apr 5, 2011 at 10:05 PM, Nick Kulikaev nkulik...@gmail.com wrote: Did you consider a bit different approach and use alarm manager to wake up your app after regular interval? If you only need to send device location

[android-developers] Continuously running service.

2011-04-05 Thread Mahavir Jain
, Mahavir Jain -- 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

Re: [android-developers] Re: Continuously running service.

2011-04-05 Thread Mahavir Jain
Positively and productively, use of this application is to monitor the kids action by parent or to track the sales man or employee (who is daily on field/site) action.. Some may make the misuse of such application. And there are many such spy applications in android market. But my question is

Re: [android-developers] PendingIntent, Service and AsyncTask.

2011-03-19 Thread Mahavir Jain
=android.appwidget.provider android:resource=@xml/widget_provider/ /receiver service android:name=.GetPostService/service Thanks for giving time. Regards, Mahavir On Sat, Mar 19, 2011 at 4:43 PM, Kostya Vasilyev kmans...@gmail.com wrote: 19.03.2011 13:57, Mahavir

Re: [android-developers] PendingIntent, Service and AsyncTask.

2011-03-19 Thread Mahavir Jain
, Mahavir Jain пишет: No, I am not calling from onReceive() method of app-widget. I will tell you step-by-step what I am doing: 1) There is my configuration Activity of my AppWidget class which perform the FB authentication and then retrieves the wall post using FBQueryAsyncTask. It do

Re: [android-developers] Result from Activity to Appwidget.

2011-03-16 Thread Mahavir Jain
Thanks.. It works.. On Tue, Mar 15, 2011 at 9:18 PM, Mark Murphy mmur...@commonsware.comwrote: On Tue, Mar 15, 2011 at 11:25 AM, Mahavir Jain vir.j...@gmail.com wrote: Hi, When we launch child activity from parent activity then we get the result of child activity in onActivityResult

[android-developers] Result from Activity to Appwidget.

2011-03-15 Thread Mahavir Jain
Hi, When we launch child activity from parent activity then we get the result of child activity in onActivityResult() method. Likewise if I launched some activity using PendingIntent from my AppWidget. Activity perform some network operation, get the result. I want to send the result to my

[android-developers] Re: Appwidget onDisabled not called.

2011-03-14 Thread Mahavir Jain
Solved.. 1) Reset the emulator with following command: emulator -avd -TestDevice -wipe-data This clears all the AppWidget that were in the memory. 2) Next followed the following tip from Android docs to avoid the above thing from happening: *Tip:* When your configuration Activity first opens,

Re: [android-developers] Re: ProgressDialog not showing

2011-03-14 Thread Mahavir Jain
cannot say without looking at code.. But have you used Handler to pass the messages.. I think u may be missing handler.. Regards, Mahavir On Tue, Mar 15, 2011 at 9:03 AM, David Williams dwilli...@dtw-consulting.com wrote: Well, I've had some success with this, but I must be doing

Re: [android-developers] About Android Application Development

2011-03-14 Thread Mahavir Jain
You can do this in following way: 1) Open command prompt. 2) navigate to the android-sdk-path/platform-tools 3) run adb logcat command 4) In eclipse, run the application in debug mode. Regards, Mahavir On Tue, Mar 15, 2011 at 9:26 AM, kajal patil patil.kaja...@gmail.comwrote: Hi all,.