[android-developers] Does not work on I1

2011-05-04 Thread Michael M
This not seem to work on I1 do you know why this is. -- 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 from this group, send email to

[android-developers] Code review request for ImageCache

2009-09-18 Thread michael m
I'm hoping I can get some opinions on my implementation of an ImageCache using SoftReferences and AsyncTask. The task of the ImageCache is to load Bitmaps as they are requested. From the outside the Bitmaps are requested using the get method which takes the Uri of the Bitmap to load, and the

[android-developers] locked up my Android device...

2009-09-11 Thread michael m
warning, long rambling description follows, I'm very confused about this bug and am not totally sure I'm doing stuff correctly... I've been able to lock the screen twice with the current implementation of the app I'm writing (MediaDroid). It's very inconsistently (2 out of about 100 runs)

[android-developers] problems purchasing my own app

2009-08-10 Thread michael m
I published my first paid for app, NoteToMe, and when I went to purchase it to for testing I got the error A server error has occurred. Retry, or cancel and return to the previous screen. I tested my credit card info by successfully purchasing another app, and I've double/triple checked my

[android-developers] multiple selections in a gridview

2009-07-27 Thread michael m
I'm trying to use the GridView class to select multiple images from a list. I've tried a number of things but haven't been able to get any results yet. I'd be much appreciated if anyone who knows how to do this could give me a couple of hints. Or let me know if it can't be done with the

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

2009-01-06 Thread michael m
Aren't the methods in the Context class specific to the files within the application private file store? I've been trying to find a way to export data out of the applications space to the sdcard, the solution above by ggcespia is the only I've found that works. The methods I tried in the

[android-developers] Re: SQLite3 sql command to show tables in a database

2009-01-06 Thread michael m
Perfect!! Thanks Marcus! On Dec 31 2008, 12:59 am, visionera gmbh visionera_andro...@yahoo.de wrote: hi michael, try this SELECT name FROM sqlite_master WHERE type = table bye marcus Von: michael m mgmait...@gmail.com An: Android Developers android

[android-developers] SQLite3 sql command to show tables in a database

2008-12-30 Thread michael m
Does anyone know if there is a SQL command for SQLite3 to show the tables in a given database for my Android application or a corresponding class that will deliver a list? I need to find out this information programatically and not through adb. I was assuming to find something in