[android-developers] Re: Are you submitting your app to more than just the Android Market?

2011-03-02 Thread Aaron Buckner
GetJar is very developer friendly, and not that its open yet but the gang at BloomWorlds is going to open a Family Friendly market with a Parental Advisory board etc which will vet apps etc this of course isn't for everyone but will provide some nice features hopefully (not affiliated with Bloo

Re: [android-developers] Creating a class and migrating causes NullPointerException

2011-03-02 Thread Aaron Buckner
OMG I hate it when I miss something that simple... thanks I can't believe I forgot to move the "client = new DefaultHttpClient();" Thanks again for taking the time too look that over! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To pos

[android-developers] Creating a class and migrating causes NullPointerException

2011-03-02 Thread Aaron Buckner
I'm working on an app that uses a Web API via HttpGet and it works fine when part of the onCreate section. In order to make the code more portable and visible to all the activities I thought it would be wise to create a helper class. I copied the code to a new class and now I seem to be getting a

Re: [android-developers] Re: Alert Dialog - Specified child already has a parent - on 2nd attempt

2011-02-21 Thread Aaron Buckner
I follow the concept but I always have problems converting dev.android.com documentation to real world use... can you show me some code to create an activity managed dialog or point me to an online example. I'm looking around and not finding very many examples (none that seem to work)... Thanks

Re: [android-developers] Re: Alert Dialog - Specified child already has a parent - on 2nd attempt

2011-02-21 Thread Aaron Buckner
Ok, well those helped out to a point... they helped me narrow down the line of code that is causing the problem... "alert.setView(input);" If I comment it out the dialog opens as much as I need it to, of course that also prevents the user from being able to enter any input in... which is calle

Re: [android-developers] Re: Alert Dialog - Specified child already has a parent - on 2nd attempt

2011-02-21 Thread Aaron Buckner
Its all in the main method I have, part of the onCreate. Should I put it outside the onCreate section? -- 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

[android-developers] Re: Alert Dialog - Specified child already has a parent - on 2nd attempt

2011-02-21 Thread Aaron Buckner
Can anyone give me any ideas here this is really frustrating I can't think of any other way to implement this and I have to assume the user would mess up and need to reach this dialog again. -- You received this message because you are subscribed to the Google Groups "Android Developers" group.

[android-developers] Alert Dialog - Specified child already has a parent - on 2nd attempt

2011-02-17 Thread Aaron Buckner
The following code seems to work just fine the first time its used in the app but when the user goes to hit the button that calls this Alert Dialog a second time it creates a Force Close with this as the gist of the logcat (full at the bottom): "The specified child already has a parent. You must

[android-developers] Sliding Drawer or Translate Animation?

2011-02-11 Thread Aaron Buckner
Ok I have an app requirement that seems to be a little off the beaten path, My app needs to have a button on the bottom of the screen when a user clicks on it the "drawer" should open to a specified position revealing a horizontal listview, when the user clicks on one of those items it opens anothe

[android-developers] Re: Adding a new View causing Force Close

2011-02-10 Thread Aaron Buckner
For those that may stumble upon this later I neglected to literally "include" the xml in the main views xml On Feb 10, 8:59 pm, Aaron Buckner wrote: > Nope!!! I knew I was missing something simple THANK YOU for your time! > Thats what I get for taking a couple days off

[android-developers] Re: Adding a new View causing Force Close

2011-02-10 Thread Aaron Buckner
Nope!!! I knew I was missing something simple THANK YOU for your time! Thats what I get for taking a couple days off and getting out of town... you forget the simple stuff On Feb 10, 8:49 pm, TreKing wrote: > On Thu, Feb 10, 2011 at 7:45 PM, Aaron Buckner wrote: > > The layout is con

[android-developers] Re: Adding a new View causing Force Close

2011-02-10 Thread Aaron Buckner
); final View OwnerScreen = (View) findViewById(R.id.owners_screen); HomeScreen.setVisibility(View.INVISIBLE); MyRideScreen.setVisibility(View.INVISIBLE); //OwnerScreen.setVisibility(View.INVISIBLE); On Feb 10, 8:41 pm, TreKing wrote: > On Thu, Feb 10, 2011 a

[android-developers] Re: Adding a new View causing Force Close

2011-02-10 Thread Aaron Buckner
Also when I check my R.java.id section under "gen" it shows the owners_screen id I'm not sure if that helps... it links to public static final int owners_screen=0x7f070016; in the R.java file On Feb 10, 12:50 am, TreKing wrote: > On Wed, Feb 9, 2011 at 11:42 PM, Aaron Buc

[android-developers] Re: Adding a new View causing Force Close

2011-02-10 Thread Aaron Buckner
Thanks for taking the time to look at this and help me. 1. I'm not sure what you mean/how to "step through the debugger" 2. I figured you meant that my view was not defined 3. Here is the XML layout: I've tried something as simple as this: http://schemas.android.com/apk/res/ android"

[android-developers] Re: Adding a new View causing Force Close

2011-02-09 Thread Aaron Buckner
gt; On Wed, Feb 9, 2011 at 9:44 PM, Aaron Buckner wrote: > > When adding the OwnerScreen the OwnerScreen.setVisibility(VIS/INVIS); > > causes a force close > > where the MyRideScreen setup the same does not > > OwnerScreen is null, which means it does not exist in your main

[android-developers] Adding a new View causing Force Close

2011-02-09 Thread Aaron Buckner
I basically copied an existing view part of the Java Code: ... final View MyRideScreen = (View) findViewById(R.id.myride_screen); final View OwnerScreen = (View) findViewById(R.id.owners_screen); ... When adding the OwnerScreen the OwnerScreen.setVisibility(VIS/INVIS); causes a force close where

[android-developers] Odd Animation/Layout Button "Hit Area" Problem

2011-01-24 Thread Aaron Buckner
Ok so here is the deal... I have a menu at the bottom of my apps screen that works normally hits/clicks register fine. When you select the "hide menu" button which is an arrow image the animation works fine and the menu and the hide menu button move down as they should, here is where it gets weird

[android-developers] [HELP/URGENT] Odd Animation/Layout Button "Hit Area" Problem

2011-01-24 Thread Aaron Buckner
.requestLayout(); navState = 1; return; } Which had no effect, any help would be greatly appreciated I'm lost here... Thanks Aaron Buckner -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post