Re: [android-developers] Re: Dynamically loading a .jar file at Runtime

2017-09-05 Thread Larry D
Always the idiot who will not usefully reply to the question but instead offer unsolicited and related bull under false pretenses. Where are the moderators to block those imbeciles instead of moralizing and bullying the good people providing adequate support? On Thursday, March 19, 2009 at

Re: [android-developers] Re: [Possibly SELinux] Marshmallow: new File(...) gives permission denied

2016-01-04 Thread Larry Larry
Reposted: Package information must be removed. Not my call. Well, I haven't yet - and now I have. openFileInput doesn't like path sepatators "/" in the input. If you wrote your own that returns String it will still see a path separator. getFilesDir() conveniently ignores this. This means that

Re: [android-developers] Re: [Possibly SELinux] Marshmallow: new File(...) gives permission denied

2016-01-04 Thread Larry Larry
Well, I haven't yet - and now I have. openFileInput doesn't like path sepatators "/" in the input. If you wrote your own that returns String it will still see a path separator. getFilesDir() conveniently ignores this. This means that everything has to be in the base /files/ directory, no subs

[android-developers] Re: [Possibly SELinux] Marshmallow: new File(...) gives permission denied

2016-01-04 Thread Larry Larry
Ok, this is ridiculous: SELinux basically gives NO READ ACCESS AT ALL to the app's own directory! I unzipped the zip file into its own directory inside getFilesDir(), and its still not happening. //Unzipped Test.zip containing a "Test.json". //fileName is Test.json. String

Re: [android-developers] Re: [Possibly SELinux] Marshmallow: new File(...) gives permission denied

2016-01-04 Thread Larry Larry
Answer to this found on StackOverflow: Manually copying the file into the app's own data/data/package_name/ directory on a rooted device will not work if SELinux is "enforcing" - The app must own the file by "creating" it. Giving it r permissions across the board isn't enough. No idea how

[android-developers] [Possibly SELinux] Marshmallow: new File(...) gives permission denied

2016-01-03 Thread Larry Larry
Question has been asked in StackOverflow: http://stackoverflow.com/questions/34547745/android-marshmallow-new-file-gives-permission-denied?noredirect=1#comment56837417_34547745 And xda developers: http://forum.xda-developers.com/tools/android-studio/noob-development-question-avc-t3283366

[android-developers] Re: [Possibly SELinux] Marshmallow: new File(...) gives permission denied

2016-01-03 Thread Larry Larry
PS: don't mind the zip file name shown, at this time I was testing on another zip file. Both 1136.zip and Test.zip generates the avc denied {open}. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop

[android-developers] Example of a tested project?

2014-06-11 Thread Larry Meadors
I'm looking for an example project that uses gradle with tests. Does anyone know where I might find one? Larry -- 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

Re: [android-developers] looking for HTML5 and javascript based sdk....

2014-05-11 Thread Larry Meadors
...not so much. If you're trying to decide which way to go, your best bet is to try both and see. It really depends on what you are doing. Larry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Re: Google Play services out of date Requires 3225100 but found 3136136

2014-02-24 Thread Larry Meadors
What version are you using for development? On Mon, Feb 24, 2014 at 3:37 AM, janvi jagruthi.bha...@gmail.com wrote: Any info on this??? On Friday, February 14, 2014 2:46:34 PM UTC+5:30, janvi wrote: One more info is that I have used Google-Play-services for Push Notifications[GCM] On

[android-developers] Re: Gradle and amazon libs?

2014-02-24 Thread Larry Meadors
For the next poor sucker that hits this issue. The trick for me was to add the namespace and the custom permission to the MAIN manifest (not the amazon specific one). For a working sample project: https://github.com/lmeadors/ProductFlavorsProvided Larry -- You received this message because

[android-developers] Gradle and amazon libs?

2014-02-23 Thread Larry Meadors
+= configurations.provided } But I get this error: Could not find method plus() for arguments [configuration ':provided'] on source set 'compile classpath'. I've tried 100 things, and nothing seems to work. :-/ Anyone know how to do this? Larry -- You received this message because you are subscribed to the Google

Re: [android-developers] Suggestion for next release of Android Studio

2013-12-01 Thread Larry Meadors
I don't understand what you're saying. Double-clicking a class where? When I double-click on a class in the project view, it opens in the editor with focus. Larry On Sat, Nov 30, 2013 at 7:39 PM, Phil Gibbs javabike...@gmail.com wrote: Double clicking on a class (and everything else) brings

