[android-developers] Some searches show priorty for 1st result

2018-03-27 Thread Gary Plowman
now second on the list but I may as well be 10th...as the "similar apps" and "you might also like" are higher than I am on the screen. This is not good and giving the user a false impression that the 1st in the search is the only one. Thanks for your time. Gary -- You r

Re: [android-developers] Switch between the 2g/3g/4g data programatically

2015-09-22 Thread Gary Schmidt
Gmail On Sep 22, 2015 4:23 PM, "Abhik Sen Gupta" wrote: > HI > > The 2G/3G/4G option is available in Android 5.0 and above Lolipop. > > Upto Android 4.4 Kitkat version we have the option for LTE/WCDMA/GCM > network type. > > For android API 22/ Lolipop 5.0 onwards >

Re: [android-developers] Re: Widevine Adaptive Streaming

2015-07-17 Thread Gary Schmidt
No On Sep 30, 2013 8:50 PM, Larry Meadors larry.mead...@gmail.com wrote: Ahoj Honza, Yes - sorry for not posting an eventual resolution here. For me, the simple change that made it work was replacing http://; with widevine:// in the URL to stream. So instead of http://blah.com/foo.wmv;,

Re: [android-developers] Android Wear apps and multiple APKs compatibility

2015-07-01 Thread Gary Schmidt
No On Jul 1, 2015 4:30 PM, Fla flavio.r...@gmail.com wrote: Hello, I would like to distribute different apks of my wear app for different wear devices. It is possible to do that with regular applications ( http://developer.android.com/google/play/publishing/multiple-apks.html) But since

[android-developers] Activity starting for no apparent reason

2014-06-06 Thread Gary Blakely
I have an app that runs perfectly on some phones (All samsung Galaxys, some LGs) and fails on an HTC ONE X, and an LG G2. The app has a MainActivity, a Flashlight activity, a broadcast receiver, and an intent service. The app can run in two different modes. Mode 1: The user clicks on the

[android-developers] Google Cloud Messaging getting started issue

2014-03-28 Thread Gary Blakely
I have just completed reading all sections of the GCM docs at https://developer.android.com/google/gcm/server.html I also have the GCMSource that I downloaded. But what I don't understand is how do I package my GCM Server? Where does it run? When I go live I would want to run it at my

[android-developers] in-app billing subscription issue

2014-03-06 Thread Gary Blakely
, Gary -- 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 For more options, visit

[android-developers] AutoCompleteTextView behavior

2014-01-14 Thread Gary Blakely
for the keyboard to just have a Done key on the AutoCompleteTextView because I never liked the Next thing anyway. Is there anyway of just doing away with this whold Next metaphor and just having the keyboard always say Done for all the entry fields on a page? Thanks, Gary -- You received this message

[android-developers] in-app billing: testing subscriptions

2014-01-05 Thread Gary Blakely
. However, when I go to Google Play - My Apps on the same phone as I used to buy the subscription, it shows no subscriptions! So I can't cancel it. What is wrong? Also, how can I test expiration of subscription and make Google think time has passed. Thanks, Gary -- You received this message because

[android-developers] no support for in-app-billing or in-app-purchase

2014-01-05 Thread Gary Blakely
it is impossible to contact a human being at Google on any subject much less this one. Am I unaware of some source of support in this area or is there no support other than the buggy tutorials and docs? Thanks, Gary -- You received this message because you are subscribed to the Google Groups

[android-developers] test subscription disappeared when testing in-app-purchase

2014-01-05 Thread Gary Blakely
I have implemented Google Play subscriptions in an unpublished version of one of my apps. I purchased a monthly subscription (against the phony credit card ending in 0999) on December 24th and it showed up in my merchant account. Also when my app did a queryInventoryAsync, the subscription

[android-developers] in-app billing issue regarding the TrivialDrive sample app

2013-12-19 Thread Gary Blakely
it. What don't I understand? Thanks, Gary -- 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

[android-developers] Is there any way to contact Google Play Support?

2013-12-13 Thread Gary Blakely
the Videos now? I tried to contact play store support but after a couple of hours hitting links under the Contact Us maze, I could not find a way to contact a human being. Am I missing something? Thanks, Gary -- You received this message because you are subscribed to the Google Groups Android

[android-developers] Google Play Questions

2013-12-08 Thread Gary Blakely
are allowed to enter so many keywords so people can find the apps but there is apparently no such capability on Google Play. So, it seems that new apps are virtually hidden. Am I missing something? Thanks, Gary -- You received this message because you are subscribed to the Google Groups

[android-developers] Re: problem centering the camera in Maps V2

2013-09-27 Thread Gary Blakely
(); map.animateCamera(CameraUpdateFactory.newCameraPosition(cameraPosition)); map.addMarker(new MarkerOptions() .position(new LatLng(Lat, Lon)) .title(Phone Location) ); On Thursday, September 26, 2013 4:50:45 PM UTC-7, Gary Blakely wrote: In my android app I have the following code

[android-developers] problem centering the camera in Maps V2

2013-09-26 Thread Gary Blakely
(zoom); map.addMarker(new MarkerOptions() .position(new LatLng(Lat, Lon)) .title(Phone Location) ); Lat is 31.7898 Lon is -111.0354 The marker is exactly at that location. However the camera is centered about 5 miles north of that location on the v2 map. Why? Thanks Gary -- You

[android-developers] WebView Problem showing Google Maps

2013-08-03 Thread Gary Blakely
put the above google maps URL into a browser on my PC it works fine. Also, if I don't implement the WebViewClient (second line) it shows perfectly but in a separate browser window.(I don't want that). What am I doing wrong or what am I forgetting to do? Thanks, Gary -- -- You received

