[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread pramod.deore
Hi, Martins. I had tried it by still activity restarted. On Aug 16, 10:46 am, Martins Streņģis martin...@draugiem.lv wrote: add android:configChanges=orientation to your manifest in each activity activity android:name=Settings android:configChanges=orientation / -- You received this message

Re: [android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread Martins Streņģis
i dont know why but i doesn't work on emulator on phones it works just fine try it :) -- 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: On screen orientation changes activity restarted.

2010-08-16 Thread Tonny
you should remove keyboardHidden . Result: android:configChanges=orientation On Aug 16, 12:12 pm, pramod.deore deore.pramo...@gmail.com wrote: Hi everybody, I know on screen orientation changes activity restarted, but suppose i don't want to restart the activity then what should I do? I had

[android-developers] Is there anyway to get to know, when an application has crashed or stopped completely?

2010-08-16 Thread Durg
Hi All, I want to know, if there is any callback method/procedure to know when a particular application has been crashed or stopped working completely (thorugh code in any of the other applicaiton). My use case : First, i'm starting a watch dog application, which starts another application

[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread pramod.deore
Ok I had tried it but it doesn't work. Look I had developed one simple application in that only I had print one line in onCreate method, but each time when I change screen orientation that statement print (i.e. which I had write in onCreate() method) Here is my code import android.app.Activity;

[android-developers] Google maps, Overlays and the shadow layer

2010-08-16 Thread oriharel
What can I do with the shadow layer of the the google maps overlays? I tried, naively, to draw something (an arc) only when (shadow == true) and got nothing? I'm interested in drawing arcs and arc shadows on a map. is there a nice google-maps way to do this? thanks, Ori -- You received this

[android-developers] Re: Disappearing Alarms

2010-08-16 Thread mot12
I have seen this on a number of devices if the phone is idle for a long time or if the display gets shut off manually. My app has ~100,000 users so I am quite sure I am not imagining it. My phones (N1 and Galaxy) are not affected, but I get a lot of these reports from Droid users. Here's a simple

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-16 Thread Zsolt Vasvari
I noticed the same thing. Let me share a few stats for my app. The active rate from 40% to a 32%, but at the same time the overall rating has gone up a little bit, from about 4.22 to 4.33 as shown by AppBrain, so the overall rating is more 5 stars than 4. There isn't a single bad comment

Re: [android-developers] Re: persistence storage...........

2010-08-16 Thread A N K ! T
but i need to store some secure informationthat will need to find is perticular mobile used trial version of my app...so that mobile cant install app again as a trial version On Mon, Aug 16, 2010 at 10:54 AM, William Ferguson william.ferguson.au@ gmail.com wrote: Store the database on

[android-developers] Re: Sharing data between (tab) activities

2010-08-16 Thread Zsolt Vasvari
The best way to share data between tabs is to NOT use activities. I am not sure what the API people were on (but I want some of it) when they thought tabbed activities should make it into the final API. On Aug 15, 4:29 pm, Filip Havlicek havlicek.fi...@gmail.com wrote: I went the database way

[android-developers] Re: persistence storage...........

2010-08-16 Thread pramod.deore
You can't create file or database outside the application. So if you want to store information as particular mobile used trial version of your app...so that mobile cant install then you have to store such information on server. There is no any other way. -- You received this message because

[android-developers] Re: Best way to swap activities

2010-08-16 Thread Zsolt Vasvari
I think the built-in activity stack and flags are quite good for simple app logic, but if you have a complicated app, I'd suggest just use startActivity() and finish() on all your activities and manage the app flow yourself. This is what I do and it gives you more control over what's going on and

Re: [android-developers] Re: persistence storage...........

2010-08-16 Thread Kostya Vasilyev
Huh? Writing to the sdcard or sdcard-like internal storage is possible for any application. You just need to have the right permission in the manifest. -- Kostya 16.08.2010 11:24, pramod.deore пишет: You can't create file or database outside the application. So if you want to store

[android-developers] Re: Strange Issue with Return String from Web Service

2010-08-16 Thread Bob Kerns
In addition to referring you to the thread Ed just referred you to, I'll specifically highlight: toString() does not do what you think it does. Yes, it returns a string. No, it does not extract some string (just which string, anyway???) from the response. SOAP responses are complex XML

[android-developers] Alarm manager for multiple pending intent are not working.

2010-08-16 Thread nomi
Hi all, In my application i have created pending intent which calls another activity (after 20mins of alarm off) with the help of alarm manger. It should happen each time for each new pending intent or when I call that activity. But when i create one pending intent and after few mins again create

Re: [android-developers] Re: Chilling news: Oracle sues Google over Android

2010-08-16 Thread Fabrizio Giudici
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 8/16/10 05:07 , DanH wrote: Having written 13 software patents, I'm well aware that many are very weak, or, if not weak, very narrow. But proving all that in a court of law is the trick -- the presumption is that the patent, having been

Re: [android-developers] Re: Chilling news: Oracle sues Google over Android

2010-08-16 Thread Fabrizio Giudici
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Suggested read: http://blogs.forbes.com/taylorbuley/2010/08/13/android-lawsuit-is-really-just-oracle-flirting-with-google/ - -- Fabrizio Giudici - Java Architect, Project Manager Tidalwave s.a.s. - We make Java work. Everywhere.

[android-developers] Re: persistence storage...........

2010-08-16 Thread pramod.deore
Actually i mean except the memory card. Ankit said that - i need to store some secure informationthat will need to find is perticular mobile used trial version of my app...so that mobile cant install app again as a trial version and for this I think Memory card is not safe place,

[android-developers] Re: Alarm manager for multiple pending intent are not working.

2010-08-16 Thread skink
nomi wrote: Hi all, In my application i have created pending intent which calls another activity (after 20mins of alarm off) with the help of alarm manger. It should happen each time for each new pending intent or when I call that activity. But when i create one pending intent and after

[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread pramod.deore
Hello , Please someone tell me how to solve this issue. -- 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] Is there any way to look for an image using the path? MediaStore.Images.Thumbnails (Android)

2010-08-16 Thread jaaaelpumuki
Hi, I'm using MediaStore.Images.Thumbnails in order to show the images the user have. But i'm not able to get an image through its path. Is there any way to look for an image using the path? String [] proj={MediaStore.Images.Thumbnails._ID, MediaStore.Images.Thumbnails.IMAGE_ID,

[android-developers] Re: Settings.Secure.ANDROID_ID not unique on DROID2?

2010-08-16 Thread FrankG
On 16 Aug., 06:43, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: So prior to this month, there were no duplicate ANDROID_IDs? With pre- Froyo devices? I can't say there were or weren't any duplicates pre-Froyo. I can say that every Droid2 that has downloaded my app Radar Now! has

[android-developers] Re: Drawing an Image Using OpenGL

2010-08-16 Thread jojoma
check this tutorial (its for iphone but the theory about texture coordinates is all there): http://iphonedevelopment.blogspot.com/2009/05/opengl-es-from-ground-up-part-6_25.html On Aug 10, 2:54 pm, cmh0114 camherrings...@gmail.com wrote: Using OpenGL ES, how do I draw an image from the

[android-developers] C2DM Tied to Market? (e.g. will it work on non-official devices)

2010-08-16 Thread Andy Savage
Hi everyone, Quick question. Just wondering if Cloud to Device Messaging (C2DM) is available for devices that use Android 2.2 but don't have the Android Market installed (because they are not an official device). Is this service tied to the Market? Kind regards, Andy Savage -- You received

[android-developers] ListView paint issue in landscape mode.Width remains as in Portrait mode

2010-08-16 Thread Alok Kulkarni
Hi, I am having a listview in my App which shows perfectly in Portrait mode.But when i change orientation to landscape , sometimes the width remains as that of Portrait mode.Even the scrollbar for the list comes at the center and remaining part of the screen remains balcked out.This happens only

[android-developers] Re: FTP Application for IPv6

2010-08-16 Thread Joe Petruchi
Zirk, Thanks very much I tried with the Trial version of FTPCAFE and it works fine over IPv6. I am able to see the list of files in remote PC and download also. Thanks for the help Regards Ajan On Wed, Aug 11, 2010 at 3:57 PM, Joe Petruchi petruchi.dr...@gmail.comwrote: Hello All, I am

Re: [android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread Floaters
I met the same issue activity android:name=Settings android:configChanges=orientation / did not work. 2010/8/16 pramod.deore deore.pramo...@gmail.com Hello , Please someone tell me how to solve this issue. -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Alarm manager for multiple pending intent are not working.

2010-08-16 Thread Kostya Vasilyev
Setting an alarm cancels any previous alarms that have the same intent as the new one. In your code, the old and new intents only differ by their extras, which are not considered (I believe). What you could do is calculate the next point in time when an alarm is needed, set one alarm, and

[android-developers] Re: ListView paint issue in landscape mode.Width remains as in Portrait mode

2010-08-16 Thread Alok Kulkarni
Solved the problem Actually i was playing with the width of the list after setting the indexer of the list.This was causing the painting issue Thanks, Alok On Mon, Aug 16, 2010 at 2:35 PM, Alok Kulkarni kulsu...@gmail.com wrote: Hi, I am having a listview in my App which shows perfectly in

[android-developers] How to use ActivityManagerService?

2010-08-16 Thread CaryWang
I want to know current Activity some information.for example activity name or activity package info.I use getRecentTasks method get current Activity info,but somebody tell me this method don't better,should use ActivityManagerSrevice do it,but this method don't open.I want to know how to do?Who

Re: [android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread Martins Streņģis
as i said earlier for some reaosn it doesnt work on emulators. that fix works only on real phones -- 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] Re: On screen orientation changes activity restarted.

2010-08-16 Thread pramod.deore
Hi, Martnis, But I am running this application on real phone G1, but still onCreate() method is called each time when I open or close the keypad. On Aug 16, 3:51 pm, Martins Streņģis martin...@draugiem.lv wrote: as i said earlier for some reaosn it doesnt work on emulators. that fix works only

[android-developers] how to read all numbers of particular contact

2010-08-16 Thread A N K ! T
am stuck in reading phone contacts ,,,i tried 1.6 api for it... and getting all detail of contacts .. but i am not getting all numbers of contact i need to get all numbers(mobile,work,home,other) of particular contact. help me out. thanks -- A N K ! T.. -- You received this

[android-developers] Google maps - limit panning between longitudes

2010-08-16 Thread oriharel
Hi, Im trying to set limits to the map view so the user won't be able to pan it cyclic. (when panning to the right, instead of the map will cycle, I want it to stop). is it possible? Ori -- You received this message because you are subscribed to the Google Groups Android Developers group. To

Re: [android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread Martins Streņģis
sounds like daily wtf :) -- 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+unsubscr...@googlegroups.com

[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread pramod.deore
I am also searching for this from last 8 hours but everybody says that add this in manifest.xml as android:configChanges=orientation . But still onCreate() method is called on each time when I open or closed keyboard.I really don't understand what to do? On Aug 16, 4:52 pm, Martins Streņģis

[android-developers] Re: Disappearing Alarms

2010-08-16 Thread Pent
You sure they're not killing your service with a task killer? I am seeing the service handling other incoming intents before and after the alarm time. If it was recreated that would be logged. Pent -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Re: Disappearing Alarms

2010-08-16 Thread Pent
I have seen this on a number of devices if the phone is idle for a long time or if the display gets shut off manually. My app has ~100,000 users so I am quite sure I am not imagining it. My phones (N1 and Galaxy) are not affected, but I get a lot of these reports from Droid users. Here's a

Re: [android-developers] Activity getting killed and automatically starting again on screen off button press

2010-08-16 Thread Shashidhar
Thanks for the reply. I found the problem. There is a bug in android which is listed at http://code.google.com/p/android/issues/detail?id=7479 http://code.google.com/p/android/issues/detail?id=7479As mentioned in the above bug my activity's orientation is fixed to landscape and when the phone

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-16 Thread String
I grew distrustful of the Console download figures in mid June and began keeping track of all the numbers I could lay my hands on for my apps. I was sort of collecting data to get a handle on what was wrong, so that I could share it with other devs, when Google admitted they had a problem - and

Re: [android-developers] Custom Quick Search Box

2010-08-16 Thread Michael Tsai
在 2010-8-16 上午9:09,Lorensius W. L. T lor...@londatiga.net编写: Hello all, I'm developing an application that uses quick search box. Is there a way to customize it ? how to add additional button and use custom image for its background like in Twitter ? Thanx in advance -- Kind Regards - Lorensius

[android-developers] Re: Alarm manager for multiple pending intent are not working.

2010-08-16 Thread Paul Turchenko
PendingIntent.FLAG* should help you. On Aug 16, 12:44 pm, Kostya Vasilyev kmans...@gmail.com wrote:   Setting an alarm cancels any previous alarms that have the same intent as the new one. In your code, the old and new intents only differ by their extras, which are not considered (I

[android-developers] Re: How to write ContentProvider for content not stored in a file nor DB?

2010-08-16 Thread Paul Turchenko
They use Database! Sergey is asking about building content provider around non-db storage. On Aug 16, 4:29 am, Indicator Veritatis mej1...@yahoo.com wrote: Expect to override a lot more methods in ContentProvider and ContentResolver than other people do. You may want to look at the example

[android-developers] Dealing with password change on the server in a SyncAdapter

2010-08-16 Thread Kwisatz
Hope you can help me with this, because I've tried EVERYTHING and the example in the Google sample code doesn't seem to work. Scenario: - An account is created in the AccountManager with a valid username and password. - A SyncAdapter is present to deal with server syncs, and successfully

[android-developers] Re: Removing unncessary permissions

2010-08-16 Thread Paul Turchenko
Please point out the source of such information. This absolutely doesn't make sence to me. On Aug 14, 8:56 am, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Where are you installing the app from? I'm guessing a non-market source. If you install if from a non-market source, the

[android-developers] Crop an image

2010-08-16 Thread Nea
I have an imageview which has a photo taken with the camera as its background and a frame as it's foreground (src). In that way the photo is positioned behind the frame so the photo get's a nice border. The imageview is a square (265x265dip). Now the problem is that photos taken are rectangular

[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread alan
android:configChanges=keyboard|keyboardHidden|orientation is working for me On Aug 16, 12:58 pm, pramod.deore deore.pramo...@gmail.com wrote: I am also searching for this from last 8 hours but everybody says that add this in manifest.xml as  android:configChanges=orientation . But still

[android-developers] Re: Failed to upload .apk on device

2010-08-16 Thread RichardC
I can't seen anything in your manifest that might be a problem. Things to try/check: Have you set the flag - settings Application Unknown sources ? Try setting targetSdkVersion to 4 in your manifest On Aug 16, 5:27 am, Lukas Adamec luk.ada...@gmail.com wrote: AndroidManifest.xml: ?xml

Re: [android-developers] Re: How to write ContentProvider for content not stored in a file nor DB?

2010-08-16 Thread Kostya Vasilyev
Sereja Pavel, It should be just a little bit more involved than writing a SQL-based one. For structured data, you'd need to create your own Cursor subclass, and return it from the provider's query method. If query results are small enough to fit in RAM, then it's easiest to use

[android-developers] XML parsing slow ... cache!

2010-08-16 Thread Davide
Hi, I have seen that xml parsing is very slow. Using sax would be better, but benchmark show that sax work only 30% faster as dom. Is right? Is faster if I construct a DOM using sax? To reduce time i like to cache xml file. Caching it as xml is not a good idea because the parsing time is there

[android-developers] Re: On screen orientation changes activity restarted.

2010-08-16 Thread Namrata
I generally use following and it works always for me android:configChanges=orientation|keyboardHidden On Aug 16, 6:40 pm, alan a...@birtles.org.uk wrote: android:configChanges=keyboard|keyboardHidden|orientation is working for me On Aug 16, 12:58 pm, pramod.deore deore.pramo...@gmail.com

Re: [android-developers] XML parsing slow ... cache!

2010-08-16 Thread Fabrizio Giudici
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On 8/16/10 16:02 , Davide wrote: Hi, I have seen that xml parsing is very slow. Using sax would be better, but benchmark show that sax work only 30% faster as dom. Is right? Is faster if I construct a DOM using sax? To reduce time i like to

[android-developers] How to capture the contents of webview and parse it

2010-08-16 Thread dhilip
Hi, I am trying to capture the contents of a webview and to parse it. Is there any method that would allow me to do so? With regards, Dhilip -- 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] Re: XML parsing slow ... cache!

2010-08-16 Thread Mark Gjøl
On my first implementation I used a DOM-parser for my XML (Flickr, 500 images), and it easily took about a minute to get through. I now use a SAX-parser, and it's less than a second. The speedup was tremendous, so it can definitely be worth your time, at least to test the difference! -- Mark Gjøl

[android-developers] I want to know user operation info?

2010-08-16 Thread CaryWang
I want to know user operation info for example user run some app or close app info.I want know android automatic notification my service.I don't know how to do it?help me . -- Cary -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] How do I convert float to 2 decimal places?

2010-08-16 Thread Mystique
I try a few example but it doesn't seems to work... is Android working differently compare to standard java? Anyone did it in Android code? -- 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] Re: position add remove imageview

2010-08-16 Thread nikhil
Just to add, I am using relative layout. On Aug 15, 11:17 am, nikhil nik...@gmail.com wrote: Guys, I  m trying to add remove and position an image but i am not able to. The  image always shows up at 0, 0 . I am using an image view to do this. any pointers  ? -- You received this message

[android-developers] Re: How do I convert float to 2 decimal places?

2010-08-16 Thread Maps.Huge.Info (Maps API Guru)
Do you want to round or display it as text? Try looking up java.text.DecimalFormat if you want text. -John Coryat -- 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

Re: [android-developers] How do I convert float to 2 decimal places?

2010-08-16 Thread TreKing
On Mon, Aug 16, 2010 at 10:08 AM, Mystique joven.ch...@gmail.com wrote: I try a few example but it doesn't seems to work... Like what ... ? - TreKing

Re: [android-developers] Google maps - limit panning between longitudes

2010-08-16 Thread TreKing
On Mon, Aug 16, 2010 at 6:51 AM, oriharel ori.ha...@gmail.com wrote: is it possible? Probably, assuming you can detect when a scroll happens, which I'm sure you can, you can simply check the MapView's current longitude bounds and if it's past the threshhold you want to allow, get the

[android-developers] Re: How do I convert float to 2 decimal places?

2010-08-16 Thread Pent
I use, for better or worse, public final static double roundDouble( double d, int places ) { BigDecimal bd = new BigDecimal( Double.toString(d) ); bd = bd.setScale( places, BigDecimal.ROUND_HALF_UP); return bd.doubleValue(); } Pent -- You received this message

[android-developers] Re: How do I convert float to 2 decimal places?

2010-08-16 Thread Robert Nekic
Yeah, I use the NumberFormat: NumberFormat numberFormat = DecimalFormat.getInstance(); numberFormat.setMaximumFractionDigits(2); String formattedText = numberFormat.format(yourFloat); On Aug 16, 11:13 am, Maps.Huge.Info (Maps API Guru) cor...@gmail.com wrote: Do you want to round or display it

Re: [android-developers] Re: position add remove imageview

2010-08-16 Thread Kostya Vasilyev
Nikhil, The default position of child views with RelativeLayout is indeed at 0,0. You need to do something to position the child view. Use RelativeLayout.LayoutParams and and specify some values. You can use layoutParams.setMargins (correspond to XML layout_marginLeft, layout_marginTop,

[android-developers] Re: Compiling and obfuscating by command line...

2010-08-16 Thread sblantipodi
I have created the ant build as suggested by you but I can't figure it out. Unfortunantly I haven't got a day for this... :( Can't understand how it is possible that there is no guide on how to do that in a fast way. On Aug 9, 5:54 pm, Bob Kerns r...@acm.org wrote: Well, I suggested a better

Re: [android-developers] OnCreate does not finish

2010-08-16 Thread TreKing
On Sun, Aug 15, 2010 at 9:57 AM, kretes kretesena...@gmail.com wrote: so it must be that while creating the app Android System decided that there are not enough resources for my app. Is my suspicion right? I doubt it. More than likely your app is throwing an exception between 1 and 2. I

RE: [android-developers] OnCreate does not finish

2010-08-16 Thread Tommy
are you calling super.onCreate() ? This has gotten me a few times. Otherwise wrap it in a Try Catch like TreKing said and step through the code in debug mode to find out where your error is being thrown. From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On

[android-developers] multi select listbox

2010-08-16 Thread charles berman
is there the ability to create a multi select listbox for preferences? or has someone seen some sample code that could be used to do the same thing? I would need to customize it but currently am stuck with only one choice when i should allow the user to have several. -- You received this message

[android-developers] Re: XML parsing slow ... cache!

2010-08-16 Thread DanH
Comparing DOM and SAX is like comparing apples and bullfrogs. They do two largely different things. DOM reads in an entire XML document and stores it as Java objects so that you can quickly reference parts of it without knowing (or at least having to specify) in advance what parts you're

Re: [android-developers] OnCreate does not finish

2010-08-16 Thread TreKing
On Mon, Aug 16, 2010 at 11:17 AM, Tommy droi...@gmail.com wrote: are you calling super.onCreate() ? I think the OP would have to be, otherwise it would crash 100% of the time. - TreKing

RE: [android-developers] OnCreate does not finish

2010-08-16 Thread Tommy
Ah guess I didn't see it was only intermitent From: android-developers@googlegroups.com [mailto:android-develop...@googlegroups.com] On Behalf Of TreKing Sent: Monday, August 16, 2010 12:32 PM To: android-developers@googlegroups.com Subject: Re: [android-developers] OnCreate does not finish

[android-developers] webview issues with listview.

2010-08-16 Thread charles berman
Im having some problems with my application and while i think i know what is causing it, im not completely sure how to fix it. my application searches a website and adds entries to a database and then displays the users in a listview with a cursoradaptor. when the entries are first displayed, i

Re: [android-developers] Re: XML parsing slow ... cache!

2010-08-16 Thread Kostya Vasilyev
David, XML parsing options available in Android were discussed here within the last month. I recall that Dianne Hackborn posted some interesting performance comparisons. Try finding that thread, I think it should be quite interesting w.r.t. to your question. Android also includes the

Re: [android-developers] Server Error when saving cc info from Android Market

2010-08-16 Thread TreKing
On Sun, Aug 15, 2010 at 3:45 PM, Paul idi...@gmail.com wrote: Many of my buyers are getting a Server Error during the purchase process of my app from Android Market. This is nothing new. Search the Android Market Help Forum:

[android-developers] Re: NPE on WebView.onWindowFocusChanged

2010-08-16 Thread Luis Santos
I'm having the same issue in my app. We're having continuous reports on this error. We have a dialog with a WebView inside it. Hope someone can help :) Thanks! Luis. On 28 jul, 04:32, GJTorikian gjtorik...@gmail.com wrote: Bump (do bumps exist in email?) to see if there's anyone out there who

Re: [android-developers] Google maps, Overlays and the shadow layer

2010-08-16 Thread TreKing
On Mon, Aug 16, 2010 at 1:57 AM, oriharel ori.ha...@gmail.com wrote: What can I do with the shadow layer of the the google maps overlays? Anything you want, I would think. I tried, naively, to draw something (an arc) only when (shadow == true) and got nothing? Maybe you did something

[android-developers] need clarification on Services

2010-08-16 Thread Arjun
Greetings, Can a services exists as a stand alone with out any activities/ default. Is it possible to create services with out any activities associated with it as a stand alone inside a apk. (just a service). Thanks, Arjun. -- You received this message because you are subscribed to the Google

Re: [android-developers] How to capture the contents of webview and parse it

2010-08-16 Thread TreKing
On Mon, Aug 16, 2010 at 9:43 AM, dhilip indiantalkiedhi...@gmail.comwrote: I am trying to capture the contents of a webview and to parse it. What do you mean capture? What webview? Your own or some other apps'? Is there any method that would allow me to do so? Connect to the url the

[android-developers] Re: Sharing data between (tab) activities

2010-08-16 Thread nation-x
I use Observable Singleton objects because they automatically update themselves and I never have to check if the values are stale or if I need to retrive a new version of the object or anything of that nature. There is a complete eclipse project available for demonstrating how it works.

Re: [android-developers] need clarification on Services

2010-08-16 Thread Agus
Yes, create your service in the android.intent.action.BOOT_COMPLETED intent receiver. On Mon, Aug 16, 2010 at 10:28 AM, Arjun arjunf...@gmail.com wrote: Greetings, Can a services exists as a stand alone with out any activities/ default. Is it possible to create services with out any

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-16 Thread Doug
So attrition will always take its toll, and the active user count - as a percentage of users who have EVER installed your app - will always tend downward. As a result, the active % is almost more of just a measure of how long your app has been released than it is a measure of user

Re: [android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-16 Thread Mark Carter
On 16 August 2010 19:41, Doug beafd...@gmail.com wrote: If Google just came clean on the algorithm that is used to calculate rankings, then we'd know for sure if there's anything to worry about. It's extremely unlikely they would do that. All we can do is try to encourage them to use a

[android-developers] Droid X background or font color issue?

2010-08-16 Thread andrew android
Hi ! I just got a message from a user of one of my apps that upgraded and reinstalled onto a Droid X and she says that now the dropdowns spinners) are defaulting to white font on white background. Do any of you know of a difference in font color defaults on the Droid X? Any suggestions or

[android-developers] Re: Is anyone's active install % dropping like a rock lately?

2010-08-16 Thread Maps.Huge.Info (Maps API Guru)
I've seen a drop in active install percentage as well. My most popular app, Radar Now! was at 67% for many months then a few weeks ago it started to drop and now is sitting at 65%. While that may not seem like a lot, the app has over 700,000 downloads, so it is quite a few. I had attributed it to

[android-developers] Direction information in android MapView

2010-08-16 Thread Ajmer singh
Hi I want to show the direction information in my app.Direction from one address to the another using Google maps and also wanted to set overlays at the starting address and the destination address.Is there any classes in android too do that. please let me know how can i do this -- *Thanks and

[android-developers] Android 2.2 and falshplayer 10.1 development help

2010-08-16 Thread batrak
Hi Folks, I have read that recent version of Android(2.2) supports Adobe flash(10.1) files(.swf), bascially i want to open swf file in android emulator using through eclipse for development purpose. I have seen some coding on internet to open swg file(like shown below) but unable to open so.

[android-developers] Problem item in AlertDialog

2010-08-16 Thread FlorentCode
Hi all, Thanks to help people! I use an AlertDialog with list (singlechoice-radioButtons). When I choose an item from the list, a toast come and I do a setText of the item on a textView. Everything works when I declare my items like this:

[android-developers] Re: How does AdMob calculate how much to pay developers per click? Is AdMob better than AdSense?

2010-08-16 Thread infero
You probably better ask this question here: http://groups.google.com/group/admob-publisher-discuss -- 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] Android application error

2010-08-16 Thread flirts
I have the following activity but when called it crashes in my emulator any advice application has stopped unexpectedly...Im using netbeans any advice i can post the xml file if needed package org.me.androidapplication; import android.app.Activity; import android.os.Bundle; import

[android-developers] Eclipse Helios ADT plugin

2010-08-16 Thread quest
Hi, I have installed eclipse, downloaded the android SDK and downloaded the necessary packages for the latter application. However I cant find the URL for the ADT plugin that I can use to install on eclipse. What to do? Thank you -- You received this message because you are subscribed to the

[android-developers] Problem with Saxparser and malformed XML

2010-08-16 Thread MarkG123
Hi, I am using a saxparser to read RSS XML from the web and populate listviews. Everything works fine until I come across malformed XML, usually encoding related, and my reader falls over. I have changed it so that it gets as many items parsed and populated before falling over (by default if it

[android-developers] getApplication().openOrCreateDatabase causes method undefined error

2010-08-16 Thread dave
ok so heres what i got in there try { SQLiteDatabase db4 = getApplication().openOrCreateDatabase(psalmsdb,0,null); db4.execSQL(CREATE TABLE IF NOT EXISTS psalms + (_id INTEGER PRIMARY KEY, ps INTEGER, body TEXT, istitle TEXT));

Re: [android-developers] How does AdMob calculate how much to pay developers per click? Is AdMob better than AdSense?

2010-08-16 Thread Natalie Hooper
I believe it's on a per-ad basis, not a per-country basis. On 14 August 2010 21:50, Greg Siano gregmsi...@gmail.com wrote: I just integrated AdMob into my app. I noticed that in South Korea, there were 24 clicks, but that I only got 7 cents off of those clicks. In Malaysia, there was one

[android-developers] Re: When are the overlays drawn on the map?

2010-08-16 Thread cnbishop
hi, i was wondering if you could talk a bit about how you were able to get the overlays to update dynamically? i am trying to do something similar where i remove any existing overlays, and add a new overlay with a new geopoint every couple of seconds. in a nutshell, i am basically getting the

[android-developers] Cant Send picture message(mms)from one emulator to another in Android

2010-08-16 Thread vj
can any one help how to send mms 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@googlegroups.com To unsubscribe from this group, send email to

[android-developers] The target in Android Virtual Device (AVD) is disable !!

2010-08-16 Thread Amine.MOUNADIR
Heey, I'm a beginner with Android and i installed the emulator but when i want to create a new Android Virtual Device the choice Target is disable ! My Eclipse version is : -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] The target in Android Virtual Device (AVD) is disable !!

2010-08-16 Thread Amine.MOUNADIR
Heey, I'm a beginner with Android and i installed the emulator but when i want to create a new Android Virtual Device the choice Target is disable ! My Eclipse version is : Helios Release (Eclipse Java EE IDE for Web Developers). Android SDK : Package Description Android

[android-developers] Adapter drop down clipped on floating window

2010-08-16 Thread Christopher Fraser
Hello, I'm having a problem with floating windows. My activity has an AutoCompleteTextView text in a floating window positioned at the top of the display. If enough text is entered to make the drop down appear it will be initially clipped to the bottom edge of the window. If you click on the drop

[android-developers] Bar Code scanner - Android 2.1

2010-08-16 Thread Chetan Saxena
Hello All, This is Chetan Saxena, I am new to Android world. Me and one of my friend, we both were trying to get our hands on building a customizied bar code scanner application Android 2.1. We are going through some issue in the process. Issue is like the trial application which we are using

[android-developers] Problems drawing a translucent Path on a SurfaceView

2010-08-16 Thread Niklas
Hi, I'm having some trouble with the following code: paint.setColor(Color.WHITE); paint.setStyle(Paint.Style.STROKE); paint.setAlpha(100); paint.setStrokeWidth(12); canvas.drawPath(path, paint); It seems that the alpha setting is ignored, as the Path will be drawn fully opaque. If I call

[android-developers] Emulator shortcomings regarding the touchscreen interaction

2010-08-16 Thread Mihael
Obviously it is not the same to test the application in the emulator with the mouse or even touchscreen opposite to the real device. My question is, how would you improve emulator to better reflect testing experience from real device? Which are the features that are missing? First of all, there

  1   2   3   >