Re: [android-developers] Android Studio is driving me nuts

2013-11-22 Thread Larry Meadors
I'm an IDEA user, so it's less maddening...but it still has it's moments. :) It doesn't do multiple projects in one window - unfortunate, but true. I think if you select the Packages view in the project pane, it'll be close to the Package Explorer view. Larry -- You received this message

[android-developers] Preventing auto-update?

2013-10-03 Thread Larry Meadors
). Is there a way to prevent that? He had to re-download the entire file, which is kind of crappy. Larry -- 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

Re: [android-developers] Preventing auto-update?

2013-10-03 Thread Larry Meadors
Heh, that's the second thing I suggested. Thanks for the affirmation. ;-) Larry On Thu, Oct 3, 2013 at 3:21 PM, TreKing treking...@gmail.com wrote: On Thu, Oct 3, 2013 at 3:52 PM, Larry Meadors larry.mead...@gmail.com wrote: Is there a way to prevent that? He had to re-download the entire

[android-developers] Re: Widevine Adaptive Streaming

2013-09-30 Thread Larry Meadors
Ahoj Honza, Yes - sorry for not posting an eventual resolution here. For me, the simple change that made it work was replacing http://; with widevine:// in the URL to stream. So instead of http://blah.com/foo.wmv;, try widevine://blah.com/foo.wmv. Larry On Mon, Sep 30, 2013 at 8:40 AM, Hoa

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread Larry Meadors
JDK installed in a directory that has spaces? Windows has issues with that sometimes. Larry -- 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

Re: [android-developers] Re: Android testing

2013-06-27 Thread Larry Meadors
Best testing strategy ever...and it's not even Friday. On Thu, Jun 27, 2013 at 6:19 AM, Piren gpi...@gmail.com wrote: release it to the public :) On Thursday, June 27, 2013 2:54:50 PM UTC+3, vani wrote: Dear All, What is the best and optimistic way to test Android applications,My

Re: [android-developers] Re: Android testing

2013-06-27 Thread Larry Meadors
All joking aside - there is a pretty slick alpha / beta release process in the store for getting your app in the hands of pre-release testers. IMO, it kicks the snot out of junk like downloading and running an app installer, or tools like testflight. Larry -- -- You received this message

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

2013-06-14 Thread Larry Meadors
enough to call it when it's supposed to. :) So I extracted the listener out of the class that used it so I could instantiate it, then tested it that way. Easy peasy. Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

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

2013-06-05 Thread Larry Meadors
That looks like they are trying to simulate an outgoing call - not an incoming call. Larry On Tue, Jun 4, 2013 at 7:33 AM, Kristopher Micinski krismicin...@gmail.com wrote: I'm not sure I understand, but... http://stackoverflow.com/questions/10784174/instrumentation-activitymonitor

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

2013-06-05 Thread Larry Meadors
I can write a test to verify that my app behaves correctly without clicking through all the steps manually (because that's labor-intensive, error-prone, and costly). Larry On Wed, Jun 5, 2013 at 3:00 AM, amro alfares amro.alfa...@gmail.com wrote: Hello from eclipse choose window open

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

2013-06-05 Thread Larry Meadors
ACTION_ANSWER instead of CALL.) I would be surprised if that doesn't work, but haven't tested it. Kris On Wed, Jun 5, 2013 at 8:54 AM, Larry Meadors larry.mead...@gmail.comwrote: This is not done from a test so it's not automated. I'm looking for a way to write an instrumentation test

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

2013-06-04 Thread Larry Meadors
that's labor-intensive, error-prone, and costly). Larry On Tue, Jun 4, 2013 at 7:06 AM, Marty Ballard marty...@gmail.com wrote: 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

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

2013-06-03 Thread Larry Meadors
I have a service that reacts to incoming calls that I'm trying to test. Is there a way to simulate an incoming call from an instrumentation test? Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] DRM Agents?

2013-05-28 Thread Larry Meadors
Is it possible to create a DRM Agent as an application component, or can they only be created as part of the OS distribution by device manufacturers? If they *can* be application components, are there any guides or hints on how to create them? Larry -- -- You received this message because you

[android-developers] Gradle build error

2013-05-28 Thread Larry Meadors
a file named about.html, I really don't want or need either of them, but can't seem to get past this. Any suggestions? Larry -- -- 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

