[android-developers] Marker - Show Info Window (showinfowindow)

2013-10-18 Thread Carlos Calvo
*Miscellaneous questions about markers* Is there any way to view several marker at the same time? Is there some library that implements unofficial? I can prevent window disappears when clicking on the map? thx -- You received this message because you are subscribed to the Google Groups

Re: [android-developers] Marker - Show Info Window (showinfowindow)

2013-10-18 Thread iƱaki
https://developers.google.com/maps/documentation/android/marker and https://developers.google.com/maps/documentation/android/infowindows On 18 October 2013 11:21, Carlos Calvo 1caca...@gmail.com wrote: Miscellaneous questions about markers Is there any way to view several marker at the same

[android-developers] App description localisation

2013-10-18 Thread Brakkar
Hi, if I add let's say spanish play store app description translation, do I need to also have the app support spanish with all strings translated to spanish ? Or can I add as many app description translation I want in the play store, even if app itself isn't localized ? -- You received this

[android-developers] android how to use same layout in the other layout files.

2013-10-18 Thread 12169
Hi, I have below layout file and i want to use it inside of other layout files, instead of every time creating it. and inside of other layout files i want to change the text of textview and also want to provide the id to TextView LinearLayout android:layout_width=match_parent

Re: [android-developers] New Android Development Tool..

2013-10-18 Thread Mukesh Srivastav
I do mine using ANT. On Fri, Oct 18, 2013 at 5:17 AM, Kristopher Micinski krismicin...@gmail.com wrote: I do all my development via command line, using the ant build scripts and emacs JDEE works well enough. What joe131 wrote is just a thin wrapper around all of that anyway, Kris On

Re: [android-developers] android how to use same layout in the other layout files.

2013-10-18 Thread Siva Kumar
U can acheive this by using include tag in xml layout On Oct 18, 2013 7:23 PM, 12169 ashish.a...@gmail.com wrote: Hi, I have below layout file and i want to use it inside of other layout files, instead of every time creating it. and inside of other layout files i want to change the text of

[android-developers] Re: problems with data security or lose data

2013-10-18 Thread Miro
I attachecd comment 3 worst user mistakes that cause the phone is vulnerable to hacking on https://plus.google.com/u/0/61360616345077839/posts/VV2bYQNUreD and https://www.facebook.com/photo.php?fbid=533519640075455set=a.533519636742122.1073741827.357774360983318type=1. I invite to comment

[android-developers] Google wallet , not as many features as Google Checkout

2013-10-18 Thread niko20
So I noticed that this morning I got switched over to Google Wallet finally. However, one thing that stinks about it is I can no longer see date/time that orders were placed. I used to use this as a way to estimate income for the day. Also, if you go to Business Insights, Last 7 days, the

[android-developers] Indeterminate Progress Bar not animating

2013-10-18 Thread Bradley O'Hearne
I have an indeterminate ProgressBar in an XML layout for a fragment. When I display this fragment the first time, the ProgressBar visibility is set to VISIBLE, and the activity circle spins until a loading operation is complete, at which time the ProgressBar visibility is set to INVISIBLE, and

[android-developers] Signed APK corrupt on deploy. FC with Class Not Found exceptions

2013-10-18 Thread Brill Pappin
I just got killed by a corrupt APK when I deployed to production. It took me three versions to get the APK build to build one that was not corrupt (I had to completely remove the project from the disk and recheck it out and rebuild it). What made matters worse is that it now takes Google hours

Re: [android-developers] App description localisation

2013-10-18 Thread TreKing
On Fri, Oct 18, 2013 at 5:54 AM, Brakkar webko...@gmail.com wrote: if I add let's say spanish play store app description translation, do I need to also have the app support spanish with all strings translated to spanish ? I would expect not. But why not just try and see?

[android-developers] Re: Signed APK corrupt on deploy. FC with Class Not Found exceptions

