Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-01 Thread mehedi hasan khan
Here are some of the points I am plotting: "latitude":"30.2782345","longitude":"-82.1603470" "latitude":"30.2768497","longitude":"-82.1673126" "latitude":"30.2713966","longitude":"-82.1601944" "latitude":"30.2767563","longitude":"-82.1324768" "latitude":"30.2897949","longitude":"-82.1278839" "latit

[android-developers] Query regarding unbounded service

2012-06-01 Thread Bhavin
Dear Sir, in my application,i have 24 Buttons [12 group of Two [12 * 2], 1 for SET & Other for Reset]. - [Group 1] I am having requirem

[android-developers] Re: Invoking a web service created in java

2012-06-01 Thread G. Blake Meike
This should be fairly easy to work out. I think you need two things: 1) You need to have the Ajax generated code, all the libraries that the generated code depends on, and all of the libraries that those libraries depend on, and so on until there are no unresolved symbols. 2) All of the stuff

[android-developers] Re: ApiDemos/OS/Sensors application canvas drawings blurred when built with SDK level 15

2012-06-01 Thread greg
Thanks Richard! I took your suggestion and started drawing those circles to the bitmap (via Canvas "cavas") that eventually gets drawn to the onDraw canvas. I'm glad you solved the mystery ... I was starting to think I had dropped my phone one time too many. :*) - Greg On Friday, June 1, 201

[android-developers] Re: config monkeyrunner in eclipse in ubuntu

2012-06-01 Thread Roger Li
Sorry, this is caused by my mistake, there is a typo in the script file. 在 2012年6月2日星期六UTC+8上午12时28分01秒,Roger Li写道: > > Hi guys, > > I followed the instructions in > http://dtmilano.blogspot.com/2011/03/using-android-monkeyrunner-from-eclipse.html > to > config monkeyrunner in my ubuntu env. >

[android-developers] Re: Invoking a web service created in java

2012-06-01 Thread Bunty
No. I have got Axis.jar in my android project build path. the same thing when i do in java project, it works excellently. But in android project it does not. Compilation error: The type java.rmi.RemoteException cannot be resolved. It is indirectly referenced from required .class files and many m

Re: [android-developers] Invoking a web service created in java

2012-06-01 Thread James Black
What kind of errors are you getting? It may be that you are missing a library, perhaps. On Fri, Jun 1, 2012 at 11:27 PM, Bunty wrote: > Hi all, > > I need to invoke a web service from android app. I have the wsdl file > of a web service created in java, i don't have the source code of the > sam

[android-developers] Invoking a web service created in java

2012-06-01 Thread Bunty
Hi all, I need to invoke a web service from android app. I have the wsdl file of a web service created in java, i don't have the source code of the same. In java, i use the "Generate Client" option to generate the files from a wsdl and then invoke the web service via my java app using Axis.jar.

Re: [android-developers] Why can't someone at Google answer this question????????????????????????????????????????????????????????????

2012-06-01 Thread Jim Graham
On Thu, May 31, 2012 at 11:23:59PM -0700, Jim Morris wrote: > There is nobody to talk to at Google > > I thought Google Android people are supposed to be watching this > forum! First, fix your keyboard. The exclamation point and questio

Re: [android-developers] Svg to hdpi, mdpi, ldpi

2012-06-01 Thread Dianne Hackborn
If you are just blindly scaling images, it is worth thinking about whether it is worth including them as separate densities. If you don't provide the appropriate density, Android will at the point of loading the drawable generally scale it to match the density it needs. So if you do things right,

Re: [android-developers] Svg to hdpi, mdpi, ldpi

2012-06-01 Thread Fred Niggle
If your running Ubuntu there is a magic little program in the software center called Phatch which will batch edit images - simply start with a large hi-res version of the icon, and run phatch with the actions set as you need - it saves a lot of time. On 1 June 2012 23:37, Kostya Vasilyev wrote:

[android-developers] Re: Using custom Map image in MapView