[android-developers] Force deep sleep using adb?

2013-05-08 Thread Larry Meadors
to get to that state - is it possible to tell the device to go to sleep right away, or is it like a kid, where you just have to wait for it. Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Service onDestroy() not being called...

2013-05-03 Thread Larry Meadors
) in order to keep it alive after unbinding. As you said, I also have to stop it when appropriate (i.e., when it's not playing) as well. I think I have it working as expected now, thanks again. Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Service onDestroy() not being called...

2013-05-02 Thread Larry Meadors
? Larry -- -- 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

[android-developers] Re: HLS audio and getDuration / seekTo strangeness

2013-04-30 Thread Larry Meadors
Thanks Ian - any known workaround? Larry On Tue, Apr 30, 2013 at 10:28 AM, Ian Ni-Lewis ile...@google.com wrote: This is a known issue that will be fixed in a future version of Android. Calling prepare() unfortunately has no effect. Ian On Saturday, April 27, 2013 12:45:33 PM UTC-7, Larry

Re: [android-developers] Re: attach prolog file in Android project

2013-04-29 Thread Larry Meadors
JPL is a set of Java classes and C functions providing an interface between Java and Prolog. You'll have to port the native code to make this work. As someone who has used prolog (in the late 80s/ early 90s), why would you want to? :) Larry -- -- You received this message because you

[android-developers] HLS audio and getDuration / seekTo strangeness

2013-04-27 Thread Larry Meadors
the correct value. The unfortunate side effect is that it pays the beginning of the stream for a second or so, and then finally goes to the correct playback position. Any suggestions? Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] Re: HLS audio and getDuration / seekTo strangeness

2013-04-27 Thread Larry Meadors
doesn't work. :-/ Larry -- -- 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

Re: [android-developers] Re: HLS audio and getDuration / seekTo strangeness

2013-04-27 Thread Larry Meadors
Because downloading a 12 hour audiobook is not exactly a good user experience. Hls allows them to have the experience of having it locally without the massive download. Larry On Apr 27, 2013 9:38 PM, bob b...@coolfone.comze.com wrote: Why are you using HTTP Live Streaming for pre-recorded

Re: [android-developers] Re: Paddling error Help

2013-04-26 Thread Larry Meadors
...unless your app is being naughty. Then it may need to a paddling. On Fri, Apr 26, 2013 at 1:02 PM, bob b...@coolfone.comze.com wrote: You spelled padding wrong. It is seven letters: padding (right) paddling (wrong) Thanks. On Friday, April 26, 2013 1:56:04 PM UTC-5, boki v wrote:

Re: [android-developers] Notifications and killed app

2013-04-24 Thread Larry Meadors
from the service after stopping the service. So I was calling service.stopSelf() then notificationManager.cancelAll() in that order. That doesn't work, I had to call service.stopForeground(true). That worked. Larry -- -- You received this message because you are subscribed to the Google

Re: [android-developers] Notifications and killed app

2013-04-24 Thread Larry Meadors
TitleDetailActivity MusicPlayerActivity, it would be perfect. This'll do for 1.0, however...so close... :) Thanks for your help, guys. Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

Re: [android-developers] Notifications and killed app

2013-04-24 Thread Larry Meadors
So if the flow is main - title detail - player, do you mean the MainActivity (by the first activity)? Larry -- -- 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

Re: [android-developers] Notifications and killed app

2013-04-24 Thread Larry Meadors
activities if they weren't already there. Heh, I'm going to have to do some more research to understand what you're telling me here - I'm not sure I'm following you completely. Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Notifications and killed app

2013-04-23 Thread Larry Meadors
there is a way to clear the notification when the app is killed, but I can't seem to figure it out. Any suggestions? Larry -- -- 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

Re: [android-developers] Notifications and killed app

2013-04-23 Thread Larry Meadors
On Tue, Apr 23, 2013 at 9:10 AM, Piren gpi...@gmail.com wrote: I had the same notification issue, but i can't remember how i resolved it.. heh Now you're just teasing me. :-P Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group

Re: [android-developers] Notifications and killed app

2013-04-23 Thread Larry Meadors
notification. :-/ Larry -- -- 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

Re: [android-developers] Notifications and killed app

2013-04-23 Thread Larry Meadors
the service that it binds to, the service calls notificationManager.cancelAll(); but the notification is still present. /me goes to google more... Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] Testing apps

