[android-developers] Re: notifyDataSetInvalidated does *not* reset scroll position

2009-12-06 Thread ggcespia
Hello - does anyone have a work around for this 'new' behavior. The idea would be to reset the scroll position like notifyDataSetInvalidated() used to do... On Nov 23, 6:02 pm, ggcespia g...@boopsie.com wrote: In the 1.5 OS, the notifyDataSetInvalidated() not only invalidated the data source

[android-developers] EditText won't accept first keys typed

2009-12-06 Thread ggcespia
I have a simple Activity with a LinearLayout with an EditText and a ListView in it. When the application launches, the EditText box is higlighted and it receives the onFocusChanged(true,..) event. However, when I tap in the EditText and the virtual keyboard comes up, the EditText does not 'eat'

[android-developers] notifyDataSetInvalidated does *not* reset scroll position

2009-11-23 Thread ggcespia
In the 1.5 OS, the notifyDataSetInvalidated() not only invalidated the data source, but also reset the scroll position to the 'top' of the listview - so if you then called notifyDataSetChanged(), the ListView redrew with the new data *and* positioned the listview at the top. On the DROID in OS

[android-developers] Re: How to hide user dictionary? or suggested words on keyboard

2009-07-08 Thread ggcespia
Our entire product is geared around auto-complete, so the suggested words are useless in all of our applications - of which we are shipping about 40 apps at the moment. Do you know of a way to disable this? Here is a sample video of our app structure:

[android-developers] File permissions for world read/write

2009-01-03 Thread ggcespia
I'm trying to create file at /sdcard/foobar.tmp from one package that needs to be readable by another package. This works fine on the emulator. However, on the G1, if I create the file in package A, then try to read it in package B, the request fails - even tho both packages are signed by the

[android-developers] Re: File permissions for world read/write

2009-01-03 Thread ggcespia
problem solved. package B had a typo in the file name. works fine now. On Jan 3, 9:02 pm, ggcespia g...@boopsie.com wrote: I'm trying to create file at /sdcard/foobar.tmp from one package that needs to be readable by another package.  This works fine on the emulator. However, on the G1

[android-developers] removeGroup broken?

2008-09-25 Thread ggcespia
In the onPrepareOptionsMenu, we call: menu.removeGroup(Menu.CATEGORY_ALTERNATIVE); then, we add items to the Menu.CATEGORY_ALTERNATIVE group like this: menu.add(Menu.CATEGORY_ALTERNATIVE, 200 + ix, ix, sText); I track the calls in the debugger and see that the removeGroup is called. It