[android-developers] Immediate Need - Android Developer

2016-08-20 Thread Marty Ballard
What is the pay for this role? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to android-developers+unsubscr...@googlegroups.com. To post to this group,

[android-developers] Re: Dex Limit workarounds- ADT or Android Studio only?

2014-12-18 Thread Marty Ballard
I've migrated to Android Studio. I received the DEX limit error there and was able to quickly move past it following the guides you mentioned in your post. On Wednesday, December 17, 2014 2:22:37 PM UTC-6, Nathan wrote: I was wondering what all the fuss was over the Dex limit, till I

[android-developers] Re: geofencing api-share geofence

2013-06-08 Thread Marty Ballard
I have an app that I'll be releasing in the next day or so that uses Geofencing, it's currently only being used for a single user and stores the Geofence data in a SQLite DB, however I believe if I were to use GCM I could store the fences where multiple users could access. I haven't done

[android-developers] Re: geofencing api-share geofence

2013-06-06 Thread Marty Ballard
Jossie, I'd be interested in this as well. The only option I know of currently is to implement GCM so the devices can sync utilizing that functionality. Marty On Thursday, June 6, 2013 2:16:30 AM UTC-5, JossieKat wrote: I looked at the site brfore. All i saw are geo fences created by the

[android-developers] Re: Simulate an incoming call from a test?

2013-06-04 Thread Marty Ballard
Here you go, I figured it worked this way as this is the same for testing sending an SMS. Launch a second emulator and get the console port number (such as 5554) from the first emulator. Click the phone app and enter that console port number and dial. On Monday, June 3, 2013 5:20:44 PM

[android-developers] Re: Update a textview from another thread

2013-05-14 Thread Marty Ballard
Another option is to pass it in a bundle and set the text based on the values passed in that bundle. On Saturday, May 11, 2013 4:56:00 PM UTC-5, Michael Leung wrote: Is it possible to Update a textview from another thread? I got a list item in list view from another fragement. -- Regards,

[android-developers] Re: SQLite Frustration

2013-05-01 Thread Marty Ballard
It appears to me that you are always inserting key_id = 0, therefore this would be a duplicate insert. I believe you should be increasing this by +1 for each insert. On Friday, April 26, 2013 11:20:20 AM UTC-5, Nathan wrote: I can not figure out what is happening here for the life of me.

[android-developers] Re: Can anybody tell me how can i disable BACK button on android?

2012-09-23 Thread Marty Ballard
Here is how I've done it in one of my apps: @Override public void onBackPressed() { Toast.makeText(this, Back button disabled, press Reset, Toast.LENGTH_LONG).show(); } On Wednesday, September 19, 2012 1:10:52 PM UTC-5, Wajiha Kanwal wrote: Can anybody tell me how can i disable BACK