[android-developers] Make the Video size play in full screen (stretch to fit width and height)

2010-05-11 Thread brian karlo gutierrez
Hello Everyone,     I have this question regarding on how to create a player in my application to play a video in fullscreen(stretch to fit width and height).     I have this in my code already and setting the layout width and height in the ui xml file to fill parent but still does not stretch

[android-developers] Need MMSH Protocol library

2010-04-27 Thread brian karlo gutierrez
Hello everyone,     Do you know any way on how to play a stream using mmsh protocol? It seems android at default cannot play mmsh streams. Any idea or inputs on how to start? Thanks, Brian -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Geocoder and AsyncTask

2010-04-15 Thread brian karlo gutierrez
Hello everyone,     I had this issue using Geocoder's function getFromLocation().  According to the docs it should be called inside a separate thread from the primary UI thread.  I did it and called it inside the doInBackground() of the AsyncTask class.  Now the issue is even I implemented it

[android-developers] System kills my service even no other resource consuming application is running

2010-03-09 Thread brian karlo gutierrez
Hello Everyone,     I just would like to ask if anyone have encountered this strange behavior with other phone models or specifically HTC Tattoo wherein I have this service running for almost 5 hrs then after sometime the system kills the service.  The phone does not restart actually nor any

Re: [android-developers] Scheduling restart of crashed service, but no call to onStart() follows

2010-03-09 Thread brian karlo gutierrez
Yah exactly...I was monitoring the service for overnight but unfortunately when the service was killed and subject for restart only the onCreate was called...onStart wasn't called.  I'm using IntentService by the way.  I was expecting the onHandleIntent() to be called right after onStart() but

[android-developers] Small screen devices cannot see my app even declared already in the manifest

2010-03-08 Thread brian karlo gutierrez
Hello everyone,     I have this problem regarding HTC Tatoo. I cannot see the app in the market using this phone but other phones can.     I have already declared inside my manifest file that it is compatible and could run in this small device but still cannot see.  Below is a snippet of my

Re: [android-developers] Re: Small screen devices cannot see my app even declared already in the manifest

2010-03-08 Thread brian karlo gutierrez
using the camera permission? If so you need to indicate that you don't need autofocus as per this page: http://developer.android.com/guide/topics/manifest/uses-feature-element.html On Mar 8, 10:10 pm, brian karlo gutierrez brikz...@yahoo.com wrote: Hello everyone,     I have this problem regarding

[android-developers] Download and Display 9 Patch Images

2010-02-03 Thread brian karlo gutierrez
Hello Everyone,     I have a question regarding 9 patch images. Is it possible to download 9 patch png files from a webserver then display it as a background of a layout while keeping the information inside the file like the stretchable pixel? I have tried using a 9 patch image coming from the

Re: [android-developers] Download and Display 9 Patch Images

2010-02-03 Thread brian karlo gutierrez
Date: Thursday, February 4, 2010, 12:33 PM I think the 9 patch images can only be used in res folder, because it only will be explained by the ADT. 2010/2/4 brian karlo gutierrez brikz...@yahoo.com Hello Everyone,     I have a question regarding 9 patch images. Is it possible to download 9

Re: [android-developers] VerifyError - how can I solve this error?

2010-01-31 Thread brian karlo gutierrez
Hello,     Im not sure the cause of your VerifyError but in my case before I have tried this when Im subclassing the MapActivity...I got this VerifyError saying that the class that extends the MapActivity lets just say MyMapActivity.class is not found. During compilation no error but during

Re: [android-developers] How do I kill a blocking thread?

2010-01-29 Thread brian karlo gutierrez
Hi I think what you mean is for example your sending an HTTP Request to a server then ur client is blocking waiting for the responde of the server so how you can stop or close the blocking state?  You can shutdown the connection of the socket actually but provided if when you send the http