2013-04-23 Thread Larry Meadors
On Tue, Apr 23, 2013 at 2:38 PM, TreKing treking...@gmail.com wrote: As opposed to? https://testflightapp.com/android/ Larry -- -- 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

Re: [android-developers] Notifications and killed app

2013-04-23 Thread Larry Meadors
OK, there was a foreground service involved. I added a call to stopForeground(true) in my app when the service stops, and that seems to make it behave better. Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

[android-developers] MediaController - seek bar

2013-04-18 Thread Larry Meadors
with a tip for me here? I have a couple of ideas, I'm just not crazy about any of them... Larry -- -- 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

Re: [android-developers] Re: MediaController - seek bar

2013-04-18 Thread Larry Meadors
I'll try that...thanks! Larry -- -- 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

Re: [android-developers] Re: MediaController - seek bar

2013-04-18 Thread Larry Meadors
Worked perfectly. Thanks. Larry -- -- 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] Re: I'm missing something dumb here...

2013-03-21 Thread Larry Meadors
Thanks Piren - trying that now, will follow up with the results! Larry -- -- 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

[android-developers] Re: I'm missing something dumb here...

2013-03-21 Thread Larry Meadors
On Thu, Mar 21, 2013 at 10:49 AM, Larry Meadors larry.mead...@gmail.com wrote: Thanks Piren - trying that now, will follow up with the results! That worked absolutely perfect! You rock. :-D Larry -- -- You received this message because you are subscribed to the Google Groups Android

[android-developers] I'm missing something dumb here...

2013-03-20 Thread Larry Meadors
I'm making a grid of items that has an image and two text elements under it. I want all three elements centered horizontally, and the image to be right above the text. For some reason, the image is centered vertically and the text is at the bottom. Here's a screen shot to make that clearer:

[android-developers] Re: I'm missing something dumb here...

2013-03-20 Thread Larry Meadors
I think android:layout_below is only for relative layout...but I may try that instead. :-/ Nothing else seems to be working here... Larry On Wed, Mar 20, 2013 at 10:11 AM, John Masseria jpmasse...@gmail.comwrote: Have you considered trying to explicitly force the order of the items

Re: [android-developers] Re: Eclipse or Intellij.. what's the verdict?

2013-03-12 Thread Larry Meadors
it for close to 10 years, and I KNOW that's not true. My advice: Pick the one that sucks the least *for you* and use it for what you need to do. Larry On Tue, Mar 12, 2013 at 11:13 AM, Jason jason.poli...@gmail.com wrote: Bashing eclipse is popular because eclipse is a horrible experience, from start

Re: [android-developers] Handling SQLiteOpenHelper

2013-03-08 Thread Larry Meadors
Yes, that sounds right. I generally tie an instance to the lifecycle of the class that uses it. That assures that it is only open as long as it's needed and that it's closed when it isn't. Larry On Fri, Mar 8, 2013 at 4:16 AM, Saurav to.saurav.mukher...@gmail.comwrote: Thanks Mark, you have

Re: [android-developers] Handling SQLiteOpenHelper

2013-03-07 Thread Larry Meadors
Just be careful closing the database - if you have multiple threads sharing an instance of a single SQLiteOpenHelper, the SQLiteDatabase mDatabase isn't like a jdbc connection pool. If you close it fron one thread, it's closed for real. ...and of course, if you don't close it, it whines. Larry

Re: [android-developers] how to figure out the variables transmitted from android to local web server LAMP

2013-02-27 Thread Larry Meadors
Uh. This is a php problem that has almost nothing to do with Android. Larry On Feb 27, 2013 6:32 AM, Ines belhouchet.i...@gmail.com wrote: Hello, I have three variables that i try to send them from android to my local web server,the point *I succeed to add them into a mysql table* but i

Re: [android-developers] Avoiding the dreaded ANR background work

2013-02-25 Thread Larry Meadors
calls a presenter method that does all the async work, then the presenter calls the view (Activity) back once it's done (and passes it the data). Also, look into command services, they aren't any more complex than AsyncTask and for what you're describing, they might do what you want. Larry On Mon

Re: [android-developers] accessing data downloaded by another app

2013-02-25 Thread Larry Meadors
Just use a command service. Larry On Mon, Feb 25, 2013 at 4:25 PM, dashman erjdri...@gmail.com wrote: My app requires the use of database that's relatively large. I was thinking of creating a separate app - that downloads the files. But if one app downloads a file - can another app