2013-10-18 Thread Nobu Games
If it just happens with the release version this may be a ProGuard misconfiguration issue. Class not found and Method not found exceptions are symptomatic for that. Check the exact exception message for the class name that couldn't be found. Make sure that your release build really contains

Re: [android-developers] Indeterminate Progress Bar not animating

2013-10-18 Thread TreKing
On Fri, Oct 18, 2013 at 10:56 AM, Bradley O'Hearne br...@bighillsoftware.com wrote: So my question -- how can I get an indeterminate ProgressBar to spin when hidden/displayed again after the first time? I tried a simple example of showing / hiding a progress bar (on click of a button) and it

[android-developers] Re: Signed APK corrupt on deploy. FC with Class Not Found exceptions

2013-10-18 Thread Brill Pappin
I can't say that it wasn't proguard that was causing the problem, but I verified that my class was there. I ran the signed build twice and both times it was corrupt, then I deleted the project form the drive, checked it back out of source control and rebuilt it, which worked. All of that

[android-developers] Detecting the presence of a menu button.

2013-10-18 Thread Nathan
A year and a half after Google wrote the blog Say Goodbye to the Menu Button, I'm wishing I actually could. Manufacturers have not gotten the menu. All the bad things about the mysterious menu button in the 2X are only worse today with the overflow menu in the presence of a menu. Forcing

[android-developers] Re: Detecting the presence of a menu button.

2013-10-18 Thread Nathan
My third paragraph should read: Forcing an overflow button, which I think should be a standard Android style, was once supported by ActionBarSherlock for 2X devices and is now no longer available. It never worked for 4.X devices where manufacturers insist on having that menu button. -- You

[android-developers] Re: Detecting the presence of a menu button.

2013-10-18 Thread Nathan
I have found this function in my research. ViewConfiguration.get(context).hasPermanentMenuKey() One would assume then that API11 = implies menu button is available. API of 11-13 However, should I take the name too literally? Would a menu soft key that appears only in portrait be

Re: [android-developers] App description localisation

2013-10-18 Thread Latimerius
You can localise the app and the description independently. We localised our app listing months before the app itself was localised. I guess the worst you're risking that way is someone disappointed after download to see the app doesn't speak their language after all, and we did have a bunch of

Re: [android-developers] Re: Detecting the presence of a menu button.

2013-10-18 Thread Latimerius
I strongly disliked the way the Menu button was treated, too. For a while I tried to figure out a rule like the one you mention to allow me to use the button at least where it's available but after several failures we decided we couldn't afford using our users to test on the vast array of Android

Re: [android-developers] Indeterminate Progress Bar not animating

2013-10-18 Thread Bradley O'Hearne
On Oct 18, 2013, at 10:40 AM, TreKing treking...@gmail.com wrote: On Fri, Oct 18, 2013 at 10:56 AM, Bradley O'Hearne br...@bighillsoftware.com wrote: So my question -- how can I get an indeterminate ProgressBar to spin when hidden/displayed again after the first time? I tried a simple

Re: [android-developers] Re: Detecting the presence of a menu button.

2013-10-18 Thread Nathan
This snippet of Android Source Code leaves me more confused than ever about what the HasPermanentMenu() function does. If it doesn't have a SystemNavbar and it doesn't have a NavigationBar(), it must have a permanent menu button? Huh? From

Re: [android-developers] Indeterminate Progress Bar not animating

2013-10-18 Thread TreKing
On Fri, Oct 18, 2013 at 4:28 PM, Bradley O'Hearne br...@bighillsoftware.com wrote: Since you apparently have an example which works, would you mind posting your code? Sorry, don't have it at this point, I just threw something together into an existing project and reverted after I posted. But

Re: [android-developers] Indeterminate Progress Bar not animating

2013-10-18 Thread Siva Kumar
U need to use publish progress method On Oct 18, 2013 9:27 PM, Bradley O'Hearne br...@bighillsoftware.com wrote: I have an indeterminate ProgressBar in an XML layout for a fragment. When I display this fragment the first time, the ProgressBar visibility is set to VISIBLE, and the activity