[android-developers] BUSINESS FINANCING

2019-08-08 Thread Andrew Ryan
ther details to go about procuring a loan from: Kindly respond immediately to this email: andrewryan1...@gmail.com Regards, as we await your response. Best Regards Andrew -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To

Re: [android-developers] Python Developer Senior & Lead

2019-07-09 Thread Andrew Droidman
Test sending a reply message. On Tue, Jul 9, 2019, 10:05 AM Preethi nytp wrote: > *Hi,* > > > > *Senior – 2 Positions* > > *Lead – 3 Positions* > > > > *Title: Python Developer Senior & Lead* > > *Location: Cary, NC* > > *Client: HCL America* > > *Duration: 12 Months* > > > > *Detailed

[android-developers] Task Manager

2017-08-22 Thread Andrew Michaud
Hey Developers, First of all, thank you so much for everything you do! Your hard work is appreciated by millions of android users. I have a small (I think) request for Android TV. I would like to see a "stop all running apps" option within the settings to do a soft reset. Kinda like on the

[android-developers] Delete app in developer console

2016-05-16 Thread Andrew Goh
hi i've created a 'throw away' app say 'hello world' and uploaded it in google play/marker developer console, this is uploaded only in the alpha channel the intent is to do various tests e.g. some APIs and later delete the app how do i go about deleting an app in the developer console. i've

[android-developers] Re: AVD - IIS problem

2016-04-25 Thread Andrew
понедельник, 25 апреля 2016 г., 10:01:04 UTC+4 пользователь Andrew написал: > > I have created AVD in Android Studio 2.0. > The AVD browser is connected to WWW, but not connected to localhost IIS > Windows 10: > ERR_CONNECTION_REFUSED. > On a host of Google Chrome it is conn

[android-developers] AVD - IIS problem

2016-04-25 Thread Andrew
I have created AVD in Android Studio 2.0. The AVD browser is connected to WWW, but not connected to localhost IIS Windows 10: ERR_CONNECTION_REFUSED. On a host of Google Chrome it is connected to localhost. -- You received this message because you are subscribed to the Google Groups "Android

[android-developers] Purchased UI with Dummy Data Embedded

2016-04-01 Thread Andrew Brigance
in Android Studio by tinkering with it like I did in my old Dos days... -Andrew -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an email to android

[android-developers] Get unsupported characters supported

2016-01-27 Thread Andrew Hossam
I am developing an android keyboard and their are many characters appears to be crossed rectangle. how to get this characters appear. If there is noway for that can I create this characters as images and use them in writing then. -- You received this message because you are subscribed to the

Re: [android-developers] HOW MUCH DOES GOOGLE CHARGE APP DEVELOPERS WHEN A CUSTOMER PURCHASE YOUR APP?

2015-12-04 Thread Andrew Brampton
I literally copied and pasted your subject line into Google.com and it took me to this page: https://support.google.com/googleplay/android-developer/answer/112622?hl=en Google takes 30%, Developer keeps 70%. Andrew On 4 December 2015 at 07:02, TRU ASPECT <mikehenry1...@gmail.com>

[android-developers] Invitation to Android Wake Lock Programming Survey

2014-09-17 Thread Andrew
Dear Android developers, My name is Yepang Liu. I am a researcher from the Hong Kong University of Science and Technology. Recently, we are developing a practical tool to help Android developers debug wake lock related problems, which can be very difficult (e.g., some notorious energy bugs).

[android-developers] Google Play store not pushing updates to alpha testers

2014-08-28 Thread Andrew
I am a developer trying to use the alpha testing functionality on the Developer Console. I have added my work email to a Google Group which I then added to the alpha testing list for the app. I invited myself, approved everything, etc. I visited the Google Play store on my device and

[android-developers] Re: How to inject mock objects in Android?

2014-03-26 Thread Andrew Mackenzie
, and then you override the Injection during the test with a Test Dagger Module that injects the Mock. Andrew On Monday, 24 March 2014 05:37:13 UTC+1, Yuvi wrote: Hi, I am facing issue while unit testing : // Service class that have to be tested. class FooService extends Service

[android-developers] Re: SharedPreferences not Thread Safe

