[android-developers] Different Business Models in different countries

2016-03-23 Thread Randall Green
Hi All, Would appreciate some advice. We are a US based company working to monetize a South African language app. As Google has not included South Africa in the list of approved Google Merchants, the workflow we would need to create in order to publish a paid non-advertising app that can be

Re: [android-developers] Re: How to detect application launch and shutdown events?

2013-08-23 Thread Randall Mitchell
http://developer.android.com/reference/android/app/Application.html#onTerminate() ... reads: This method is for use in emulated process environments. It will never be called on a production Android device, where processes are removed by simply killing them; no user code (including this

[android-developers] Re: Drawable is not drawn after setDrawableByLayerId

2012-07-13 Thread Randall Mitchell
Since this hits the top of my search list for this issue, I thought I would give this thread an answer... From what I can tell, LayerDrawable. setDrawableByLayerId is useless on lots of devices (strangely works well on Nexus S). I suggest building a new LayerDrawable instead. On Wednesday,

[android-developers] Re: How to determine screen resolution programmatically

2012-07-10 Thread Randall Mitchell
Since this hit high in google search I thought I'd update it with how I currently get screen width. I am not saying its the best way (maybe though)... but Display.getWidth is deprecated so Philips code from 2008 should not be used. Cheers. @Override public void

[android-developers] Pop Up Dialog with edit box

2011-10-04 Thread Adrian Randall
Hey, So i'm trying to create a pop up dialog box that can accept a text entry, think of a high score entry window for a players name. I cant do this with Alert Dialogs, i cant do this with Inflate as it alwyas has a transpaent background and i can never get it centered...Any other ideas If you

[android-developers] Centering a table in a dynamically created layout

2011-09-30 Thread Adrian Randall
Hey Guys, So my problem is i have tried almost everything i can think of to center a programitacally created table in a programitically created layout. I've tried all the usual layout params center setting but still nothing: Score List is a set of pairs of scores (Name, Score). I'm just looping

[android-developers] In-App Billing broken in 3.0.27

2011-08-02 Thread Randall
for this item. Is anyone else seeing this behavior? Things have been so quiet, I wonder if anyone is even using in-app billing through Google. Thanks, Randall -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android

[android-developers] When is Google going to devote more resources to Honeycomb

2011-05-18 Thread Randall
I can't believe that Google has not devoted a lot more manpower to improving Honeycomb. Honeycomb is probably one of Google most important new products. Google needs to give a time frame when the current version will be finished and bug free. -- You received this message because you are

[android-developers] Re: Intercepting the Android phone dialer

2010-07-13 Thread Randall
you would actually make the call go through a SIP connection but I guess this is a good start. There's an open source project called Sipdroid that does exactly that. Maybe you can take a look at their source code to see how it's done. On Jul 12, 3:46 am, Randall randallnori...@gmail.com wrote

[android-developers] Re: Intercepting the Android phone dialer

2010-07-12 Thread Randall
I'd like to know this as well. Did you find out how to do it, yet? On Jun 30, 1:41 pm, Jaap jaap.hait...@gmail.com wrote: Maybe I did not explain myself well. What I want is somebody to use the defaultphoneapplication on Android but when the call button is pressed my application gets

[android-developers] Facebook Connect in WebView Failing

2010-04-15 Thread Randall
My site's Facebook Connect login scheme does not work when I load my site in a WebView. However, everything works fine when loaded in the emulator's browser. Other sites' Facebook Connect logins are also failing in a WebView so I don't think it's an issue with my site's login code. I hope I am

[android-developers] Re: WebView + Cookie Problem

2009-10-24 Thread Randall
that's correct. The server rejects the session cookie and I have to login, but the same session cookie works fine when used with other messages to the server. The odd thing is that this doesn't happen all the time. The cookie will occassionally work in the given code snippet so I thought it

[android-developers] Re: Saving Cookie to Database

2009-06-01 Thread Randall
Thanks for the reply jcpalmer. My knowledge of an android app lifecycle is not great. Will using onSaveInstanceState() preserve the cookie between different uses of the app? That is, if the app receives a cookie then the app exits later, will onSaveInstanceState() be able to retrieve this

[android-developers] Re: Saving Cookie to Database

2009-06-01 Thread Randall
If anybody is interested, looks like the solution is to use BasicClientCookie to create cookies from strings. On Jun 1, 6:07 pm, Randall callmenanner...@gmail.com wrote: Thanks for the reply jcpalmer. My knowledge of an android app lifecycle is not great.  Will using onSaveInstanceState

[android-developers] Can Android browser load from local server via 802.11 ad hoc?

2009-04-06 Thread Randall Parker
Can one use an Android phone to access basically local (think intranet for example) web servers to view pages? I ask this question because some cell phones with some phone network appear to use a special server to funnel cell phone requests thru and that the server offloads from the browser part

[android-developers] Accessing video buffer?

2008-11-20 Thread Randall
I'm trying to make a screenshot app for Android. I understand that I cannot have my program to access different apps and pull their View object to take a screenshot. Is there a way for me to access the video buffer, so I can take the video the content and save it as a bitmap?