[android-developers] Re: Writing files in UTF-8

2012-03-30 Thread Dirk Vranckaert
I did specify the type of result ;) It's a StringBuilder and does indeed not support the toString(UTF-8) What I did now: FileOutputStream fos = null; byte[] byteResult = Charset.forName(UTF-8).encode(result.toString()) .put(0, (byte) 0xEF) .put(1, (byte) 0xBB) .put(2, (byte) 0xBF)

[android-developers] date format problem

2012-03-30 Thread Eyal Berman
i try to format a date from XML file the date is in the format Thu, 15 Mar 2012 00:00:00 +0200 i use that code but get an error SimpleDateFormat formatter = new SimpleDateFormat(E, dd MMM HH:mm:ss Z); Date date = formatter.parse(Thu, 15 Mar 2012 00:00:00 +0200); SimpleDateFormat

[android-developers] Android app as background service

2012-03-30 Thread Neil
Hi All, I want to create an Android app as background service. Specifically . I want the app to respond when there an incoming call and do some function getting the caller information. Any pointer will be appreciated ! -- You received this message because you are subscribed to the Google

[android-developers] Lanuch pdf,ppt,word,ebook

2012-03-30 Thread Raju Gaddam
Hi android developers, Please tell me how to lanuch pdf ppt and word document form server to android application .here which library's are required to develop this plese provide any links or tutorials. Thanks raju -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Android app as background service

2012-03-30 Thread Narendra Singh Rathore
On Fri, Mar 30, 2012 at 12:40 PM, Neil neil.gh...@gmail.com wrote: Hi All, I want to create an Android app as background service. Specifically . I want the app to respond when there an incoming call and do some function getting the caller information. Any pointer will be appreciated ! I

[android-developers] What is the best development strategy?

2012-03-30 Thread Terry
How to keep developing an app - to take advantage of new features in new Android versions - and still support old customers? What is the best approach? Example: Let us say that I want to use the front facing camera, which seems to be supported from Android version 2.3, and I originally made the

[android-developers] Re: How to serialize a Class that includes a Bitmap?

2012-03-30 Thread EhyehAsherEhyeh
Bitmap doesn't implement Serializable. You could override readObject and writeObject for your simple class and in those methods read and write the Bitmap to a byte array for instance. On Mar 29, 2:32 pm, saex elpablos...@gmail.com wrote: Hi I have a simple class that implements Serializable,

[android-developers] Re: Android app as background service

2012-03-30 Thread Ali Chousein
I think this thread is interesting for your case: http://groups.google.com/group/android-developers/browse_thread/thread/483b5fbd8d0dc0f9 - Ali Chousein http://socialnav.blogspot.com | http://twitter.com/socialnav1 http://weatherbuddy.blogspot.com |

[android-developers] Re: Image loading in Gridview

2012-03-30 Thread EhyehAsherEhyeh
Try AsyncTask? You can have doInBackground downloading the images, then call publishProgress for each image completed, and have onProgressUpdate update the gridview. You should have no problem finding tutorials on how to use AsyncTask with a quick search. On Mar 29, 11:31 am, Febi.M.Felix

[android-developers] Re: Writing files in UTF-8

2012-03-30 Thread Remote Red
But the question marks in the in the file i attached are because google groups did not get it right the document... Locally it works and I can send it through mail without issues. Sorry but I find it hard to believe that when Google offers us a platform to discuss development and offers the

[android-developers] Database access from another android phone.

2012-03-30 Thread Kirupa
I want to access database of an application(I know the structure of database) from the another android phone.(every android phone has same application same database). -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: app sales dropped dramatically in the past few days

2012-03-30 Thread DraganA
Me too. Sales have slowed down in the last couple of weeks. I notice much fewer purchases from the US.. I'm from the UK. On Mar 29, 11:18 am, Mat Jones mashable...@gmail.com wrote: How long has you billing been in place? Whats the percentage drop? Have any users reported errors during

[android-developers] Re: Writing files in UTF-8

2012-03-30 Thread Remote Red
.put(0, (byte) 0xEF) .put(1, (byte) 0xBB) .put(2, (byte) 0xBF) However when the file is created and I open it with either notepad++ or excel the first characters are  not show, the file always starts with * artdate* . Any idea how to work around this? You are using put(). Those three

Re: [android-developers] Android app as background service