2014-02-19 Thread Andrew Mackenzie
Also the Javadoc describes how the value maybe cached in memory and shared between clients is SP and the different behavior of commit() vs. apply() of Editor. And that depends on API level. http://developer.android.com/reference/android/content/SharedPreferences.Editor.html -- You received

[android-developers] Google Play Services adds nearly 10,000 methods!

2014-02-09 Thread Andrew Mackenzie
I would run proguard on your production build, and keep your development debug build as is. Remember to keep the mappings.txt file generated by obfuscation when doing a build for release - to upload to store for de-obfuscation of crash traces. That will strip out unwanted methods from play

[android-developers] writing unit tests for some networking code and can't simulate network failures?

2014-01-16 Thread Andrew Mackenzie
If http, consider looking at mockwebserver library, from square. I still need to try it, so can't recommend yet - but maybe you can mock the network layer and specific responsws for your unit test. -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Assets folder location

2013-12-01 Thread Andrew Mackenzie
In the root, beside res/, src/, etc. Android has methods to access files in this directory from your app at runtime. See AssetManager. Get it from Resources.grtAssets(). -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

[android-developers] Shared object model between Android and server applications

2013-11-24 Thread Andrew Mackenzie
I have done this in the past, sharing model clssses between J2ME, Android and AppEngine projects. You need a project with *pure* java classes that dont reference Android nor you server side classes. This is done in GWT (for web) for example. Checking your list of imports in those classes can

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

2013-11-11 Thread Andrew Mackenzie
As stated by Steve. 1) Give the TextView an id. This can be in the included file itself (and hence always the same), or you can set the id for the included part in each include tag if you want (if the TextView is the only thing included and the root view in the included layout). In the two

[android-developers] Drawing rapidly into Bitmap from non-UI thread results in Cannot generate texture from bitmap

2013-11-06 Thread Andrew Mackenzie
You should be able to write to the Bitmap object from any thread. It us setting that Bitmap into a View in the ViewHierarchy that is restricted to the UIThread. So your thread will have to pass the resulting Bitmap back to the UIThread and set it into a View there. If you are not using an

[android-developers] FM receiver hardware class

2013-10-29 Thread Andrew Mackenzie
I looked into FM receivers a little. Its not supported in Android itself. OEMs (e.g. Samsung) add specific hardware and an app that uses a native library of theirs (thats tied to specific radio controller chip). You can find a radio app project on the web, but it will only work with phones

[android-developers] Re: How can we open browser in Android through code?

2013-10-22 Thread Andrew Cesario
If I use this code, I get the following: === Multiple markers at this line - Return type for the method is missing - Syntax error on token intent, VariableDeclaratorId expected after this token - intent cannot be resolved to a type === I am specifically trying to link

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

2013-10-19 Thread Andrew Mackenzie
Yes. Use include or ViewStub if not always visible. Depending on your layout, consider using a merge tag as root of included layout to remove a layer from your view hierarchy (for speed and memory). -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Re: java.lang.NoSuchMethodException: setCompatibilityInfo

2013-10-10 Thread Andrew Esh
It looks to me as though you are trying to use a version of CompatibilityInfo which existed as late as Android version 2.3.7-r1, but does not exist in 4.0.1-r1. The class is still there, but it no longer has a public method that takes just one argument. I am guessing that you are calling

[android-developers] Re: New Android ORM/Persistence Library

2013-10-05 Thread Andrew Mackenzie
How does the final size compare to running Proguard on the original (when used in an app) on 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

[android-developers] Uri for accounts table in contacts db

2013-10-03 Thread Andrew Mackenzie
The contacts content provider is quite complex, with three tables for contact' raw contact and data. I suggest you read the long explanation of it in developer.android.com there the answers to your questions are provided, with a number of constants for Uris and also field names. BTW: be sure

[android-developers] Copy Image from Users Gallery to folder on SDCard

2013-10-03 Thread Andrew Mackenzie
Its been a while, and I would need to search for code, but I think: You will need to take the Uri you get in share action, and do a MediaQuery to find the source file or get a stream to read it from. It could be on sdcard or main memory or maybe even Picasa only having thumbnails locally. It