[android-developers] Re: WebView Problem showing Google Maps

2013-08-03 Thread Gary Blakely
No, I had not enabled javascript. So, I tried that and it now works. Thanks, so much. Gary On Saturday, August 3, 2013 2:52:19 PM UTC-7, Nobu Games wrote: Just a guess, maybe Google Maps is trying to (incorrectly) redirect to the mobile version of the page and cannot find the correct link

[android-developers] Re: send message from class to activity

2013-08-01 Thread Gary Blakely
Piren, Thanks for your answer. After reading up on the Observer pattern as you suggested, I ended up using propertyChange listener. It seems to be a handy conduit to trigger an event in an activity from a broadcast receiver. Thanks, Gary On Sunday, July 28, 2013 11:41:21 PM UTC-7, Piren wrote

[android-developers] send message from class to activity

2013-07-28 Thread Gary Blakely
it. I see a lot of info on using intents to do this but nothing that would accomplish what I need to do. What is the best way to accomplish this? Thanks, Gary -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] how to remotely enable GPS

2013-07-24 Thread Gary Blakely
that claims to do this very thing. Was my research wrong or are the seekdroid people making a false claim? Thanks, Gary -- -- 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

Re: [android-developers] how to remotely enable GPS

2013-07-24 Thread Gary Blakely
I came across that thread when I did my original research. Didn't look too proper and looked likely to stop working if it ever worked. Thanks, Gary On Wednesday, July 24, 2013 9:57:32 AM UTC-7, Kristopher Micinski wrote: Google is your friend :-) http://stackoverflow.com/questions/4721449

[android-developers] Re: Location Listener event when not online

2013-07-09 Thread Gary Blakely
if you are right then does that mean that reliable tracking apps cannot be created on Android? What is a more reliable method to use to follow the phone's movement? Is this something that has been reported as a bug? Gary On Saturday, July 6, 2013 4:41:21 PM UTC-7, Gary Blakely wrote: I

[android-developers] Location Listener event when not online

2013-07-06 Thread Gary Blakely
. Is it supposed to work this way? Why would the GPS need an internet connection to work? Thanks, Gary -- -- 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] Version Obsoleted error

2013-06-27 Thread Gary Blakely
for some). If the user then goes to google play to and downloads the latest version, they get the same dialog box again! So, no one can run my app. What could cause this? Thanks, Gary -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: Sharing SharedPreferences from two different processes