2012-03-30 Thread jagruti sangani
For receiving call you need to apply Broacastreceiver for that.and then when the application run in background then open new activity from the broadcastreceiver so it will automatic open the application in front. On Fri, Mar 30, 2012 at 12:40 PM, Neil neil.gh...@gmail.com wrote: Hi All, I want

Re: [android-developers] date format problem

2012-03-30 Thread jagruti sangani
you can use calender also for the getting the current date and time.also you can get separate form that.But in which format you want? On Fri, Mar 30, 2012 at 12:35 PM, Eyal Berman bermane...@gmail.com wrote: i try to format a date from XML file the date is in the format Thu, 15 Mar 2012

[android-developers] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

2012-03-30 Thread Kirupa
[2012-03-30 15:05:16 - Information Exchanger 2.7.3] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE [2012-03-30 15:05:16 - Information Exchanger 2.7.3] Please check logcat output for more details. [2012-03-30 15:05:16 - Information Exchanger 2.7.3] Launch canceled! How can i solve the

Re: [android-developers] date format problem

2012-03-30 Thread Ralph Bergmann | the4thFloor.eu
Am 30.03.12 09:05, schrieb Eyal Berman: i try to format a date from XML file the date is in the format Thu, 15 Mar 2012 00:00:00 +0200 try this: /** * Thu, 04 Aug 2011 09:00:00 +0200 */ protected static final SimpleDateFormat FORMATTER_StringToDate = new SimpleDateFormat(E, dd

[android-developers] Re: Writing files in UTF-8

2012-03-30 Thread Dirk Vranckaert
Sadly there is no insert and indeed the put overwrites the bytes. The charset.encode(...) gives me a ByteBuffer that I cannot retrieve 'empty'... Adding (put) the BOM first should be ok, but then adding all the test-bytes will not work. Then again I have to loop over all the bytes... Op

[android-developers] Re: Writing files in UTF-8

2012-03-30 Thread Remote Red
Looping? byte[] bom = {(byte)0xEF, (byte)0xBB, (byte)0xBF }; byte[] byteResult = Charset.forName(UTF-8).encode(result.toString()).array(); fos = new FileOutputStream(file); fos.write(bom); fos.write(byteResult); Doesn't this work? -- You received this message because you

[android-developers] Thank You....:)

2012-03-30 Thread Febi.M.Felix Maliakkal
Information is really helpful.. -- * * With Thanks Regards FEBI.M.FELIX* * -- 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] Re: Image loading in Gridview

2012-03-30 Thread Febi.M.Felix Maliakkal
Thank You...:) On Friday, March 30, 2012 1:32:24 PM UTC+5:30, EhyehAsherEhyeh wrote: Try AsyncTask? You can have doInBackground downloading the images, then call publishProgress for each image completed, and have onProgressUpdate update the gridview. You should have no problem finding

[android-developers] It is possible to lock the screen orientation of the phone only when you want? (dinamically)

2012-03-30 Thread saex
I have an application that can be viewed with landscape and portrait mode. I'm not using onConfigurationChanged() and android:configChanges=orientation|keyboardHidden and the screen orientation change is working perfectly. But now, i have a small problem. I want to learn to lock the

Re: [android-developers] Wifi and phone sleep state

2012-03-30 Thread Kostya Vasilyev
This depends on the WiFi sleep policy in effect in the device's settings. Recent Android versions (starting with 2.3, AFAICT) appear to have the default to keep WiFi on at all times, including when the phone goes to sleep. If that's the case for a particular device, you can just not worry about

Re: [android-developers] Wifi and phone sleep state

2012-03-30 Thread Kostya Vasilyev
30 марта 2012 г. 9:06 пользователь Put_tiMe putt...@gmail.com написал: If the wifi radio is disabled when the phone goes to sleep, then how does the e-mail app sync? Does it mean that the e-mail app holds a wifi lock? There is an easy way to find out - use the source, Luke :) On

[android-developers] Problem in storing data

2012-03-30 Thread Mega Bytes
Hi All Friends, I am new in android and I had developed a TextEditor Application in Android. Bt I have problem with storing data, how can I store it in SD card or in phone memory, how can I locate this. Please help me about this.. I have submission my project in college untill 10th april. So

Re: [android-developers] Thank You....:)