2012-06-01 Thread lbendlin
a brute force method would be to load your picture as an overlay. You could also specify a wrong Google Map key to avoid downloading their tiles. On Tuesday, April 3, 2012 9:15:24 AM UTC-4, kaptan komando wrote: > > Hi, > > I have a question about Mapview. I have an image which is a map of > s

Re: [android-developers] Svg to hdpi, mdpi, ldpi

2012-06-01 Thread Kostya Vasilyev
On 06/02/2012 02:31 AM, Jeremy Villalobos wrote: It would be nice to have a folder for svg's on the Android project (Eclipse), and have a tool that automatically creates the icons for each screen based on the svg provided by the designer. On build, the plugin creates the png's from the svg's,

[android-developers] Re: ApiDemos/OS/Sensors application canvas drawings blurred when built with SDK level 15

2012-06-01 Thread RichardC
It's something to do with hardware acceleration, changing AndroidManifest.xml (see below) to disable it just for the Sensors Activity fixes the drawing It looks like the hardware accelerated canvas is anti-aliasing the the drawing of the 3 dials as they are drawn directly onto the Can

[android-developers] Svg to hdpi, mdpi, ldpi

2012-06-01 Thread Jeremy Villalobos
I seems that no manner how minimalist I am with my app, I always find new icons, pictures, menus that need to be added to my projects. However, given all the screen that I have to support with Android, it is a little tedious to create one icon for each screen resolution. I see the action I do

Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-01 Thread TreKing
On Fri, Jun 1, 2012 at 2:37 PM, mehedi hasan khan wrote: > I've zoomed it manually and searched for the pins.still can't see any > other pin than the source and the last added one.Zoomed the map as far as > the zoom controlls allow.I'll recheck if the points are accurate. Next debug step: re

[android-developers] Re: ApiDemos/OS/Sensors application canvas drawings blurred when built with SDK level 15

2012-06-01 Thread RichardC
Can replicate what your seeing on 4.0.3. In code to draw the 3 graphs and sensors: first the 3 line graphs are drawn onto a bitmap which is then drawn onto the canvas then the canvas is then scaled and the 3 dials are drawn directly onto the canvas If I modify the code to draw the 3 dials o

[android-developers] Re: Theory: how to choose among button press techniques?

2012-06-01 Thread dev0708
Mark: Thanks for your time and clarity. On Friday, June 1, 2012 5:16:09 PM UTC-4, dev0708 wrote: > > I’ve observed two ways to handle a button press: #1 and #2 below. > - Can anyone explain the situations where I should use one or another? > - What is the proper terminology to describe the two t

Re: [android-developers] Theory: how to choose among button press techniques?

2012-06-01 Thread Mark Murphy
On Fri, Jun 1, 2012 at 5:16 PM, dev0708 wrote: > I’ve observed two ways to handle a button press: #1 and #2 below. > - Can anyone explain the situations where I should use one or another? You would use #2 if: - you are deploying to Android 1.5 (or earlier), where android:onClick did not exist, o

[android-developers] Theory: how to choose among button press techniques?

2012-06-01 Thread dev0708
I’ve observed two ways to handle a button press: #1 and #2 below. - Can anyone explain the situations where I should use one or another? - What is the proper terminology to describe the two techniques? - Are there more ways to handle a button press? Much thanks. 1. Set event handler in Main.

Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-01 Thread James Black
Do you use modified latitude and longitude coordinates? Can you give an example of what points you are plotting to? On Jun 1, 2012 3:37 PM, "mehedi hasan khan" wrote: > I've zoomed it manually and searched for the pins.still can't see any > other pin than the source and the last added one.Z

Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-01 Thread mehedi hasan khan
I've zoomed it manually and searched for the pins.still can't see any other pin than the source and the last added one.Zoomed the map as far as the zoom controlls allow.I'll recheck if the points are accurate. On Sat, Jun 2, 2012 at 12:13 AM, TreKing wrote: > On Fri, Jun 1, 2012 at 12:26 PM,

Re: [android-developers] AwesomePlayer - on video lag update

2012-06-01 Thread Fred Niggle
What format is the video? Was it a recording from your phone, is it transcoded from another format. Does it play ok in other apps and other phones. More information is needed so we can fault/bug trace. (source/logcat/etc) On 1 June 2012 14:39, bob wrote: > AwesomePlayer isn't but the movie play