[android-developers] Testing onSaveInstanceState/onRestoreInstanceState

2013-02-19 Thread Larry Meadors
and in the application it works fine - it just fails in my test. I suspect I'm doing something out of order, but googled all morning and can't find anything that seems to point me in the right direction. Any hints? Larry -- -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] IP address

2013-02-19 Thread Larry Meadors
On Tue, Feb 19, 2013 at 8:05 AM, bob b...@coolfone.comze.com wrote: Why do you say that? Because it's a ridiculously obfuscated solution to a problem with a simple one-line solution: InetAddress address = InetAddress.getByAddress(BigInteger.valueOf(actualIpAddressAsInt).toByteArray()); Larry

Re: [android-developers] IP address

2013-02-18 Thread Larry Meadors
http://stackoverflow.com/questions/1957637/java-convert-int-to-inetaddress On Mon, Feb 18, 2013 at 2:47 PM, bob b...@coolfone.comze.com wrote: I have this code to get an IP address in Android: WifiManager wifiManager = (WifiManager) getSystemService(WIFI_SERVICE); WifiInfo wifiInfo =

Re: [android-developers] IP address

2013-02-18 Thread Larry Meadors
If that gem ever shows up in one of my projects, I'll hunt you down and give you a wedgie. Larry On Mon, Feb 18, 2013 at 3:11 PM, bob b...@coolfone.comze.com wrote: I forgot… I had this code already in my other project: WifiManager wifiManager = (WifiManager) getSystemService

[android-developers] External video output (USB/HDMI/etc)

2013-01-31 Thread Larry Meadors
I've been looking for information on how to determine if a device can do this or not - is there a standard API for this or is it all device/vendor specific? Larry -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group

Re: [android-developers] External video output (USB/HDMI/etc)

2013-01-31 Thread Larry Meadors
Thanks, will do! Larry On Thu, Jan 31, 2013 at 11:47 AM, Mark Murphy mmur...@commonsware.com wrote: Prior to Android 4.2, there was no API for this. Now, you can take a look at the DisplayManager and see if it will give you the info that you need. On Thu, Jan 31, 2013 at 1:24 PM, Larry

Re: [android-developers] Re: Save Data on server

2013-01-25 Thread Larry Meadors
If you use a GET to write data, the HTTP police will spank you. GETs are for reads; POSTs (and DELETEs/PUTs for the REST purists) are for writes. :-) Larry On Fri, Jan 25, 2013 at 8:07 AM, bob b...@coolfone.comze.com wrote: Write a PHP script on the server that saves the data to a MySQL

[android-developers] Widevine Adaptive Streaming

2013-01-17 Thread Larry Meadors
I'm using the built-in DRM support for widevine video playback, and the video quality seems really poor. The same video played on an ios device or using their web player seems fine, but on android it's super blocky. Is anyone here familiar with this problem? Larry PS: Yes, I know it's

[android-developers] Re: Widevine Adaptive Streaming

2013-01-17 Thread Larry Meadors
Crap, this appears to vary by device. On a Samsung Galaxy Tab 8.9, it's perfect. This is running 3.2. On a Nexus 7, it's crap. This is running 4.1.2. On a Samsung Galaxy S2 Skyrocket running 4.0.4, it's hit and miss. Larry On Thu, Jan 17, 2013 at 5:37 AM, Larry Meadors larry.mead

Re: [android-developers] why couldn't create webservice using android?

2013-01-09 Thread Larry Meadors
are not getting the question correctly. Larry -- 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

Re: [android-developers] The type of the expression must be an array type but it resolved to JSONArray compile error

2013-01-02 Thread Larry Meadors
JSONArray isn't a java array - you'll need to do units.getJSONObject(i) instead. Larry -- 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

Re: [android-developers] android emulator

2012-12-18 Thread Larry Meadors
Really? http://lmgtfy.com/?q=android+emulatorl=1 Larry On Tue, Dec 18, 2012 at 8:18 AM, bharani kumar bharanikumariyer...@gmail.com wrote: Hi, For android application testing is there any free open source emulators . -- Regards B.S.Bharanikumar http://php-mysql-jquery.blogspot.com

Re: [android-developers] Regarding webservices