2012-03-30 Thread Anirudh Loya
Which information ? On Fri, Mar 30, 2012 at 3:33 PM, Febi.M.Felix Maliakkal febimfe...@gmail.com wrote: Information is really helpful.. -- * * With Thanks Regards FEBI.M.FELIX* * -- You received this message because you are subscribed to the Google Groups Android Developers

Re: [android-developers] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

2012-03-30 Thread Anirudh Loya
Chance the Cache Memory size of Android Virtual Device. On Fri, Mar 30, 2012 at 3:07 PM, Kirupa answerofandr...@gmail.com wrote: [2012-03-30 15:05:16 - Information Exchanger 2.7.3] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE [2012-03-30 15:05:16 - Information Exchanger 2.7.3]

[android-developers] How to use Archos 80 G9 to develop with Eclipse? Eclipse doesn't detect it.

2012-03-30 Thread saex
Hi I received an Archos 80 G9 and i need to use it to develop with eclipse. I follow these instructions: http://www.archos.com/support/support_tech/updates_adb.html?country=wslang=en I added *0x0e79 *to the ini file* *and also i have installed the goolge usb drivers, because before this i was

Re: [android-developers] XML Parsing w/ DocumentBuilder

2012-03-30 Thread Anirudh Loya
Use XML with sitelist.. !! It will work fine. No idea about document builder. On Thu, Mar 29, 2012 at 10:34 PM, Bozzified bozi...@gmail.com wrote: Hello everyone. I am trying to get a hang of XML parsing and can't get this to show me the right elements as I'm fairly new to Android/Java dev.

Re: [android-developers] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

2012-03-30 Thread s.rawat
Hi, You can try installing it on external sd card. Add this attribute in the manifest file : android:installLocation=preferExternal It will work like charm. Rgds, Saurabh ..pain is temporary.quitting lasts forever.. On Fri, Mar 30, 2012 at 4:01 PM, Anirudh Loya

Re: [android-developers] Wifi and phone sleep state

2012-03-30 Thread Mark Murphy
2012/3/30 Kostya Vasilyev kmans...@gmail.com: This depends on the WiFi sleep policy in effect in the device's settings. Recent Android versions (starting with 2.3, AFAICT) appear to have the default to keep WiFi on at all times, including when the phone goes to sleep. Y'know, I had not ever

Re: [android-developers] How to use Archos 80 G9 to develop with Eclipse? Eclipse doesn't detect it.

2012-03-30 Thread Mark Murphy
On Fri, Mar 30, 2012 at 6:33 AM, saex elpablos...@gmail.com wrote: Hi I received an Archos 80 G9 and i need to use it to develop with eclipse. I follow these instructions: http://www.archos.com/support/support_tech/updates_adb.html?country=wslang=en I added 0x0e79 to the ini file and also

Re: [android-developers] XML Parsing w/ DocumentBuilder

2012-03-30 Thread Ralph Bergmann | the4thFloor.eu
I have not tried it but I think the 3rd child of the item element is the title element. But you need the text child from this title element. Ralph -- Ralph Bergmann iOS and Android app developer www http://www.the4thFloor.eu | http://www.dasralph.de mail

[android-developers] Re: Writing files in UTF-8

2012-03-30 Thread Dirk Vranckaert
Ooh great, didn't think about that. Now it works perfect! Thanks for all the support with this issue! Kr, Dirk Op vrijdag 30 maart 2012 11:55:34 UTC+2 schreef Remote Red het volgende: Looping? byte[] bom = {(byte)0xEF, (byte)0xBB, (byte)0xBF }; byte[] byteResult =

Re: [android-developers] XML Parsing w/ DocumentBuilder

2012-03-30 Thread Anirudh Loya
Ralph, He needs URL and the title after Parsing. very much doable with XML parsing. On Fri, Mar 30, 2012 at 4:46 PM, Ralph Bergmann | the4thFloor.eu ra...@the4thfloor.eu wrote: I have not tried it but I think the 3rd child of the item element is the title element. But you need the text child

Re: [android-developers] Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

2012-03-30 Thread Ankita Kashyap
In case you are working with emulator: 1) Go to SettingsApplications 2) find your app there and click on it 3) uninstall it and, re-run your application On Fri, Mar 30, 2012 at 4:05 PM, s.rawat imsaurabhra...@gmail.com wrote: Hi, You can try installing it on external sd card. Add this

