[android-beginners] Re: without Absolutelayout, how to put widget on arbitary coordinate

2009-12-14 Thread xinit
Hi, Try using drawdroid.org GUI designer. absoluteLayout maybe deprecated but its still supported so may work if you want to target a specific device. Rgds Gerard On Dec 10, 1:46 am, Shawn Field banxia...@gmail.com wrote: Hi All, Since the absolutelayout is deprecated, are there any way to

[android-beginners] Problem calling openStream() FileNotFoundException

2009-06-12 Thread xinit
Hello I am starting Android and am using SDK 1.5 r2 and hope someone can suggest to me where problem could lie. The following code does two simple things, Create URL object and then return InputStream by using openStream(). When I call openStream() I get a io.FileNotFoundException. Here is

[android-beginners] Re: Problem calling openStream() FileNotFoundException

2009-06-12 Thread xinit
...@commonsware.com wrote: xinit wrote: Hello I am starting Android and am using SDK 1.5 r2 and hope someone can suggest to me where problem could lie. The following code does two simple things, Create URL object and then return InputStream by using openStream(). When I call openStream() I get

[android-beginners] onListItemClick() does not work if I extend ArrayAdapter

2009-06-08 Thread xinit
Hi, I am a bit puzzled, because it seems that if I extend ArrayAdapter then onListItemClick will not fire. For example: //init 2 arrays that I will parse into my own ArrayAdapter that String [] Artist = {test 1, test 2, test 3, test 4, test 5}; String [] Song = {test 1, test 2, test 3, test

[android-beginners] Re: onListItemClick() does not work if I extend ArrayAdapter

2009-06-08 Thread xinit
Thank you !!! Yes that was my mistake. On Jun 8, 7:01 pm, Romain Guy romain...@google.com wrote: It has nothing to do with extending ArrayAdapter. It must be because your list items contain focusable elements. On Mon, Jun 8, 2009 at 10:04 AM, xinitgerard.pa...@gmail.com wrote: Hi,

[android-beginners] Bug in the MediaStore Content Provider ?

2009-06-03 Thread xinit
Hello My mp3 application is using the MediaStore content provider and I noticed strange behaviour that is even reproducible on the native android mp3 player. 1) Start emulator with SD card and some songs already on it 2) Start native mp3 player 3) See the songs that you have 4) Now push a new

[android-beginners] ID3 Tags

2009-03-14 Thread xinit
Hello I am looking into Media API's for playing music on Android. Can someone please help me to explain how I can extract ID3 information from an MP3 File ? I think the android.provider.MediaStore provides the API's but I cant figure out how to use these API's. Does anyone know of some examples