[android-developers] Copy Image from Users Gallery to folder on SDCard

2013-10-03 Thread Andrew Mackenzie
Also, I'd avoid hard coding any paths or the use of external storage - it might not exist. If you need storage then use getters for paths (getCacheDir(), getExternalCacheDir(), get public, get external public, etc). Try external first and if you get a null, fall back to the internal storage

[android-developers] android proguard is not working for the that is activated by the reflection?

2013-09-26 Thread Andrew Mackenzie
Look at the classes youbarebusing tibdi that, then add instructions to your proguard config file (in project root) to have it NOT obfuscate or remove those classes or methods or the classes or methods they access by name. -- You received this message because you are subscribed to the Google

Re: [android-developers] Run http server in android

2013-07-01 Thread Andrew Brampton
I adapted Nanohttpd to work on Android: https://github.com/bramp/NanoHTTPd you can easily adapt that to make it a proxy. On 1 July 2013 04:15, jrichards1...@googlemail.com jrichards1...@gmail.comwrote: anyone? -- -- You received this message because you are subscribed to the Google Groups

[android-developers] did something happen to GooglePlay Alpha testing today?

2013-06-28 Thread Andrew
I am going through the steps for Alpha testing an app on GooglePlay for the first time. This morning, I uploaded an APK to the Alpha Test tab of the Developer Console and Published the app. (My understanding is that because I have not uploaded any APK to the Production tab, the App is still

[android-developers] Re: did something happen to GooglePlay Alpha testing today?

2013-06-28 Thread Andrew
It appears that com.android.vending is causing a SIGSEGV (SEGV_ACCERR). Perhaps this is the wrong forum since this appears to be a Google service issue. Can someone suggest where I should go? -- -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] ProGuard fails on PhoneGap sample project

2013-06-11 Thread Andrew
make some progress? As a start, can someone explain why adding the directive -keep public class android.webkit.** has no effect on the warnings? By my understanding of ProGuard syntax, it should fix them all. Any ideas appreciated at this point. Andrew Here are links to my posts

[android-developers] Android Studio for IntelliJ - Plugin

2013-05-16 Thread Andrew Weir
Morning, Does anybody know (or is it reasonable to expect) Android Studio to be available as a plugin for existing license holders of IntelliJ 12? -- -- 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] Cannot update APKs - Forbidden to downgrade devices...

2013-04-22 Thread andrew
Hi everyone, I've inherited an Android game from a previous developer. I've made an update and am trying to upload the new APKs (four - one for each texture compression type) to the new developer console. Because there are multiple APKs per version, I have to use the advanced version of the

[android-developers] Showing PopupWindow from IME: BadTokenException

2013-01-07 Thread Andrew Samaha
I'm trying to make a popup window appear from an IME service (an onscreen keyboard) that has no activity. When I call popUp.showAtLocation(layout, Gravity.CENTER, 0, -100) I get a Windowmanager$BadTokenException: Unable to add window -- token null is not valid. Here is my code: public void

[android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
The SDK docshttp://developer.android.com/guide/topics/security/permissions.htmlsay that by default, Android apps do not request any permissions. However, when I generated a Hello World apphttps://play.google.com/store/apps/details?id=us.yellosoft.helloandroid, it requires three permissions:

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
Thank you, that's a good explanation. How exactly should I edit AndroidManifest to remove these permissions? On Dec 14, 2012 1:28 PM, Mark Murphy mmur...@commonsware.com wrote: On Fri, Dec 14, 2012 at 1:22 PM, Andrew Pennebaker andrew.penneba...@gmail.com wrote: The SDK docs say

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
android:targetSdkVersion=integer android:maxSdkVersion=integer / On Fri, Dec 14, 2012 at 1:50 PM, Andrew Pennebaker andrew.penneba...@gmail.com wrote: Thank you, that's a good explanation. How exactly should I edit AndroidManifest to remove these permissions? On Dec 14

Re: [android-developers] Why does my Hello World app require three permissions?

2012-12-14 Thread Andrew Pennebaker
...) kris On Fri, Dec 14, 2012 at 2:02 PM, Andrew Pennebaker andrew.penneba...@gmail.com wrote: What's the lowest SDK veraion that gets rid of these permissions? I'd like to support Gingerbread without any extra permissions if possible. On Dec 14, 2012 1:56 PM, Kristopher Micinski