2012-12-14 Thread Larry Meadors
On Fri, Dec 14, 2012 at 12:17 PM, rambabu mareedu rambabu.mare...@gmail.com wrote: Can anyone tell me is webservices comes under android If you can't write an email, android development is likely going to crush you. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] WTH?

2012-12-12 Thread Larry Meadors
times! Larry -- 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

[android-developers] WTH?

2012-12-11 Thread Larry Meadors
book How not to handle an error ever. example. Larry -- 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

Re: [android-developers] How is everyone configuring their JUnit tests?

2012-12-10 Thread Larry Meadors
I believe that is The Android Way - you have your application in one project and your tests in another. Larry On Mon, Dec 10, 2012 at 9:14 AM, darrinps darri...@gmail.com wrote: Curious how everyone is configuring their JUnit tests. Using Eclipse Indigo, there doesn't seem to any way to store

Re: [android-developers] Re: How to update SDK Tools to revision 21?

2012-11-26 Thread Larry Meadors
Ha, don't you hate that - as soon as you post the question, you figure it out. It is Monday. :-P Larry On Mon, Nov 26, 2012 at 7:35 AM, Per-Jarle Sæther per.jarle.saet...@gmail.com wrote: Hi all Please ignore my last email I found the reload button... Best regards Per-Jarle On Mon, Nov

Re: [android-developers] Re: need suggestion for large data structure + number crunch

2012-11-13 Thread Larry Meadors
Why do this on the device - make it a web service and send the bits of data to the service where you have gobs of RAM and CPU to do the calculations. Larry On Tue, Nov 13, 2012 at 9:46 AM, Brill Pappin br...@pappin.ca wrote: Well your on a phone, so 40 megs might be unpleasant to deal

Re: [android-developers] Re: optimized way to get large data from webservice(json or xml)

2012-10-10 Thread Larry Meadors
additional data after that. Larry -- 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

Re: [android-developers] 120 checkbox

2012-10-10 Thread Larry Meadors
You'll likely need to use POST instead of GET with that many. What a terrible UI that's got to be... On Wed, Oct 10, 2012 at 9:42 AM, Rahul Kaushik rahulkaushi...@gmail.com wrote: Hello, I need to save the 120 check Box options,i don't want to use database Should i pass back them as query

Re: [android-developers] Re: 120 checkbox

2012-10-10 Thread Larry Meadors
On Wed, Oct 10, 2012 at 1:27 PM, bob b...@coolfone.comze.com wrote: Like C1 for checkbox 1. Heh, so the server side code is terrifying, too? Dang. Twisted. Larry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Hardware reccomendations: Next development laptop

2012-10-01 Thread Larry Meadors
afford. It might be a bit more expensive than a similarly equipped Windows box, but it's worth it if you value time over money. Which of the two can you make more of? :-) Larry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Hardware reccomendations: Next development laptop

2012-10-01 Thread Larry Meadors
you IE!), but that's it. I have everything else I want in OSX. Disclaimer: OSX still sucks sometimes, don't kid yourself. It's just that for me, it sucks less than the alternatives. For now. YMMV. Larry -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Hardware reccomendations: Next development laptop

2012-09-30 Thread Larry Meadors
(i.e., you value money more than time) this is a viable option. Larry -- 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

Re: [android-developers] Offline Maps Won't Calculate Route Without a Data Connection

2012-09-20 Thread Larry Meadors
...and this has what to do with development on android? On Wed, Sep 19, 2012 at 12:03 AM, David GESG drsv...@gmail.com wrote: Last weekend I planned a two hour driving trip away, where I knew that from the departure point A for one hour's driving DID HAVE mobile network access coverage, and

Re: [android-developers] Thread

2012-09-07 Thread Larry Meadors
That's probably unsafe due to the lifecycle of activities. What's the use case? Larry On Fri, Sep 7, 2012 at 10:18 AM, bob b...@coolfone.comze.com wrote: What do you normally do on Android when you spawn a thread but the thread needs to access your Activity object? Do you typically pass

Re: [android-developers] Adding Icons in ListView

2012-09-05 Thread Larry Meadors
Get used to the xml, really. You'll kick yourself if you coffee it all in Java. On Sep 4, 2012 11:37 PM, Ravin rperi...@yahoo.com wrote: Thanks for the insight Justin - yes it feels strange to use XML for me - should try getting used to it. In any event I have managed to achieve what I want