2013-05-15 Thread Gary Blakely
MODE_MULTI_PROCESS? btw, I'm targeting 2.33 gingerbread. Gary On Monday, May 13, 2013 11:59:32 PM UTC-7, Michael Schollmeyer wrote: I do something like this: prefs = context.getSharedPreferences(context.getPackageName() + _preferences, Context.MODE_PRIVATE | 0x4

[android-developers] Sharing SharedPreferences from two different processes

2013-05-13 Thread Gary Blakely
MODE_MULTI_PROCESS ?? thanks, Gary -- -- 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

[android-developers] Google Play Developer console testing access issue

2013-05-02 Thread Gary Blakely
console? Thanks, Gary -- -- 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] problem to run android.bat sdk

2012-10-12 Thread gary
downloaded android sdk but when i run android.bat sdk got following error. Have searched for solution for a long time and tried many suggestions. Still not work. Please help. What have I missed. It is Window 7 Thanks! C:\products\Android\toolsandroid.bat sdk Exception in thread main

[android-developers] Re: Unable to add product list to my android application

2012-08-29 Thread Gary Rudolph
I'm in the exact same boat. I have uploaded an app with com.android.vending.BILLING and subscribed for a Google Wallet Merchant/Sell account and am waiting on the bank verification. Did it clear once the bank verification occurred? Or did you have to do the same thing? -- You received this

[android-developers] ICS 4.0 Split Action Bar Bug

2012-02-14 Thread Gary Hsu
Hi everyone, i found an bug which is google ICS 4.0 Message AP. When I enter in landscape mode, then i rotate to portrait , the split action bar layout goes to unusual. Anyone else found this? And how to solve it? Thanks a lot~ -- You received this message because you are subscribed to the

[android-developers] ResolverActivity HierarchyView tool causes system_server crash and device rebooting

2011-11-04 Thread Gary Wang
):at android.os.Handler.dispatchMessage(Handler.java:92) E/AndroidRuntime( 131):at android.os.Looper.loop(Looper.java:132) E/AndroidRuntime( 131):at com.android.server.ServerThread.run(SystemServer.java:593) Please refer the attachments. Any ide on it? Thanks! Gary -- You received

[android-developers] Contacts down load MSN Outlook

2011-10-18 Thread Gary
I have recently downloaded from Card Scan to MSN outlook and then has always loaded to Google GMail and then on to Android. For some reason the only thing being down loaded to my Android G3 is under Notes with all the phone numbers, but in notes which I can't use for dialing out as the

[android-developers] new upgrade problems

2011-10-18 Thread Gary Bauer
I upgraded my 3G android, which I shouldn't have. I lost all my contacts to Notes, lost all my apps that I had on my main screen, replaced by that crazy chicken game. I have been to Verizon store and no one knows how to fix my contacts that are listed in groups so I can get back all phone

[android-developers] Re: KML Layers on Google Maps

2011-07-25 Thread Gary
Are there tutorial or example code for parsing the kml, and drawing the layer? Can one set of code be used for different kml files? Thanks for any suggestions. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email

[android-developers] Re: Im not able to run android application.Please help me to solve it.

2011-07-03 Thread Gary Kato
I don't think it has anything to do with your code but your emulator or Eclipse setup. This is what I see when I launch an application. [2011-07-03 05:30:02 - MainScreen] Android Launch! [2011-07-03 05:30:02 - MainScreen] adb is running normally. [2011-07-03 05:30:02 - MainScreen] Performing

[android-developers] Re: Typo in HelloSpinner example

2011-06-23 Thread Gary Kato
No, the whole thing should look like: *Toast.makeText(* parent.getContext(), The planet is + parent.getItemAtPosition(pos).toString(), Toast.LENGTH_LONG).show(); As ThaMe90 pointed out, Toast.makeText takes 3 parameters, not 1. The first parameter is a context which parent.getContext()

[android-developers] Re: Typo in HelloGridView Tutorial

