[android-developers] Re: New Android Book: Professional Android Application Development

2008-11-24 Thread Thustle
Congratulations Reto. I've pre-ordered the book, and I'm sure it'll be a big help. Amazon UK is still saying I'll have to wait while 10th Dec though :( --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Develo

[android-developers] Re: Netbeans

2008-11-20 Thread Thustle
I've not tried it yet... http://kenai.com/projects/nbandroid/pages/Install On 20 Nov, 14:08, moa <[EMAIL PROTECTED]> wrote: > Does anyone know what the current state is for development with the > netbeans ide? --~--~-~--~~~---~--~~ You received this message becaus

[android-developers] Re: Problem with ContentResolver

2008-11-13 Thread Thustle
tore.Video URI. As I see the only difference, that the mp3s > stored as 3gp, but works perfectly. > > Br, > Ernest > > On Nov 11, 12:29 pm, Thustle <[EMAIL PROTECTED]> wrote: > > > I am getting exactly the same problem. I've added > > TITLE,TRACK,MIME

[android-developers] Re: Downloading File

2008-11-12 Thread Thustle
Faisal, You should be able to save the data retrieved from the URL connection to a FileOutputStream. e.g: FileOutputStream out = null; InputStream stream = null; File temp = null; try { long prod = 0l; URL url = new URL(urlP

[android-developers] Re: Problem with ContentResolver

2008-11-11 Thread Thustle
I am getting exactly the same problem. I've added TITLE,TRACK,MIME_TYPE,SIZE,ARTIST,DATE_ADDED and DISPLAY_NAME to the list of content values when trying to create the record, but it still returns null and I still get the android.database.sqlite.SQLiteConstraintException: error code 19 error. E