[android-developers] myMap.setData(uri) - KML

2009-10-27 Thread qlimax
Intent myMap = new Intent(Intent.ACTION_VIEW); Uri uri = Uri.parse(geo:0,0?q=http://www.xxx.net/my.kml;); myMap.setData(uri); startActivity(Intent.createChooser(myMap, mymap2)); BUT I create my kml with dom. at the end i have my KML Document --org.w3c.dom.Document how to load this document on

[android-developers] Re: myMap.setData(uri) - KML

2009-10-28 Thread qlimax
sorry is there a way to write a Dom document to an xml file?? in normal java se there is a Transformer class, but in android no. I need that because I have to create the URI with that file. --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Re: I can't save a DOM Document into an xml file.

2009-10-28 Thread qlimax
that's S**T because I'm searching for that also! no way? :( On 9 Set, 12:06, Guijoye guij...@gmail.com wrote: Hi all, I'm using org.w3c.dom.Document to create a document and I need now towriteit into a .xmlfile. I saw tutorials refering the javax.xml.transform.Transformer package but this

[android-developers] Re: showDialog() fails to show anything

2009-10-28 Thread qlimax
have you tried Dialog pg=new ProgressDialog(this) then return pg ? just to try it... and UP this thread...:) On 28 Ott, 14:27, Greg Donald gdon...@gmail.com wrote: On Mon, Oct 26, 2009 at 9:49 PM, Greg Donald gdon...@gmail.com wrote: I'm having problems getting showDialog() to show

[android-developers] ImageView setImageURL(Uri imgUri) does not work with android.resource//... Uri

2010-02-23 Thread qlimax
I'm trying to do the following thing without success: ImageView imgView=(ImageView)findViewById(R.id.imgView); Uri imgUri=Uri.parse(android.resource:// my.package.name/+R.drawable.image); imageView.setImageURI(imgUri) I'm stuck, because the imageView just shows nothing... how I can get an Uri

[android-developers] Re: ImageView setImageURL(Uri imgUri) does not work with android.resource//... Uri

2010-02-24 Thread qlimax
anyone? On 23 Feb, 18:47, qlimax eneager...@gmail.com wrote: I'm trying to do the following thing without success: ImageView imgView=(ImageView)findViewById(R.id.imgView); Uri imgUri=Uri.parse(android.resource:// my.package.name/+R.drawable.image); imageView.setImageURI(imgUri) I'm stuck

[android-developers] Re: ImageView setImageURL(Uri imgUri) does not work with android.resource//... Uri

2010-02-24 Thread qlimax
, is a wrong approach, pls let me know... I'm open to any suggestion qlimax On 24 Feb, 14:30, Hekki kaye...@gmail.com wrote: Is there a reason why you are not using :ImageView.setImageResource(resId) In your example :imageView.setImageResource(R.drawable.image) Yahel On 24 fév, 15:23, qlimax

[android-developers] Re: ImageView setImageURL(Uri imgUri) does not work with android.resource//... Uri

2010-02-24 Thread qlimax
to a solution like this :D Good luck Yahel On 24 fév, 18:17, qlimax eneager...@gmail.com wrote: I've tried to explain my situation here:http://stackoverflow.com/questions/2307374/need-suggetsion-about-a-mi... and posed the same question here:http://stackoverflow.com/questions/2313148

[android-developers] adding 2d layer to the videoplayer

2009-12-14 Thread qlimax
hi, is possible to add a 2d layer to the default android videoplayer? and in general how? also greedy description of this modding process. or alternatives to do that? thx, bye ! -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] LocalServiceBinding.java

2009-12-17 Thread qlimax
Hi guys. I'm writing an application that use a service to play an audio file I'm watching the LocalService.java and LocalServiceBinding.java from the API DEMO In the api demo, the LocalService.java make a notification in the status bar, in my case it plays mp3 and make a notification. But that

[android-developers] Re: LocalServiceBinding.java

2009-12-17 Thread qlimax
sorry... maybe solved without binding but using startService/stopService maybe... requires tests :::))) bye On 17 Dic, 14:03, qlimax eneager...@gmail.com wrote: Hi guys. I'm writing an application that use a service to play an audio file I'm watching the LocalService.java

[android-developers] Re: LocalServiceBinding.java

2009-12-17 Thread qlimax
just have to call startService first. If the service is started via bindService, then it will live and die with the activity that called it, but if you start it with startService and THEN bind it with bindService, it should stay alive indefinitely. On Dec 17, 9:15 am, qlimax eneager...@gmail.com