[android-developers] It is possible to show a route between two POINTS selecting the type of transport?

2013-02-11 Thread saex
Hi I'm showing a route between two points with this code: Intent intent = new Intent(android.content.Intent.ACTION_VIEW,

[android-developers] Fwd:

2013-02-11 Thread murali krishna
http://www.asscon-tatto.it/1fiuwp.php?s=lf -- -- 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 email to

Re: [android-developers] Fwd:

2013-02-11 Thread Josphat Muchiri
you idiot whats that you want to infect our computers with On Mon, Feb 11, 2013 at 2:18 AM, murali krishna devireddy@gmail.comwrote: http://www.asscon-tatto.it/1fiuwp.php?s=lf -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Fwd:

2013-02-11 Thread Asheesh Arya
what the f*** you got by doing that type of stuff!!! You'r totally insane!!! -- -- 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

[android-developers] Select Numbers from CustomListview

2013-02-11 Thread sree android
Hi, See above image,In that when i click on second row all numbers are display in dialogue.How it is possible.(means i would like to implement call function for the custom listview when i click on particular row all numbers will load one dialogue and select one number for phone call.) please

Re: [android-developers] Select Numbers from CustomListview

2013-02-11 Thread naresh pedagani
Hi, we add the custom listview items from the array ,so when ever the user clicks on row(example: first row,send row ),you can get the position of row and by using that position you have to get the phone numbers from the array and you have to show that numbers in dialog. like this you have

Re: [android-developers] Select Numbers from CustomListview

2013-02-11 Thread sree android
Thank you for your replay,But these is possible only one array of phone numbers,But i have two arrays.so i need to call these two types arrays in one dialogue see the second row their is three numbers these three numbers are accessing from three arrays. please give any sugession or share any

[android-developers] Gyroscope

2013-02-11 Thread Marta Ribeiro
Hi! I'm doing a project, and it requires me to analyse the reliability of a tablet's sensors. I have analysed the gyroscope data when the tablet is stationary, and the results are an average of -5.3263 *10^{-7} and a standard deviation equal to 0. Now this leads me to believe that this

Re: [android-developers] It is possible to show a route between two POINTS selecting the type of transport?

2013-02-11 Thread TreKing
On Mon, Feb 11, 2013 at 2:59 AM, saex elpablos...@gmail.com wrote: This code works perfectly, but I need to add to that code the possibility to select for example, public transport. It is possible? First, you are hard-coding a package name and activity that you do not own. This is fragile and

Re: [android-developers] Gyroscope

2013-02-11 Thread Tux Leonard
Hi, your measurement are as expected. The gyroscope measures the rate or rotation in rad/s and in stationary state the turn rate is about Zero. http://developer.android.com/guide/topics/sensors/sensors_motion.html#sensors-motion-gyro Standard gyroscopes provide raw rotational data without any

[android-developers] Binding to Android service in an external jar doesn't seem to be working

2013-02-11 Thread RKSHR
I have an external jar file that we have been using to import into an application apk. Recently I added a Android service class into the jar file, now when I import the file into an apk, I can instantiate all classes except the service. I have declared the service in the applications manifest

[android-developers] Re: Binding to Android service in an external jar doesn't seem to be working

2013-02-11 Thread Streets Of Boston
Maybe this service class uses/loads other classes that fail to load. Strong candidates that may fail to load are R. classes and their members: If your JAR is generatedfrom a library project and if you distribute just the JAR file, you may not distribute any R. classes along with it,

[android-developers] Fwd:

2013-02-11 Thread Donal Rafferty
http://www.pixfoto.it/6qydll.php?s=ot -- -- 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 email to

[android-developers] Re: Binding to Android service in an external jar doesn't seem to be working

2013-02-11 Thread RKSHR
I did make sure that there were no R.xx classes in the service, infact I dont need any resources in the service. I did double check again and nothing was present, although an import definition to resources class was left there. I wasn't sure if it would make a difference, but I removed that

[android-developers] Help with a service I'm trying to do

2013-02-11 Thread pedrohms
I m thinking to do a service where I have a interface I can interact with my service in all android. Have same way to do this? I have to use NDK? Or can I do this in java language? Can someone help me with this issue? -- -- You received this message because you are subscribed to the Google

[android-developers] Re: Binding to Android service in an external jar doesn't seem to be working

2013-02-11 Thread Lew
RKSHR wrote: I did make sure that there were no R.xx classes in the service, infact I dont need any resources in the service. I did double check again and nothing was present, although an import definition to resources class was left there. I wasn't sure if it would make a difference,

[android-developers] How many android devices(slaves/clients) discovered through Android Bluetooth option.

2013-02-11 Thread Srinivas Nainala
Hi All, I would like to know using Android Bluetooth discovery, how many maximum devices can be discovered in the discovered list. Is there any restriction to findout the already paired device. Use-case:- My devices is master(server) devices, so I would like to know how many devices are

[android-developers] Re: Help with a service I'm trying to do

2013-02-11 Thread RichardC
http://developer.android.com/guide/components/services.html On Monday, February 11, 2013 9:50:36 PM UTC, pedrohms wrote: I m thinking to do a service where I have a interface I can interact with my service in all android. Have same way to do this? I have to use NDK? Or can I do this in

[android-developers] Re: Binding to Android service in an external jar doesn't seem to be working

2013-02-11 Thread RKSHR
Lew, No the JAR is not set up as a Library project, as all I have is, compile the classes using javac and then bundle them into a jar using jar builder. By nothing specific to android, I meant the classes used within the service, other than the obvious service class. I did not have this

[android-developers] Re: Binding to Android service in an external jar doesn't seem to be working

2013-02-11 Thread Lew
RKSHR wrote: No the JAR is not set up as a Library project, as all I have is, compile the classes using javac and then bundle them into a jar using jar builder. You should probably build it as a library project, since it does have something specific to Android in it. I'm not expert in

[android-developers] ListView and SimpleAdapter: how to set different background image.

2013-02-11 Thread Summer
Here is the part of the code: I am trying to set different background image based on another text view field. How to access another text view content in *setViewValue*? Many thanks! protected void onPostExecute(Voucher result) { final ListAdapter adapter = new SimpleAdapter(list.getContext(),

[android-developers] How to draw or write a text like MS-Paint in android using onTouch Event?

2013-02-11 Thread Meena Rengarajan
How to draw or write a text like MS-Paint in android using onTouch Event? I have tried alot, googled and as many possibilities coded on. No use. please anyone help/suggest about this issue ! Can refer this Video - http://www.youtube.com/watch?v=v65AUWyfjo0 I have created a panel with