[android-developers] Open source media player?

2012-09-04 Thread Larry Meadors
needs rather than starting from MediaPlayer mp = new MediaPlayer();. Larry -- 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

Re: [android-developers] Register my Android C2DM application with Google

2012-08-31 Thread Larry Meadors
https://developers.google.com/android/c2dm/ Hint: Read the text in the big red box. Larry -- 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

Re: [android-developers] How do I append an Xml File?

2012-08-30 Thread Larry Meadors
You can even spew it all out as text when you're done. On Thu, Aug 30, 2012 at 2:29 PM, TreKing treking...@gmail.com wrote: On Thu, Aug 30, 2012 at 3:24 PM, Guilherme Bernardi gui.bernard...@gmail.com wrote: I can use DOM parser, but by DOM parser I can get the nodes? remove nodes? and

Re: [android-developers] imac g5 ppc 12,1

2012-08-30 Thread Larry Meadors
Are you sure it's worth the effort to bother with a PPC Mac? For $200US, you can pick up a refurbished PC clone and run ubuntu on it. It will work for sure and perform better. Larry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

Re: [android-developers] Re: AsyncTask - onPostExecute is not called

2012-08-29 Thread Larry Meadors
Have you run the app in a debugger? Does it get all the way through the doInBackground method? Does the Log.d(RESPOSTA do web service, response); line get logged? I ran into this yesterday. :-/ Larry -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] TWO APPS WITH SAME NAME

2012-08-27 Thread Larry Meadors
There is a BillBoard Hot 100 and a Billboard Hot 100 - case matters? Larry On Mon, Aug 27, 2012 at 11:48 AM, TreKing treking...@gmail.com wrote: On Mon, Aug 27, 2012 at 12:41 PM, vivek singh vivek.r...@gmail.com wrote: BillBoard Hot 100 I'm going to go out on a limb and assume you don't

Re: [android-developers] How to send a string using HTTP GET from an android app

2012-08-27 Thread Larry Meadors
, lmgtfy is one of my favorite web sites. I hope they guy doesn't leave, because lurking/stalking on a list like this is a great way to learn new stuff. Larry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

Re: [android-developers] networking on the main thread?

2012-08-23 Thread Larry Meadors
Or just don't do it. :) It's a terrible habit, even for testing. Async tasks are so simple, there's not really a good excuse for it. Larry On Thu, Aug 23, 2012 at 9:12 AM, Raghav Sood raghavs...@gmail.com wrote: Set your build target to something below Honeycomb. thanks -- Raghav Sood

Re: [android-developers] Best Practices for many calls to API

2012-08-23 Thread Larry Meadors
(this).execute(query); Then in the onPostExecute of the task, I do this: protected void onPostExecute(LinkedHashMapString, ListContentListItem results) { if(null != listener){ listener.onSearchResults(results); } } Larry On Thu, Aug 23, 2012 at 10:53 AM, Christian Palomares

Re: [android-developers] Best Practices for many calls to API

2012-08-23 Thread Larry Meadors
Larry On Thu, Aug 23, 2012 at 12:17 PM, TreKing treking...@gmail.com wrote: On Thu, Aug 23, 2012 at 11:53 AM, Christian Palomares (ShinjiDev) palomare...@gmail.com wrote: Or maybe a best practice for an Android app which needs to make too many API requests??? This is really going to depend

Re: [android-developers] Securize applications

2012-08-23 Thread Larry Meadors
On Thu, Aug 23, 2012 at 1:35 PM, TreKing treking...@gmail.com wrote: I'm not entirely sure what you're asking, but I'll say no. +1 on both counts. -- 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] How do others handle action bar tabs that go off screen?

2012-08-18 Thread Larry Meadors
if you scroll over a bit: - https://img.skitch.com/20120818-gumrbb811x59xjd5hqn2h3kgqn.png I guess when they touch Like this it scrolls over and Settings (the last tab) becomes available, but I'm looking for a simpler way for users to discover that tab. Larry -- You received this message because

Re: [android-developers] source download time

2012-08-13 Thread Larry Meadors
Depends on your net connection, not your CPU. :) Larry On Mon, Aug 13, 2012 at 3:17 PM, bob b...@coolfone.comze.com wrote: Anyone know how long it typically takes to get the Android source code (say on a new Macbook Pro)? I did a repo sync, and it's sure taking it's time. -- You

  1   2   >