[android-developers] Re: how to crop an image in android 2.x

2010-03-13 Thread Sydney
I got cropping to work on captured images a Motorola Droid using the built-in CropImage activity, but I first save the image to the SD card before calling the CropImage activity. However, like SOB said this does not work on all devices, such as the Nexus One. I haven't tried this, but you might wa

[android-developers] GPX and/or KML Mock Location routes not loading on Android Device (or Emulator) using DDMS

2010-04-05 Thread Sydney
Hi All, I'm having trouble using the DDMS to playback a geo-location route that I recorded using Google's My Tracks application. My Tracks is able to save a route in two formats (GPX and KML) to my SD Card, which I then save onto my development computer, and try to load into my application on my a

[android-developers] Re: How to display infowindow in map view ...

2009-08-11 Thread Sydney
I would also like to know how to get the infowindow to pop up when an Marker is touched. I have not found a way (short of doing it myself) to get the infowindow nor have I found a way to get the Left and Right arrows to let me iterate through a list of results (like when you Search for something (

[android-developers] Re: View with rounded corners and transparent background

2009-07-23 Thread Sydney
Try using On Jul 6, 5:52 pm, Ice13ill wrote: > Hello, > I wanted to create a custom view with rounded corners and a > transparent background (lets say #dd00) > > I created a color and it worked ok > For the rounded corners I found this method: > > Create a file "res/drawable/my_border.xml"

[android-developers] Re: Android Toast Duration

2009-07-27 Thread Sydney
Toast.LENGTH_LONG and Toast.LENGTH_SHORT are not numbers of milliseconds. If you print out the values you get: Toast.LENGTH_LONG = 1 Toast.LENGTH_SHORT = 0 If you give a value other than 1 or 0, it seems to default to LENGTH_SHORT. Toast.LENGTH_LONG is ~4 seconds Toast.LENGTH_SHORT is ~2.5 sec