[android-developers] Uninstall reason survey - where are the results?

2009-04-08 Thread Jesse McGrew
(No response on android-discuss, trying here instead.) I've noticed that when I uninstall applications from my G1, I'm asked to give a reason. I have an application on the market. Is there any way to see the reasons people have given for uninstalling? There's no mention of this in the developer

[android-developers] Re: How to return non-table-oriented data from a content provider

2009-03-27 Thread Jesse McGrew
nlimited # of columns. With 3, well, you can't. > > On Fri, Mar 27, 2009 at 10:35 PM, Jesse McGrew wrote: > > > On Mar 27, 7:43 am, Stoyan Damov wrote: > >> Possible Approach 5, similar to 3 - a phony table with 3 columns: > > >> 1. Name/Key/Whatever

[android-developers] Re: How to return non-table-oriented data from a content provider

2009-03-27 Thread Jesse McGrew
On Mar 27, 7:43 am, Stoyan Damov wrote: > Possible Approach 5, similar to 3 - a phony table with 3 columns: > > 1. Name/Key/Whatever > 2. Type ("enumeration") > 3. Data (string) > > The client would only need to convert the data from string to the > appropriate type. Hmm. I'm not sure what the b

[android-developers] How to return non-table-oriented data from a content provider

2009-03-27 Thread Jesse McGrew
I'm writing a content provider that returns data about game sessions. This data comes from an SQLite table. However, the client that consumes it will also want summary data: total wins, current/best winning streak, and so on. I'm not sure which approach to use. * Possible Approach 1: Do nothing,

[android-developers] Re: Extra Icons in Menu

2009-03-19 Thread Jesse McGrew
On Mar 19, 7:12 pm, Grant Kimm wrote: > Hi, > > Thanks for the reply. > > Here is my code sample. > >       >             >                 >                 >             >         >         >             >                 >                 >                 >             >        

[android-developers] Re: Extra Icons in Menu

2009-03-19 Thread Jesse McGrew
On Mar 19, 4:44 am, Grant Kimm wrote: > Hi, > > When I run my app, I see about 8 or 9 icons in the main phone menu. One > is to run the app, and the others actually run activities within the > app. > > I want there to only be one icon for users. Any ideas as to why this is > happening? > > My co

[android-developers] Re: Merchant account signup down?

2009-03-12 Thread Jesse McGrew
Still down for me too, by the way. This isn't something we're doing wrong, the system is just broken. Jesse On Mar 12, 8:09 am, jsdf wrote: > Weeks!  Wow, that's truly a testament to how little Google cares about > customer support.  As an example of how things could be done better, > look at A

[android-developers] Re: Trackball doesn't give me click events, but touch screen does

2009-03-11 Thread Jesse McGrew
Aha! Adding a call to that method fixes both the context menu problem and the click handler problem. Thanks. Jesse On Mar 11, 7:03 pm, Romain Guy wrote: > BTW did you call setItemsCanFocus(true) on your ListView? > > > > On Wed, Mar 11, 2009 at 7:01 PM, Jesse McGrew wrote: >

[android-developers] Re: Trackball doesn't give me click events, but touch screen does

2009-03-11 Thread Jesse McGrew
On Mar 11, 6:28 pm, Jesse McGrew wrote: > On Mar 11, 6:04 pm, Romain Guy wrote: > > > > I'm trying to get the same behavior as Alarm Clock, where tapping on a > > > list row brings up an activity to edit the row, and the check box can > > > only be selected

[android-developers] Re: Trackball doesn't give me click events, but touch screen does

2009-03-11 Thread Jesse McGrew
On Mar 11, 6:04 pm, Romain Guy wrote: > > I'm trying to get the same behavior as Alarm Clock, where tapping on a > > list row brings up an activity to edit the row, and the check box can > > only be selected by tapping on the check box itself. I think that > > precludes using multiple-choice mode

[android-developers] Re: Trackball doesn't give me click events, but touch screen does

2009-03-11 Thread Jesse McGrew
On Mar 11, 5:57 pm, Jesse McGrew wrote: > Thanks for your response. I'm not sure if that approach will work, > though. My ListActivity's onListItemClick() method is called when I > click on an item with the trackball, but *not* when I touch it. It looks like I can handle both

[android-developers] Re: Trackball doesn't give me click events, but touch screen does

2009-03-11 Thread Jesse McGrew
individual click listeners on the list items. > This will cause all sort of problems, like the ones you're seeing. The > main reason behind that is that ListView handles clicks/long clicks on > the items already. Instead you should use > ListView.setOnItemClickListener(). > > On

[android-developers] Re: Trackball doesn't give me click events, but touch screen does

2009-03-10 Thread Jesse McGrew
Anybody? On Mar 5, 6:54 pm, Jesse McGrew wrote: > I have a list activity that creates a header row above the data rows > from the adapter. I want to receive click events when the user selects > the header or a data row (but my data rows have check boxes in them, > so this part is t

[android-developers] Re: Initial database population from large data files, several problems

2009-03-06 Thread Jesse McGrew
On Mar 4, 11:49 pm, Justin Allen Jaynes wrote: > I'm building a dictionary application with 135,000 word entries (words > only).  My raw file must have been too large (1.5 meg), because I got > this error: > > D/asset (909): Data exceeds UNCOMPRESS_DATA_MAX (1424000 vs 1048576) > > I've searched

[android-developers] Trackball doesn't give me click events, but touch screen does

2009-03-06 Thread Jesse McGrew
I have a list activity that creates a header row above the data rows from the adapter. I want to receive click events when the user selects the header or a data row (but my data rows have check boxes in them, so this part is tricky). When I use the touch screen, I get this expected behavior: 1. T