2011-06-23 Thread Gary Kato
Sort of? Either way, there is a problem with 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, send email to

[android-developers] Re: Typo in HelloSpinner example

2011-06-23 Thread Gary Kato
I tell you what, just do the HelloSpinner tutorial and see what Eclipse tells you. -- 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: Typo in HelloSpinner example

2011-06-23 Thread Gary Kato
I saw the bugs list but I thought it might be just for reporting Android bugs. I will use it from now on. -- 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

[android-developers] Typo in HelloGridView Tutorial

2011-06-22 Thread Gary Kato
In the following code from http://developer.android.com/resources/tutorials/views/hello-gridview.html, I believe HelloGridView.this should be HelloGridViewActivity.this. public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);

[android-developers] Re: Typo in HelloGridView Tutorial

2011-06-22 Thread Gary Kato
Hmm. I thought I did do that. I will try again later. -- 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] Typo in HelloSpinner example

2011-06-22 Thread Gary Kato
http://developer.android.com/resources/tutorials/views/hello-spinner.html There is an extra right parenthesis. parent.getContext()) should be parent.getContext(). public class MyOnItemSelectedListener implements OnItemSelectedListener { public void onItemSelected(AdapterView? parent,

[android-developers] Re: Typo in HelloGridView Tutorial

2011-06-22 Thread Gary Kato
Well, I will have to stand by my assertion that there is a typo. Actually more than a typo. The tutorial has you edit HelloGridView.java, but there is no such file - just HelloGridViewActivity.java. Assuming that isn't a typo, then I created the project again but with Create Activity unchecked.

[android-developers] android market-visit website for developer name

2011-05-30 Thread gary
Hi, In android market, why visit website for developer name doesn't not update, while I change my account setting? does any other have similar problem? thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send

[android-developers] How to accomplish speech recognition

2011-05-16 Thread Gary Blakely
to accomplish this? Thanks Gary -- 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

[android-developers] Re: Eclipse wont regenerate files since downloading the 2.3 SDK

2011-03-09 Thread gary lucas
Something similar to this happened to me. Have you tried using the 'android' -- Fix this application from the eclipse project manager view? Also, I had R.Id.buttonX returning a TextEdit for awhile... I solved that by deleting the elements from the UI file and then saving and re- adding... I'm

[android-developers] Email's message threading

2011-03-07 Thread Gary Wang
Dear all, For message threading on Email app, I know it lacks the conversation view (like Gmail's conversation view) on message list. can any expert give me any advices on the indexing mechanism in Email's sync mechanism?! Thanks! Gary -- You received this message because you are subscribed

[android-developers] Question regarding SDK object / method call: public abstract SharedPreferences.Editor putString (String key, String value)

2011-03-07 Thread gary lucas
missing any imports but that could make sense too... I freely admit that I'm not up to speed on Java or Eclipse, so there's good odds I'm missing something obvious... Anyone care to point out the obvious? Thank you. Gary Lucas -- You received this message because you are subscribed

[android-developers] The purpose of resource name mipmap?!

2011-02-15 Thread Gary Wang
Dear all, I found the following resource folders are existing in Honeycomb- version Borwser apk. mipmap-hdpi mipmap-mdpi The meaning of mipmap resource is not listed in its SDK's documentation. Can anyone help to explain it? Thanks for your help! Gary -- You received this message because

[android-developers] Cannot use AXMLPrinter2 to translate binary xml correctly in Honeycomb-version apk

2011-02-14 Thread Gary Wang
) at android.content.res.StringBlock.getString(StringBlock.java:91) at android.content.res.AXmlResourceParser.getName(AXmlResourceParser.java: 140) at test.AXMLPrinter.main(AXMLPrinter.java:56) Any format change to binary XML in Honeycomb?! Thanks! Gary -- You received this message because you are subscribed to the Google Groups

[android-developers] Close Live Folder

2010-11-08 Thread Gary
Hello, I'm writing a live folder that pops up a login dialog so you can download data from an outside source. I'd like to close both the login dialog and the live folder window(?) when the login dialog is dismissed. Is there anyway to do this? --Thanks -- You received this message because