Re: [android-developers] Wifi and phone sleep state

2012-03-30 Thread Kostya Vasilyev
30.03.2012 15:09, Mark Murphy написал: Y'know, I had not ever consciously thought about the fact that I hadn't been seeing the old WiFi spinup when waking up the device with the power button as much as before. You would have noticed sooner had you been using my stupid little WiFi widget :)

Re: [android-developers] Wifi and phone sleep state

2012-03-30 Thread Mark Murphy
On Fri, Mar 30, 2012 at 8:24 AM, Kostya Vasilyev kmans...@gmail.com wrote: You would have noticed sooner had you been using my stupid little WiFi widget :) Yeah, well, it might not have been on my primary home screen page. :-) According to my sources (

Re: [android-developers] Wifi and phone sleep state

2012-03-30 Thread Kostya Vasilyev
30.03.2012 16:31, Mark Murphy ???: IMHO, the SwitchPreference where tapping on the preference*also* launches a nested PreferenceScreen is lousy UX. I keep forgetting there are options under the WiFi one, until I'm trying to connect to some new AP and then eventually stumble upon it. And,

[android-developers] Re: app sales dropped dramatically in the past few days

2012-03-30 Thread Nadeem Hasan
I have a free app and been seeing a marked reduction in daily installs for a few days. -- 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,

[android-developers] Re: Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

2012-03-30 Thread John Gaby
If you are using the emulator, you can change the size of the internal storage by adding the following command line argument when you launch the emulator: -partition-size 200 On Mar 30, 2:37 am, Kirupa answerofandr...@gmail.com wrote: [2012-03-30 15:05:16 - Information Exchanger 2.7.3]

Re: [android-developers] Re: Stop listview from updating previous items and only update current items

2012-03-30 Thread Nadeem Hasan
And that too yes. Good catch. I did see the two layouts but was too focused on the issue reported. -- 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

[android-developers] Image CoverFlow not working fine with Android 4.0

2012-03-30 Thread sblantipodi
Hi, I'm working with coverflow, the images are displayed and working fine in android 2.3.6 and below versions but is not displayenter image description hereed properly in android 4.0 and above sub versions. No exception is thrown unfortunantly, the image, simply does not display correctly on

Re: [android-developers] Re: Stop listview from updating previous items and only update current items

2012-03-30 Thread Nadeem Hasan
As it has already been pointed, there are several things wrong with that small piece of code. You should go back and read more about listviews in Android. -- 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] Merging Bounce animation with sliding animation (bounce like zoom out/zoom in)

2012-03-30 Thread Rikki
I need to mix two animations between my activity switching. I already have slide-in/out left/right animations in place but I want to give a effect of Z-axis bounce to the new activity coming in focus. It should look give the following effect: When next activity is called, current activity is

[android-developers] Re: Image CoverFlow not working fine with Android 4.0

2012-03-30 Thread sblantipodi
Ok I fixed the library, now it works. On 30 Mar, 16:06, sblantipodi perini.dav...@dpsoftware.org wrote: Hi, I'm working with coverflow, the images are displayed and working fine in android 2.3.6 and below versions but is not displayenter image description hereed properly in android 4.0 and

[android-developers] Re: Database access from another android phone.

2012-03-30 Thread Chris Stratton
Since devices on mobile networks generally can't be reached by incoming connections, you will probably have to have a server somewhere which all the mobile clients check in with so it can forward traffic between them (possible using C2DM to get their attention). You will have to build

[android-developers] Re: XML Parsing w/ DocumentBuilder

2012-03-30 Thread Bozzified
So I did make it work but feel free to pitch in and tell me if this is efficient or proper way.. I'm getting results fine with this *try* { DocumentBuilderFactory factory = DocumentBuilderFactory.*newInstance*(); DocumentBuilder builder = factory.newDocumentBuilder(); Document doc =

[android-developers] Re: XML Parsing w/ DocumentBuilder

2012-03-30 Thread Bozzified
Btw that's a different xml now but it's the same thing I needed is there a better way to do that maybe? -- 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

Re: [android-developers] Re: Stop listview from updating previous items and only update current items

2012-03-30 Thread Walaa Mahmoud
Yeah Firstly this code is not original listview code as you said but i worked around the original code to figure out a way to make listview update only current row not previous rows , i read that i could use adapter.add() so it will add row one by one so will not update previous and that what i