[android-developers] app distribution best practices

2012-12-07 Thread Andrew
I am nearing the point of releasing my first Android app. I anticipate needing to distribute from a website as well as from Google Play. I know that enabling the install is as simple as providing an HTML link to the .apk file, but I'd like to at least follow best practices with regard to

Re: [android-developers] Re: Network error IOException while trying to Sync Data From SQL Server

2012-11-18 Thread Andrew Mackenzie
Have you tried the loop back address for the PC 10.0.2.2 from your Android device? -- 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

Re: [android-developers] Need Advice in Syncing Data From Android Device to SQL-Server Database

2012-11-17 Thread Andrew Mackenzie
Aadi, just to understand more what you want: You're trying to have an Android app read/write to a SQLite database running on your PC, using the USB connection? That doesn't sound easy, and I'm not sure it's possible. To get access over IP to the PC you will have to start by using the loopback

[android-developers] Re: My First App

2012-11-08 Thread Andrew Long
I can only seem to run the SDK manager in Eclipse. When I select it from windows explorer (even as administrator) nothing seems to happen. Any pointers? Many thanks Andy On Monday, 1 October 2012 08:17:58 UTC+1, ALAN IVAN AYALA NAVA wrote: El viernes, 17 de agosto de 2012 12:13:11 UTC-5,

[android-developers] Re: File not found

2012-11-08 Thread Andrew Long
Thanks for your help, but when I can only seem to open the SDK manager from within Eclipse. When I try and run the SDK Manager.exe from windows explorer (even as administrator) nothing happens. Am I missing something? Andy On Saturday, 18 August 2012 13:01:03 UTC+1, Swami R wrote: Hi All,

[android-developers] Who calls the lifecycle handlers of Activity components?

2012-11-01 Thread Andrew
Dear friends, I do not know whether this group is a good place to ask this question. But I really wish to know who calls the onCreate()... lifecycle handlers of Activity components. By all means, an Android application is not a complete program: no entry (main) functions, loosely coupled event

[android-developers] Fancybox: cannot scroll on Android phones

2012-10-29 Thread Andrew Canfield
I am using Fancybox to output the results of a calculator on my website: inlandprotitle.com Output looks good on desktop and iphone (using: -webkit-overflow-scrolling: touch;). Output is cropped on android phones. Is there someway to enable fancybox scrolling on the android phone? -- You

[android-developers] Re: gcm starter. problem with google's demo gcm project.

2012-10-26 Thread Andrew Mackenzie
Hi gillib. When I used the C2DM (previous to GCM) example project for a university class it had a number of bugs and needed editing - mainly on the Android side. The generated code for the RPCs between Android device and AppEngine server code were not being generated properly. There were a

Re: [android-developers] Re: It seems easy to get rid of a competitor’s app

2012-10-21 Thread Andrew
I cannot believe that this is really happening! Is it? Andrew On Wednesday, 17 October 2012 12:57:05 UTC+2, Peter wrote: This does not seem to be the first time they are doing this: * https://www.google.com/transparencyreport/removals/copyright/requests/341196/ *https

[android-developers] Re: ListView doesn't refresh when last item is deleted

2012-10-20 Thread Andrew Mackenzie
I've also had problems getting notify to work, and resorted to using invalidate() (I think that's the name, but which from memory maybe deprecated??) and even just detecting that change in my List Activity and doing the query for the cursor again. I'm pretty sure there is a more recommended,

[android-developers] Re: Difference between Android and Linux Kernel ?

2012-10-20 Thread Andrew Mackenzie
I thought I recently saw some news (Linux Kernel release notes??) about the latest kernel release incorporating (some of? all of?) the modifications that Android had made, hence merging them back into the main trunk of development. Whether Android then choses to actually that stock kernel over

[android-developers] Re: Play Store - APK free for a limited time??