[android-developers] soft keyboard event (or detection)

2010-10-21 Thread gary
I have been struggling with an android bug ( http://code.google.com/p/android/issues/detail?id=10510 ) for sometime. Basically if an app is in fullscreen mode, the soft keyboard doesn't position UI elements correctly. I wonder if there is a way to get notified when soft keyboard is prompt or

[android-developers] Baisc Authentication Problem

2010-09-01 Thread gary
Hi all. I am feeling very bad as i am not getting help for android basic authentication. follwong class to access the webservice. but not able to do so. I have been searching over the internet but no hope. Anyone has working code. Will be great relief to all New android developers those are

Re: [android-developers] Re: Device Seeding Program for Top Android Market Developers

2010-03-29 Thread Gary C Wang
ditto that in New Orleans, LA USA. Still within 4-week time frame, but it's getting close. -- http://bit.ly/Qdroid On Mar 29, 2010 2:42 PM, Breezy mbre...@gmail.com wrote: Oh geez, let me throw this in here... Alabama - still waiting. I've got patience, plenty of it, but when I hear a step

Re: [android-developers] Re: Block Switch App

2009-12-10 Thread Gary Donaldson
On Thu, Dec 10, 2009 at 2:45 PM, alexdonnini alexdonn...@ieee.org wrote: Dianne, You are a smart person, and should recognize that what you state as being a fact, and inherently right is, in fact, simply your (Google's) opinion and position and, unlike most of us, you are in the position to

Re: [android-developers] Re: Block Switch App

2009-12-10 Thread Gary Donaldson
On Thu, Dec 10, 2009 at 2:57 PM, Jason Proctor jason.android.li...@gmail.com wrote: well people *have* created their own distributions, so why don't you go ahead and tell me why it's disingenuous to claim that it's possible? You assume a high level of resources that do not exist for most

[android-developers] Re: Need an invitation to google Wave?

2009-11-03 Thread Gary Thomas
Please add samoht.y...@gmail.com to the list Thanks On Nov 3, 1:22 am, krishna chaitanya kambhampati kkc.kambhamp...@gmail.com wrote: please invitation  kkc.kambhamp...@gmail.com Thanks Regards, K. Krishna Chaitanya On Tue, Nov 3, 2009 at 1:47 PM, dsurrea dsu...@gmail.com wrote: Please

[android-developers] Can't repo sync

2009-05-27 Thread Gary Thomas
Trying to 'repo sync' into a tree which was fine last Friday: From git://android.git.kernel.org/platform/system/wlan/ti * [new tag] android-1.5r2 - android-1.5r2 Fetching projects: 100% (115/115), done. Syncing work tree: 59% (67/113) fatal: Untracked working tree file

[android-developers] Re: Can't repo sync

2009-05-27 Thread Gary Thomas
Removing the two files in question and rerunning 'repo sync' seems to have fixed it. That said, how/why did this happen? Was this the correct solution? On May 27, 7:24 am, Gary Thomas samoht.y...@gmail.com wrote: Trying to 'repo sync' into a tree which was fine last Friday: From git

[android-developers] New Screens (one per class)

2009-01-03 Thread Gary Colman
attempt to create an intent and call startActivity failed because startActivity is not available from within a BroadcastReceiver class) ... :-o Many thanks Gary --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] IPC (by domain socket) between Android's LocalSocket and Linux kernel's PF_LOCAL socket

2008-09-24 Thread Gary Wang
Dear all, I try to create the communication between Android Application and Linux kernel Process by IPC domain socket (using abstract namespace mode), but when I try to creaste new LocalSocketAddress, it always casued the exception lsited below, : E/me ( 372): java.io.IOException:

[android-developers] orientation change bug with translucent activities

2008-09-09 Thread Gary
Hello, When the android:windowIsTranslucent flag is set, instance state is not saved properly when changing orientations if you have multiple activities on the activity stack. For example, given the following two activities: ActivityTest SecondActivity. 1) ActivityTest launches SecondActivity