[android-developers] Flash freedom

2012-03-30 Thread bob
Does anyone know of a reasonable way to play Flash files in an Android app that does not require the installation of the Adobe Flash Player plug-in? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Flash freedom

2012-03-30 Thread Mark Murphy
I am fairly certain that, by definition, this is impossible. On Fri, Mar 30, 2012 at 2:23 PM, bob b...@coolfone.comze.com wrote: Does anyone know of a reasonable way to play Flash files in an Android app that does not require the installation of the Adobe Flash Player plug-in? -- Mark Murphy

[android-developers] Re: It is possible to lock the screen orientation of the phone only when you want? (dinamically)

2012-03-30 Thread JacekSt
setRequestedOrientation( ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE ); On 30 Mar, 12:16, saex elpablos...@gmail.com wrote: I have an application that can be viewed with landscape and portrait mode. I'm not using onConfigurationChanged() and android:configChanges=orientation|keyboardHidden and

[android-developers] ViewPager jumpy/laggy

2012-03-30 Thread Phil Bayfield
I'm using a ViewPager with ListViews inside them but the transitions are quite jumpy. Can anyone tell me a good way to improve the performance of this? Thanks Phil -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

Re: [android-developers] Flash freedom

2012-03-30 Thread Chris Stratton
On Friday, March 30, 2012 2:41:29 PM UTC-4, Mark Murphy (a Commons Guy) wrote: I am fairly certain that, by definition, this is impossible. On Fri, Mar 30, 2012 at 2:23 PM, bob wrote: Does anyone know of a reasonable way to play Flash files in an Android app that does not require the

[android-developers] Should i clear my application Cache, and if so when ?

2012-03-30 Thread Jimmy
I have an application that shows images to the user in viewPager. My app cache about 150 MB per day and every day will double the size. I know Android will take care of deleting the app cache if its low in space but they emphasis on handling it by yourself but how ? Should I : 1- Check the