2012-10-16 Thread Andrew Cesario
I'm sure there is a way to do this. Do you mean you want it to be a trial period? or do you want to put a trial app, and your full app?functionality? You could probably package 2 apps... let me know your intention. -ac On Tuesday, October 16, 2012 12:11:13 PM UTC-4, galone wrote:

[android-developers] Ways that 2 Android phones communicate between each other

2012-10-13 Thread Andrew Mackenzie
Depends on size of what you want to send, and how long the connection should last If its a list you want: SMS Nfc - he needed Bump QR code on screen - QR code scanner Audio Bluetooth Wifi direct Wifi via 'relay' server If its a solution you want, then maybe give us some more information

Re: [android-developers] Re: Warning users of strong magnetic field

2012-10-13 Thread Andrew Gregory
Use android.hardware.GeomagneticField and warn when the actual field is significantly above or below what is expected. -- 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

[android-developers] Re: testing in app billing - I can't repurchase after refunding

2012-10-12 Thread Andrew Kao
Any news from Google on when this would be fixed? On Thursday, September 6, 2012 4:39:27 PM UTC-7, spocky12 wrote: Thanks god I found your post. It's been 2 days I started implementing in-app billing and I really thought it would never be done. Now I know I'm not crazy and that there's

Re: [android-developers] How to Sync Database Data to a Desktop Application without internet connection..

2012-10-12 Thread Andrew Mackenzie
Do you want to have a true bidirectional sync, where changes can be made on both sides offline then copied over and conflicts resolved? Do you want both to edit the sole sqlite DB from mobile and PC (while connected)? That would need transactions etc Or do you want your mobile app DB

[android-developers] How to deliver a free app, but purchase expansions?

2012-10-09 Thread Andrew Cesario
I am designing my first game for android and I would like to give away the base game which would be downloaded for free. This is a single player rpg, designed for use without internet access. If people like it they can then buy other maps...like dungeons... or different weapons, scrolls etc..

Re: [android-developers] Re: How to deliver a free app, but purchase expansions?

2012-10-09 Thread Andrew Cesario
Look at how they manage in-app purchases. On Tuesday, October 9, 2012 1:43:19 PM UTC+1, Andrew Cesario wrote: I am designing my first game for android and I would like to give away the base game which would be downloaded for free. This is a single player rpg, designed for use without

[android-developers] Re: Google has received a subpoena seeking information related to Android applications

2012-10-03 Thread andrew mcmillan
While the FBI representative may well say Google should not have sent those emails. they are probably expressing more of a desire, than identifying an error. I am personally very happy that Google think they should notify me if my name is included in a list of data sent to the FBI, as it will

[android-developers] Re: custom attributes in library projects

2012-10-03 Thread Andrew Mackenzie
So, having read the entire thread: we're still stuck on this one? Define a custom XML *something* (string, attribute, color, style) in a library project, and then refer to it in XML (say layout, drawable definition, etc) in an App cannot be done? -- You received this message because you are

Re: [android-developers] Re: Menu icon contrast

2012-10-01 Thread Andrew Gregory
OK. Thanks for the various suggestions. I'll think about things a little more, but it seems UgglyNoodle's suggestion is going to end up being the best. It looks like I should be able to do nice white icons for Honeycomb+ and my existing light gray for everything else. Thanks to all! Andrew

[android-developers] Re: What is the best phone to buy for Android Development?

2012-10-01 Thread Andrew Cesario
You dont even need a phone to test your apps. You can test using the eclipse sdk. However, it is nice to have a phone... doesnt matter which one... to see your apps working. That being said, if I were going to buy a new phone I would buy something with the latest system version, but be sure

Re: [android-developers] Re: Menu icon contrast

2012-09-29 Thread Andrew Gregory
into that. Are there no system calls that can help here? Query the current display settings or something? Cheers, Andrew -- 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] Menu icon contrast

2012-09-28 Thread Andrew Gregory
? -- Andrew -- 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

Re: [android-developers] Re: print integer value in logcat.

2012-09-11 Thread Andrew Gregory
On 11 September 2012 20:44, pharaoh edelcides.goncal...@gmail.com wrote: Try this solution : (...) int age = 22; Log.d(MY_TAG, new Integer(age).toString()); (...) That's a wasted allocation when there's a static toString: Log.d(MY_TAG, Integer.toString(age)); -- Andrew -- You received

