Re: [android-developers] OutOfMemoryError

2011-09-05 Thread NWD Sports
The AVD Manager correlates the amount of storage on the device to the amount of RAM. From: TreKing Sent: Sunday, September 04, 2011 10:35 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] OutOfMemoryError On Sun, Sep 4, 2011 at 9:18 PM, NWD Sports nwdspo

Re: [android-developers] OutOfMemoryError

2011-09-05 Thread NWD Sports
Subject: Re: [android-developers] OutOfMemoryError On Mon, Sep 5, 2011 at 12:30 PM, NWD Sports nwdspo...@hotmail.com wrote: The AVD Manager correlates the amount of storage on the device to the amount of RAM. It does? I see a section for SD Card size and a section for Hardware, one of which

Re: [android-developers] Re: Advice Wanted: Common Authentication App for Suite

2011-09-05 Thread NWD Sports
Try http://www.parse.com. They have a login application you can integrate into your existing apps. Integrating a WCF service into an Android application is a nightmare due to the fact that it isn’t meant for mobile platforms at all. From: Greg Deward Sent: Monday, September 05, 2011 11:47 AM

Re: [android-developers] locking app: How I know when an application is about to begin.

2011-09-05 Thread NWD Sports
The only way to do that would be to access the activity stack and block an application from gaining resources. The Android OS would block anything of the sort so you would have to do a LOT of work to fool Android and let your app control the stack. Plus I don’t even think there is a permission

Re: [android-developers] Re: locking app: How I know when an application is about to begin.

2011-09-05 Thread NWD Sports
You can do the login part with Parse. After you request a beta invite, it’s super simple to set up and you get a login and backend for your app absolutely free. It’s one of the best 3rd part services I’ve used for Android. From: ngbl Sent: Monday, September 05, 2011 5:12 PM To: Android

Re: [android-developers] Re: locking app: How I know when an application is about to begin.

2011-09-05 Thread NWD Sports
Sorry I thought you wanted login. To know when an app is touched you’re going to need to tombstone it first. Then I would try setting up a resource listener to check the available resources. If an app is launched, the available resources would decrease, and the your app would then do whatever

[android-developers] Error starting app. Must force a close

2011-09-05 Thread NWD Sports
I have an app that I created that worked perfectly whenever I debugged it. Now whenever I try to run it, I get an error saying “unexpected error com.myPackageName.app could not be started.” the only option I get is to force a close of the app. Does anyone know what is wrong? Nicholas L. – NWD

Re: [android-developers] OutOfMemoryError

2011-09-04 Thread NWD Sports
Yes. Go to the AVD manager and find the virtual device you use to debug on. Set the SD card size to a higher value. you shouldn't run into the problem again. Nicholas L. - NWD Sports.com Co-Founder -Original Message- From: bob Sent: Friday, September 02, 2011 7:43 PM To: Android

Re: [android-developers] Re: Limiting installs of licensed app to number of devices

2011-09-04 Thread NWD Sports
Try www.parse.com. I have used some of their services and I believe there is a way to integrate licensing. I am not promising anything as this may be the wrong service. If you can’t find anything let me know and I will try and find the right service I used. Nicholas L. - NWD Sports.com

Re: [android-developers] GridView shows only one row with layout_height=WRAP_CONTENT

2011-09-04 Thread NWD Sports
If you want to see all of the rows you need to set layout_height=fill_parent not layout_width=fill_parent and layout_height=wrap_content. It won't be able to show all the rows though unless you make them all really small anyway depending on the number of cells you have. If you have a lot of

Re: [android-developers] OutOfMemoryError

2011-09-04 Thread NWD Sports
on an Android Virtual Device. From: TreKing Sent: Sunday, September 04, 2011 4:21 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] OutOfMemoryError On Fri, Sep 2, 2011 at 6:55 PM, NWD Sports nwdspo...@hotmail.com wrote: Yes. Go to the AVD manager and find the virtual