[android-developers] Mobile web frameworks ((jQueryMobile,Sencha,JQtouch,....) on Android

2012-03-30 Thread Davy
Hi, I'm getting pretty terrible results when running the major web based frameworks (jQueryMobile,Sencha,JQtouch,) on Android. Seems on ICS things are even worse than on earlier versions. This is the performance I'm seeing with jQueryMobile when pushing a button (extremely laggy on ICS) :

Re: [android-developers] Re: Installation error: INSTALL_FAILED_INSUFFICIENT_STORAGE

2012-03-30 Thread santhosh b
In Eclipse, go to run Configurations. You can find that by right clicking on your project and click on Run and then Run Configurations. Select target, and select a preferred emulator target to launch. Then under additional emulator command line options, add this: -partition-size 1024 then click

[android-developers] Memory management issue - outOfMemory exception

2012-03-30 Thread Farhan Tariq
Hello everyone, In my application, I have custom scrollView to which a lot of images get added. I get an outOfMemoryException exception. I know why I am getting it, but I cant think of how to fix it while using a scrollView, not a listView. Any suggesstions? Hope to get some help soon. Regards,

[android-developers] Re: Memory management issue - outOfMemory exception

2012-03-30 Thread lbendlin
use a listview and re-use the rows. On Friday, March 30, 2012 5:06:50 PM UTC-4, Farhan wrote: Hello everyone, In my application, I have custom scrollView to which a lot of images get added. I get an outOfMemoryException exception. I know why I am getting it, but I cant think of how to fix

[android-developers] Textview gravity resets

2012-03-30 Thread adev
My layout is as follows I have a table of textviews in a linear layout. that is in a realative layout above an adview. Relative layout -linear layout --tablelayout ---tablerow textview . AdView All the textviews have gravity set to right|centervertical When it first loads, it looks

Re: [android-developers] Re: Memory management issue - outOfMemory exception

2012-03-30 Thread Farhan Tariq
I know it can be achieved usiing listViews, but how do I reuse views in scrollView?? Is that possible at all? On Sat, Mar 31, 2012 at 3:35 AM, lbendlin l...@bendlin.us wrote: use a listview and re-use the rows. On Friday, March 30, 2012 5:06:50 PM UTC-4, Farhan wrote: Hello everyone, In

Re: [android-developers] What is the best development strategy?

2012-03-30 Thread YuviDroid
You can use java Reflection to use methods available only on certain Android versions. Or you can create some helper classes that you load (again through Reflection) only on certain Android versions. This doc can sure help:

Re: [android-developers] How to serialize a Class that includes a Bitmap?

2012-03-30 Thread Dianne Hackborn
Serializing for persistent storage is generally a bad idea, since later changes to your classes can cause them to incompatible with what you had previously serialized. I really think that if you are persisting data, you should explicitly define your format up-front so you are in control of

[android-developers] how to save/restore SharedPreferences between devices?

2012-03-30 Thread RedBullet
While my app is in beta testing I want to provide a mechanism to allow my testers to send me information (logs and such) so that I can have a better chance at reproducing problems. My question is, is there a reasonable way for an app to send along the SharedPreferences state to me such that I

Re: [android-developers] Sleep mode

2012-03-30 Thread Dianne Hackborn
On Android sleep mode is the screen being off. What do you mean by sleep mode? On Thu, Mar 29, 2012 at 10:50 PM, Put_tiMe putt...@gmail.com wrote: How can I goto sleep mode on a device? Is it only via the UI interface by long pressing the Screen On button? Or does it reach automatically

Re: [android-developers] Can I get all the apps that have acquired a wifi lock?

2012-03-30 Thread Dianne Hackborn
There is no SDK API for this. On Thu, Mar 29, 2012 at 10:34 PM, Put_tiMe putt...@gmail.com wrote: Is there any way I can get a list of apps that have acquired the wifi lock? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Re: how to save/restore SharedPreferences between devices?

2012-03-30 Thread lbendlin
instead of grabbing the values, grab the entire XML file that holds the shared preferences. On Friday, March 30, 2012 9:16:41 PM UTC-4, RedBullet wrote: While my app is in beta testing I want to provide a mechanism to allow my testers to send me information (logs and such) so that I can have

Re: [android-developers] Re: Get and save GPS location while i am walking

2012-03-30 Thread lbendlin
A full battery on the phone can easily support 8 hrs of constant GPS tracking, especially when the screen is off. Now go walk for 8 hrs. On Thursday, March 29, 2012 3:37:37 PM UTC-4, Kristopher Micinski wrote: Yes, having GPS going on a lot will be bad for your battery..., you have to live

[android-developers] Re: strange blue boxes with ? instead of images in my Android app...

2012-03-30 Thread lbendlin
You are using a web view and the img tags are broken. On Thursday, March 29, 2012 4:21:10 AM UTC-4, Stuart B wrote: https://lh5.googleusercontent.com/-B1sU3tiWMZg/T3QbVMPcn3I/AN0/V2_45P9uxKg/s1600/Screenshot_2012-03-27-18-16-30.png Can you help? I have an app that runs great on

Re: [android-developers] Re: Sending GPS coordinates to a server

2012-03-30 Thread lbendlin
science background - good one. Keep it up. On Thursday, March 29, 2012 1:43:17 AM UTC-4, bhuvan wrote: Actually i come from a science background and iam not an android developer , i was trying to develop an application for the sake of my project - Vehicle tracking using a mobile, I would

[android-developers] [Q] Why does Lint complain that my Activity is not registered in the Manifest properly?

2012-03-30 Thread exiquio
This is the what I have in my AndroidManifest.xml file: activity android:name=.DisplayPageActivity android:label=@string/app_name android:configChanges=orientation|keyboardHidden intent-filter action

[android-developers] Rotation gesture detector.

2012-03-30 Thread MB
Hi, Is there a rotation gesture detector class available for Android? I've searched the docs but haven't found anything relevant. I am looking for the equivalent of UIRotationGestureRecognizer on iOS. Thanks, --MB. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Rotation gesture detector.

2012-03-30 Thread James Black
You need to do more of the work on Android. This may give you a start: http://www.anddev.org/gesturedetector_and_gesturedetectorongesturelistener-t3204.html On 31 Mar 2012, at 00:16, MB wrote: Hi, Is there a rotation gesture detector class available for Android? I've searched the docs but

[android-developers] Re: Rotation gesture detector.

2012-03-30 Thread MB
I am already aware of these gesture detectors and using them already. I am specifically looking for rotation gesture detector. On Mar 30, 9:39 pm, James Black planiturth...@gmail.com wrote: You need to do more of the work on Android. This may give you a