[android-developers] android winusb driver -- odd behavior effecting adb

2012-09-02 Thread Andrew
that recommends something I haven't tried already. Anyone know how to fix this? Thanks, Andrew -- 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: C2DM problem

2012-08-31 Thread Andrew Mackenzie
GCM replaces C2DM and uses Google broader API control mechanisms. I suggest you start here: http://support.google.com/googleplay/android-developer/bin/answer.py?hl=enanswer=2663268 -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to

[android-developers] Recommendations for XML parsing/generation libraries

2012-08-21 Thread Andrew Mackenzie
standard: efficient use of memory, and reasonable speed. thanks in advance, Andrew -- 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] Jelly Bean has taken over the Search button

2012-08-16 Thread Andrew Mackenzie
In our application we enabled search (triggered when the user pressed the Search/Magnifying-glass key on device) in a number of Activities using these entries in the manifest: meta-data android:name=android.app.default_searchable

[android-developers] Re: Reference an integer resource for Android manifest versionCode

2012-08-16 Thread Andrew Mackenzie
See my answer to this stackoverflow question that describes how I ended up doing this: http://stackoverflow.com/questions/6018079/reference-an-integer-resource-for-android-manifest-versioncode/6691703#6691703 -- You received this message because you are subscribed to the Google Groups Android

Re: [android-developers] Re: Jelly bean accessibility service needing android.permission.BIND_ACCESSIBILITY_SERVICE. Backwards compatibility

2012-07-30 Thread Andrew Moore
I find it works, but only if declaring the settings in xml and not in code. On 30 Jul 2012 10:57, Pent supp...@apps.dinglisch.net wrote: I've setup a new accessibility service with the BIND permission: service android:label=Tasker - JB

Re: [android-developers] Re: Jelly bean accessibility service needing android.permission.BIND_ACCESSIBILITY_SERVICE. Backwards compatibility

2012-07-30 Thread Andrew Moore
I know it's not ideal for my app either and means there's lots of additional activity taking place because I can't restrict the package monitoring as much as i would like. On 30 Jul 2012 12:30, Pent supp...@apps.dinglisch.net wrote: I find it works, but only if declaring the settings in xml and

Re: [android-developers] Re: Jelly bean swiping task away from task list kills service

2012-07-24 Thread Andrew Moore
Here's the apk: https://docs.google.com/open?id=0B9RsW3kcQ9jPem9PLVIxdWdlQlU On 24 Jul 2012 08:08, Dianne Hackborn hack...@android.com wrote: Could you include a binary? I just want to see what the platform is doing; I don't need to look at the code. Thanks! On Mon, Jul 23, 2012 at 10:40

[android-developers] Re: onSaveInstanceState() killed by OS

2012-07-23 Thread Andrew
, Andrew wrote: Hello, I'm experiencing an unexpected OS behaviour; mentioned at least on Android 2.x, possible applicable to newer versions too. When OS calls onSaveInstanceStatehttp://developer.android.com/reference/android/app/Activity.html#onSaveInstanceState(android.os.Bundle

Re: [android-developers] Re: onSaveInstanceState() killed by OS

2012-07-23 Thread Andrew
11:38:11 AM UTC-4, Mark Murphy (a Commons Guy) wrote: On Mon, Jul 23, 2012 at 11:14 AM, Andrew wrote: I was not trying to save state for orientation change, but for general application state preserving while getting into background in case OS decided to kill/restore application

Re: [android-developers] Re: onSaveInstanceState() killed by OS

2012-07-23 Thread Andrew
? Thanks, Justin Anderson MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Jul 23, 2012 at 9:57 AM, Andrew andrew.masl...@allegrowireless.com wrote: In fact - it is called every time our state needs to be saved. Anyway, looks like this method should be extended only

Re: [android-developers] Re: onSaveInstanceState() killed by OS

2012-07-23 Thread Andrew
MagouyaWare Developer http://sites.google.com/site/magouyaware On Mon, Jul 23, 2012 at 10:34 AM, Andrew andrew.masl...@allegrowireless.com wrote: No; this is a layered system and I don't have access to all the code involved anyway. I understand the purpose of this method is as per spec