[android-developers] ApiDemos/OS/Sensors application canvas drawings blurred when built with SDK level 15

2012-06-01 Thread greg
Anyone else getting blurred circles in the ApiDemos/OS/Sensors application? The three circles are supposed to display the current orientation but appear as blurry clouds in the ApiDemos application built with SDK level 15 (OS 4.0.4). I've asked the same question, with screenshots, at http://s

Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-01 Thread TreKing
On Fri, Jun 1, 2012 at 12:26 PM, mehedi hasan khan wrote: > will u plz explain? > You know the word is spelled "please", right? The 'z' doesn't even make sense ... :-) Sorry, pet peeve ... anyway ... > I've used mapView.getController().zoomToSpan(sourcemarker.getLatSpanE6(), > sourcemarker.ge

Re: [android-developers] Adding markers with different drawables on google map in android

2012-06-01 Thread mehedi hasan khan
will u plz explain? I've used mapView.getController().zoomToSpan(sourcemarker.getLatSpanE6(), sourcemarker.getLonSpanE6()); won't that do the zooming? On Fri, Jun 1, 2012 at 12:55 PM, TreKing wrote: > On Fri, Jun 1, 2012 at 12:55 AM, Mehedi wrote: > >> The items collection is correctI am p

[android-developers] Issuing refund to users after 15-minute window

2012-06-01 Thread vistaman
If I issue a refund to a user after the 15-minute refund window, does the Android Licensing know about this? i.e. in the licensing check should receive a 'Not licensed' response, if the user tries to run the app. Thanks. -- You received this message because you are subscribed to the Google Groups

[android-developers] config monkeyrunner in eclipse in ubuntu

2012-06-01 Thread Roger Li
Hi guys, I followed the instructions in http://dtmilano.blogspot.com/2011/03/using-android-monkeyrunner-from-eclipse.html to config monkeyrunner in my ubuntu env. But there is an error when executing the script: from com.android.monkeyrunner import MonekyRunner from com.android.monkeyrunner.re

[android-developers] ObjectInput.readObject() for reading a file object didn't work's when the version of the app is newer than the older app wich creates the object

2012-06-01 Thread saex
i have this class: public class SaveState implements Serializable { private static final long serialVersionUID = 1L; public List downloadedMagazinesIds = new ArrayList();//id's de revistas descargadas public List downloadedMagazinesSummaries = new ArrayList();//página sumario de cada magazin

[android-developers] ObjectInput.readObject() for reading a file object didn't work's when the version of the app is newer than the older app wich creates the object

2012-06-01 Thread saex
i have this class: public class SaveState implements Serializable { private static final long serialVersionUID = 1L; public List downloadedMagazinesIds = new ArrayList();//id's de revistas descargadas public List downloadedMagazinesSummaries = new ArrayList();//página sumario de cada magazin

[android-developers] Re: Is multithreading recommended for my case?

2012-06-01 Thread Ed Harned
As Nathan said -- but if you do need to separate you work into components and let each run independently then try out this product Managing Threads in Android Ed -- You received this message because you are subscribed to the Google Groups "Android D

Re: [android-developers] AwesomePlayer - on video lag update

2012-06-01 Thread bob
AwesomePlayer isn't but the movie player app is. It's based on the VideoView sample in apidemos. On Thursday, May 31, 2012 5:46:59 PM UTC-5, Fred Niggle wrote: > > Is this an app you wrote? > > > On 31 May 2012 16:31, bob wrote: > >> I have a Samsung Galaxy Tab, and I'm playing back some video

Re: [android-developers] Re: Convert the binary to pdf file on Android?

2012-06-01 Thread Bhaumik Thaker
byte[] arr = Base64.decode(str.toString(),Base64.DEFAULT ); use this to decode your string it may help you On Fri, Jun 1, 2012 at 4:25 PM, RAJESH RAJARAM wrote: > I think its possible in Iphone.. > > > http://stackoverflow.com/questions/8133137/how-to-convert-the-binary-to-pdf-file-on-iphone >

Re: [android-developers] Re: Android App

2012-06-01 Thread Oli Wright
>From that page: "This service has to be started using Android Debug Bridge (ADB)" Looks like it depends on having something kicked off over adb first so safe enough. -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group,

[android-developers] Re: how to get the name of external card

2012-06-01 Thread RLScott
As Mark Murphy said, there is no API for that. So what I did in my app was very messy. I invited the user to find out on his own, perhaps using a file explorer app on the Android device, what path he would like to use for the external memory. Then I had him enter that path in an EditText. -- Y

Re: [android-developers] Confused with C2DM

2012-06-01 Thread asheesh arya
just go through this link might be it helpful for you. http://www.vogella.com/articles/AndroidCloudToDeviceMessaging/article.html -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@google

Re: [android-developers] Check the SMS before send it

2012-06-01 Thread Mark Murphy
Fortunately, this is not possible. On Thu, May 31, 2012 at 2:46 PM, TalyssonOC wrote: > I would like to know how to get the content of a SMS when the user hit the > "Send" button and call a method that can refuse (or not) to send that SMS. > > Thank you. > > -- > You received this message because

Re: [android-developers] HTML content on AppWidget

2012-06-01 Thread Mark Murphy
You cannot use WebView in an app widget. However, setTextViewText() takes a CharSequence, so if your HTML is fairly limited, use Html.fromHtml() to create such a CharSequence and put it in a TextView in your app widget. On Fri, Jun 1, 2012 at 3:14 AM, zhang guichuan wrote: > hi guys! > I am searc

Re: [android-developers] How is this done? App uses fortran and executable?

2012-06-01 Thread Mark Murphy
On Fri, Jun 1, 2012 at 1:07 AM, Brian Van Der Wagt wrote: > A: Octave includes Fortran code and my book about the NDK says it > supports C and C++ only Quoting the Octave FAQ: "If possible, the Fortran subroutines are compiled with the system's Fortran compiler, and called directly from the C++

Re: [android-developers] stacksz

2012-06-01 Thread Mark Murphy
This list is for developing apps with the Android SDK. Please visit http://source.android.com to learn more about Android internals. On Fri, Jun 1, 2012 at 6:00 AM, marie wrote: > Hi, > In kaffe VM http://www.lamedoc.com/kaffe/classMethod_8h_source.html  i > find this code : > > typedef struct _j

Re: [android-developers] how to get the name of external card

2012-06-01 Thread Mark Murphy
On Fri, Jun 1, 2012 at 7:02 AM, guich wrote: > Is there an api to get the path to the external sdcard? I used the > ones described here: > http://developer.android.com/guide/topics/data/data-storage.html > , but they dont work. Yes, they do. They give you the path to external storage, whatever th

[android-developers] how to get the name of external card

2012-06-01 Thread guich
Hi, Is there an api to get the path to the external sdcard? I used the ones described here: http://developer.android.com/guide/topics/data/data-storage.html , but they dont work. The path for the galaxy 2 7 is /sdExtCard. thanks guich -- You received this message because you are subscribed

[android-developers] Re: Convert the binary to pdf file on Android?

2012-06-01 Thread RAJESH RAJARAM
I think its possible in Iphone.. http://stackoverflow.com/questions/8133137/how-to-convert-the-binary-to-pdf-file-on-iphone I want to know about android... Rajesh Rajaram -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

[android-developers] Parsing XML Binary Data

2012-06-01 Thread RAJESH RAJARAM
Hi Developers, Here, I have a query with parsing the xml file. some binary data type In the above xml inside the tag contains some binary data of converted pdf file. Now how can i retrive the same pdf format by parsing xml and i don't know its possible or not. Help me!!! Rajesh Rajara

[android-developers] Is JDK1.7 supported now?

2012-06-01 Thread sblantipodi
As title, some months ago I had some problem signing my android apps using java 1.7 that forced me to switch back to jdk 1.6. Is this problem fixed? -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to andr

[android-developers] CalendarView need help

2012-06-01 Thread vamshi ch
hi , I need help on CalendarView... the requirement like day,weak,month *view*and making appointments, notes, schedule and notification if anyone have any Idea or sample code or examples pls let me know. Thanks in advance -- You received this message because you are subscribed to the Googl

[android-developers] stacksz

2012-06-01 Thread marie
Hi, In kaffe VM http://www.lamedoc.com/kaffe/classMethod_8h_source.html i find this code : typedef struct _jmethodID { Utf8Const*name; parsed_signature_t*parsed_sig; accessFlagsaccflags; longidx;/* Index into class->vtable */ u2s

[android-developers] Get locals

2012-06-01 Thread marie
Hi everyone, I wanted to use the locals structure in dalvik/vm/interp/Interp.c but I found that it has changed: #if 0 // "locals" structure has changed -- need to rewrite this int j; DexFile* pDexFile = method->clazz->pDexFile; const DexCode* pDexCode = dv

[android-developers] Re: How to write screen saver in Android

2012-06-01 Thread Dominic
We wait for the screen of an if this Broadcast is caught we start our screen saver. On Wednesday, November 10, 2010 4:50:26 AM UTC+1, bobo123 wrote: > > Hi All, > >I am writing an application which requires screen saver. when the > application runs in foreground and no body touch it for a w

[android-developers] Re: Android virtual device NFC emulation

2012-06-01 Thread arnouf
hi, I'm not completly sure but I think that isn't possible for now. Le vendredi 1 juin 2012 06:04:45 UTC+2, Shady a écrit : > > Hi, > Recently I am developing an NFC application which interacting with > contactless ISO 7816 smartcard. > Instead of deploying to the real android devices for testi

[android-developers] How is this done? App uses fortran and executable?

2012-06-01 Thread Brian Van Der Wagt
So, I have been interested in a project that is on kickstarter that hasn't got any traction, but has done a few interesting things. They have more or less ported Octave and gnuplot to Android. This is cool and all that, but I am wondering how is that possible? The reason I ask that (excuse my ig

[android-developers] HTML content on AppWidget

2012-06-01 Thread zhang guichuan
hi guys! I am searching for some information about how to show HTML content on appwidget. there is a old post in the forum , https://groups.google.com/group/android-developers/browse_thread/thread/cb6a65d4aaad5b13/ec4e1ad5845cd073?lnk=gst&q=webview+appwidget#ec4e1ad5845cd073 I wanna to know if the

[android-developers] How to set mute option in android music player

2012-06-01 Thread ilaiyaraja V
How to set mute option in android music player with source code please help me -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send ema

Re: [android-developers] Re: Is there a way to auto-power on the phone?

2012-06-01 Thread Kristopher Micinski
It's not in the SDK, if that's what you're asking, and I would be willing to bet that this is most certainly vendor specific kris On Fri, Jun 1, 2012 at 2:29 AM, AJParag wrote: > Hi, > I found this feature in settings of my Spice MI 270. This is similar to > NoMoarPowah. It turns on/ off the pho

[android-developers] Android virtual device NFC emulation

2012-06-01 Thread Shady
Hi, Recently I am developing an NFC application which interacting with contactless ISO 7816 smartcard. Instead of deploying to the real android devices for testing, I would like to create a development environment on using Android virtual device with NFC emulation. Is there any AVD that can be able

Re: [android-developers] Re: sending DTMF tones on active calls in android

2012-06-01 Thread Kristopher Micinski
That's not really true, if I'm understanding what you want to do correctly, the answer is no, I believe the phone app is using a hook into the RIL: http://en.wikipedia.org/wiki/Radio_Interface_Layer kris On Thu, May 31, 2012 at 10:36 PM, lbendlin wrote: > yes. The  phone app does it. > > > On T

Re: [android-developers] Re: Why can't someone at Google answer this question????????????????????????????????????????????????????????????

2012-06-01 Thread Kristopher Micinski
I would generally say that while google employees occasionally follow this forum, their input is strictly limited to advice on things that are considered fairly sticky (advanced uses of the api that aren't made clear in the documentation), clarifying the correct specification of what pieces of the