[android-developers] EOFException on Galaxy Nexus

2011-12-12 Thread freezy
;s really quite bothersome, the app has 100k+ installations and the problem does only seem to occur on the Galaxy Nexus. Any suggestions, hints or comments would be really appreciated. Cheers, -freezy. [1] https://github.com/freezy/android-xbmcremote/blob/master/src/org/xbmc/httpapi/Connecti

[android-developers] EditText clipping in TableRow

2010-11-01 Thread freezy
Hi folks, I've spent quite some time on this and I can't wrap my fingers around it. Whatever I try, the EditText view in the TableRow is either clipped (attached screenshot), or, if I set shrinkColumns to either 0 or 1, the label text disappears (and the EditText view takes up the whole width). My

Re: [android-developers] Layout resource: FWVGA vs. WVGA

2010-02-21 Thread freezy
on't really have a layout > manager that can do "include this view if there is space" stuff), but that's > not hard to do. > > > On Sat, Feb 20, 2010 at 4:24 PM, freezy wrote: > >> Thanks for the fast reply Dianne. >> >> I think I understo

Re: [android-developers] Layout resource: FWVGA vs. WVGA

2010-02-20 Thread freezy
UI to adjust for the exact space > they have available. > > On Sat, Feb 20, 2010 at 3:51 PM, freezy wrote: > >> Hello there, >> >> This seems like a simple problem to me, but I can't figure it out. I have >> a fullscreen layout that displays differently

[android-developers] Layout resource: FWVGA vs. WVGA

2010-02-20 Thread freezy
Hello there, This seems like a simple problem to me, but I can't figure it out. I have a fullscreen layout that displays differently if the screen is taller (854 instead of 800 pixels). I've tried putting the xml into layout-notlong-hdpiand layout-long-dpi respectively, but both my WVGA and FWVGA

Re: [android-developers] Re: ActivityThread.ContextCleanupInfo leaking memory?

2009-12-17 Thread freezy
progress diagnosing, debugging and fixing this sort of > issue. I'm still trying to fix what looks like memory leak in my > app. All I have succeeded in doing is reducing the total memory used, > thereby making the bug dramatically less noticeable. > > Thanks, > -Matt Kann

Re: [android-developers] Please help! mkdirs() on sdcard fails silently, no idea what is the problem.

2009-12-15 Thread freezy
You probably need to add: to your manifest.xml. They added that in 1.6 I think. On Tue, Dec 15, 2009 at 1:50 PM, Agus wrote: > Hi all, > > My app suddenly could not create a directory on sdcard using mkdirs(), it > was working fine before. > As the method throws no exception, I have no ide

[android-developers] Menu items on child PreferenceScreen

2009-12-14 Thread freezy
Hello, I'm trying to add a menu to a PreferenceScreen. I have extended PreferenceActivity which loads my settings tree from preferences.xml. My activity overloads onCreateOptionsMenu and onMenuItemSelected. However, the resulting menus are only visible at the root node, but not on any other child

[android-developers] Memory usage problem - leak?

2009-12-04 Thread freezy
Hello, In my app, I'm fetching data via HTTP and use the response string to create an ArrayList of objects. So what I'm doing once I get the response is: String[] fields = response.split(""); and use the field[] values like this: ArrayList movies = new ArrayList(); for (int row = 1; row < field

Re: [android-developers] Multiple screen size problems

2009-11-10 Thread freezy
ng to be a problem size-wise). Then one last question. Is the placeholder solution where only one folder contains the real bitmaps and the other .xml files pointing to it going to be a problem performance-wise? On Wed, Nov 11, 2009 at 2:17 AM, Dianne Hackborn wrote: > On Tue, Nov 10, 2009 at

Re: [android-developers] Multiple screen size problems

2009-11-10 Thread freezy
On Wed, Nov 11, 2009 at 1:48 AM, Mark Murphy wrote: > There was an extensive thread on here last week(?) on blending > multiple-screen-size and Android 1.5 support. I don't have a link handy > and don't have time to look it up right now, but I think by the end > there was a hint of a resolution (p

[android-developers] Multiple screen size problems

2009-11-10 Thread freezy
rces by screen width in pixels (still talking about bitmaps here). Small for <=240px, medium for <=320px and large for the rest. That's because layouts are typically based on screen width and less on the height. Am I borderline trolling or are these issues others encountered as well? Any f

[android-developers] Performance on scrolling images in GridView

2009-11-09 Thread freezy
Hello everyone, I have implemented a view where the user can scroll through several hundred CD covers, which are in a GridView of three columns at 100x100 each. There is nothing else displayed, just the images one next to each other. The bitmaps are cached using a HashMap>. Cached images are alrea