Re: [android-developers] onSaveInstanceState() killed by OS

2012-07-20 Thread Andrew
19, 2012 5:06:10 PM UTC-4, Mark Murphy (a Commons Guy) wrote: On Thu, Jul 19, 2012 at 5:00 PM, Andrew wrote: So, basically the limit is ANR limit, correct? That's my guess. It's a guess, though. And, bear in mind that the ANR limit is merely the limit where Android will take action

[android-developers] onSaveInstanceState() killed by OS

2012-07-19 Thread Andrew
lengthy here. *Lengthy* is not a measurable thing :) TIA. Andrew. -- 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

Re: [android-developers] onSaveInstanceState() killed by OS

2012-07-19 Thread Andrew
So, basically the limit is ANR limit, correct? AFAIK this is ~3 seconds. This makes sense then. Thanks Mark. On Thursday, July 19, 2012 4:43:59 PM UTC-4, Mark Murphy (a Commons Guy) wrote: On Thu, Jul 19, 2012 at 3:53 PM, Andrew wrote: I'm experiencing an unexpected OS behaviour

[android-developers] Re: File location of database file by using SQLiteDatabase

2012-07-17 Thread Andrew Cesario
Alok You can find the database file in eclipse using the following navigation: While your emulator is running, click DDMS in the upper right. Then expand data, data, yourpackagname, database as shown below. From here you can delete, download, upload the db file. On Monday, July 16, 2012

[android-developers] Re: File location of database file by using SQLiteDatabase

2012-07-17 Thread Andrew Cesario
oops, it doesnt let me past the file... here it is attached. On Tuesday, July 17, 2012 8:53:07 AM UTC-4, Andrew Cesario wrote: Alok You can find the database file in eclipse using the following navigation: While your emulator is running, click DDMS in the upper right. Then expand data

[android-developers] Re: backend for app?

2012-07-15 Thread Andrew Cesario
Why not use Java, eclipse SDK, sqlite? (*mysql is way better than sqlite, but sqlite seems more direct for apps) On Thursday, July 12, 2012 3:50:39 PM UTC-4, dave wrote: is there a better backend for apps? i know php and mysql. should i just go with what i know? -- You received this

[android-developers] Re: sdk version Compatibility

2012-07-15 Thread Andrew Cesario
Not sure why my posts are not saving, but I have an app that is hitting the same problem with 4.0.4 for one of my users. The app launches, the splash screen shows, then the program crashes and locks up the device. No user errors or stack trace is loaded to my developer console. I have no

[android-developers] Re: sdk version Compatibility

2012-07-15 Thread Andrew Cesario
I have a user reporting the same behavior with 4.0.4. There are no errors listsed on my site, and he says that there are no errors or exceptions, the program just quits. I downloaded your app today but it doesn't work on my phone. I've got a new galaxy s 3. The app shows the splash screen

[android-developers] Re: sdk version Compatibility

2012-07-15 Thread Andrew Cesario
Reshmy I looked into my stack trace and found a couple of problems. Both were sqlite related and I fixed them with a few lines of code change. Do you have a stack trace? -ac On Thursday, July 12, 2012 9:37:37 AM UTC-4, reshmy anup wrote: Hi.. I have created an android application in sdk

Re: [android-developers] Re: backend for app?

2012-07-15 Thread Andrew Cesario
, 2012 at 9:55 PM, Andrew Cesario andrewcesa...@gmail.com wrote: Why not use Java, eclipse SDK, sqlite? (*mysql is way better than sqlite, but sqlite seems more direct for apps) On Thursday, July 12, 2012 3:50:39 PM UTC-4, dave wrote: is there a better backend for apps? i know php

[android-developers] Re: Eclipse Android Virtual Device on the retina MacBook Pro

2012-07-12 Thread Andrew Chen
I have an macbook pro retina and experience the same issue..what's the fix? On Friday, June 22, 2012 11:39:13 AM UTC-7, Diveflo wrote: Hi, I found the following issue while developing an Android app with Eclipse on my new MacBook Pro with retina display. Whenever I launch the Android

[android-developers] Problems with talkback in ICS

2012-06-27 Thread Andrew
I'm writing an accessibility app that seems to work ok on gingerbread builds and some ICS builds, but I seem to have problems with ICS samsung phones - particularly the galaxy nexus and s3. As soon as I enable the accessibility service registered for my app it seems to enable talkback for

[android-developers] Android in app billing claims to not be supported using sample code

2012-06-21 Thread Andrew Armstrong
Can somebody please help me solve this problem : http://stackoverflow.com/questions/11075585/android-in-app-billing-claims-to-not-be-supported-using-sample-code Thank you -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this

Re: [android-developers] Programmatically delete a home-screen shortcut

2012-06-18 Thread Andrew
Romain, I believe I'm doing something simple wrong, the code below can install shortcut, but removal silently fails (no exceptions or errors in logs except that I see a single line mentioning that ActivityManager processed the call). Tested on Android 2.3.4 phone and on Android 4 tablet with

[android-developers] build non-stub version of android.jar

2012-06-14 Thread Andrew
The android.jar found in android-sdk is simply a stub. All methods will throw a runtime exception stub! Do anyone know how to get a non-stub version of android.jar? Or how to build one from the android source code (not android OS source code, I mean Android library code)? Thank you! -- You

[android-developers] Graphical artifacts when scrolling a ListView inside a LinearLayout

2012-05-27 Thread Andrew Stephan
I'm developing an app that has a ListView inside a LinearLayout. There are enough rows in the ListView to make the user have to scroll to see the bottom of the list. When I do scroll, I'm getting some weird graphical artifacts. For example, if I scroll to the bottom and hold it, that blue

[android-developers] Implementing Google Maps into Android 2.3.3 platform app

2012-05-25 Thread Andrew Liu
Hello, I'm trying to add a google map into my app.. Do I need to use the Google API? is there a way to keep my platform without switching? Can I switch? Is there a difference if I switch over to Google API? I've added uses-library android:name=com.google.android.maps / Is this the only

[android-developers] Samsung Galaxy Gio Stuck at Startup

2012-05-21 Thread andrew smart
Hi, I got galaxy gio, which has Android 2.3.3, today at a worse moment of my life, I update my gio from Setting About Phone Update then it ask me for sign in, I login then it start updating after some time it says your phone is now restarting, then a 20 - 30 mints loading comleted and it

[android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-05-21 Thread andrew android
Google must do something about this. I had even devised a simple method of discouraging (rendering ineffective) the most basic LVL hack. It simply involved using bogus qualifications and setting a boolean switch to indicate if a negative value returned, then only accepting a positive value

[android-developers] LVL suddently stopped working - returns only timeouts

2012-05-20 Thread andrew android
I have had LVL (licensing validation) in my apps ever since it was first available and suddenly in the past few weeks, without any changes made by me, I have only received timeout errors - even when I increase the timeout set in licenseChecker.java. I have checked and rechecked all of my codes

[android-developers] Re: [Android LVL] Sporadic false negatives on client devices

2012-05-20 Thread andrew android
I am having the same issues. I just created another thread on this. I have been using LVL for a while now and this has been getting worse the last few weeks. On Monday, May 7, 2012 8:07:23 AM UTC-5, Florin wrote: Hello, I have an Android developer account and a couple of paid apps

Re: [android-developers] OpenGL ES 2 support in emulator?

2012-05-15 Thread Andrew Demidenko
with adequate drivers. There is no ETA at the moment. FWIW, I gave a demo of the emulator running with x86 and OpenGL ES 2.0 at the GDC in San Francisco a couple of weeks ago. On Thu, Mar 22, 2012 at 5:56 AM, Andrew Demidenko demon2...@gmail.com wrote: any news? On Saturday, May 21

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-26 Thread Andrew Gregory
://en.wikipedia.org/wiki/GPS_signals -- Andrew -- 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

Re: [android-developers] Re: How to get accurate time stamps from Android GPS location.

2012-04-25 Thread Andrew Gregory
Yeah, I'm pretty sure you can't send commands to the Android GPS device. You'd probably need to be root and figure out the underlying device. -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

  1   2   3   4   5   >