Re: [android-developers] Re: Should SQLiteDatabases be limited to 2Gig?

2013-09-20 Thread Anthony Prieur
From my guess the database gets corrupted because of (some) flash disk controllers that lie to the OS and do not flush/sync properly the FS before crash/reboot, so even with transactions the DB gets corrupted in some cases. Le vendredi 20 septembre 2013 02:34:51 UTC+2, Kostya Vasilyev a écrit

[android-developers] Python 3 APK

2013-04-13 Thread Anthony Prieur
Hi, For Python 3 devs who want to embed their code in an APK I just added the Python 3 apk template: http://code.google.com/p/android-python27/ A. -- -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: GC calls from other processes causing slowdown (?)

2013-03-31 Thread Anthony Prieur
The frame drop looks huge as since Gingerbread the GC is clamied to work concurrently. On Sun, Mar 31, 2013 at 4:38 PM, Jason Polites jason.poli...@gmail.comwrote: I'm 90% sure it wasn't, but I make this claim based on profiling heap allocations and I don't think I confirmed that the process

[android-developers] Re: Enumerate sd cards

2013-03-14 Thread Anthony Prieur
I'm using this : http://renzhi.ca/2012/02/03/how-to-list-all-sd-cards-on-android/ Le jeudi 7 mars 2013 05:29:26 UTC+1, yve...@gmail.com a écrit : I am trying to develop an app which has a feature like FTP. So, at the beginning, I want to enumerate all sd card storages on the device, and ask

[android-developers] Accelerated HTML Rendering issue (relative vs absolute position)

2013-02-08 Thread Anthony Prieur
Hi, Using a Webview to render content, I noticed that Hardware Acceleration (ICS) triggers rendering issues when HTML elements are using absolute positions, relative positions are fine. Is it normal or know Webkit behaviour ? I would have thought WebKit's HTML parser would parse, and

Re: [android-developers] is Google going to ship Chrome as a default browser for next OS release

2013-01-31 Thread Anthony Prieur
What about the Java Webview binding then, would it be replaced by a ChromeView ? Le jeudi 31 janvier 2013 14:50:54 UTC+1, Dan a écrit : On Wednesday, January 30, 2013 9:21:26 PM UTC-5, Mark Murphy (a Commons Guy) wrote: We will find out when the next version of Android ships. I will be

[android-developers] Android memory usage API (USS/PSS) Vs smem report

2012-12-27 Thread Anthony Prieur
Reading how to mesure accurately a process memory usage (http://elinux.org/Android_Memory_Usage), I've been using USS provided by PrivateDirty: http://developer.android.com/reference/android/os/Debug.MemoryInfo.html Per D. Hackborn comment

[android-developers] Set android:largeHeap = true programmatically ?

2012-11-14 Thread Anthony Prieur
I saw since API 11 we can add in the AndroidManifest.xml: android:largeHeap = true Can I set this programmatically ? Thanks -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to

Re: [android-developers] Re: How to improve image quality in Android Webkit (comparing with iOS)

2012-11-01 Thread Anthony Prieur
Sorry I've no example myself, you would find on the net. On Thu, Nov 1, 2012 at 8:35 PM, huberte svend.wal...@gmail.com wrote: thanks Anthony, may I have a code example please ? Le mercredi 31 octobre 2012 06:39:24 UTC-4, Anthony Prieur a écrit : You might get better results trying to use

[android-developers] Re: How to improve image quality in Android Webkit (comparing with iOS)

2012-10-31 Thread Anthony Prieur
You might get better results trying to use the Javascript 'viewport'. Le mardi 30 octobre 2012 16:24:26 UTC+1, huberte a écrit : Trying to load http://www.sciences-physiques.eu/appli/oneimage/ both in iOS and Android (SGS2). Image is 1600*2262 The result is a better image on iOS. I know

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

2012-10-19 Thread Anthony Prieur
You might want to take a look at Linaro toolchain which speedup a lot Android: http://www.youtube.com/watch?v=mrQRYmYip6Q Le vendredi 19 octobre 2012 08:13:53 UTC+2, chain_chelliah a écrit : I know Android uses the Linux kernel. I hope the Android developers did some modification with

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

2012-10-19 Thread Anthony Prieur
device as developing kit. Is this OS support in ARM platform. If so, where i can download it. On Friday, October 19, 2012 12:32:36 PM UTC+5:30, Anthony Prieur wrote: You might want to take a look at Linaro toolchain which speedup a lot Android: http://www.youtube.com/watch?v=mrQRYmYip6Q Le

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

2012-10-19 Thread Anthony Prieur
Asks directly to Linaro team, would be better infos there. On Fri, Oct 19, 2012 at 9:54 AM, chainz roid sangilikumar.muniya...@marudham.co.in wrote: Hello Mr.Anthony Prieur chain_chellaih using Beaglebone. but in the download link, which one yo give the target boards are

[android-developers] Re: GPU Acceleration - still not worth using on 4.1.1?

2012-10-16 Thread Anthony Prieur
Is anyone else seeing as much weirdness with GPU accel as I am? I do see troubles too with GPU, especially this one: ICS WebView blinks when Hardware Acceleration is used http://code.google.com/p/android/issues/detail?id=25722 , very annoying as no HW acceleration = no HTML5 video tag

Re: [android-developers] startActivityForResult() from service

2012-10-12 Thread Anthony Prieur
Create a custom facade for the built in SL4A RPC server as explained here: https://code.google.com/p/android-python27/wiki/TutorialHowToCreateCustomRpcFacade And POST the result back to Java from you Python script e.g. droid.myResult(xxx) Le jeudi 11 octobre 2012 14:27:17 UTC+2, Archana a

[android-developers] Re: Video (VideoView) flickering and/or doesn't display on ICS (but works fine on Android = 2.x)

2012-10-12 Thread Anthony Prieur
Does changing android:targetSdkVersion=15 to android:targetSdkVersion=11 change something ? I noticed in my app (Webview/VideoView)that the behaviour is different. Removing the HW acceleration fixed the flicking for me. Le lundi 7 mai 2012 08:34:17 UTC+2, Mathias Lin a écrit : I have an app

[android-developers] Re: Why would SIGSEGV crash occur in Galaxy S3 Android WebView?

2012-10-12 Thread Anthony Prieur
Try HW acceleration ON or OFF, ICS Webview has troubles with some CSS/CSS3 + HW acceleration. Also try to lower android:targetSdkVersion to 11 for example. Le jeudi 11 octobre 2012 08:09:54 UTC+2, Johnabre a écrit : I have a complex, interactive HTML5 in an Android WebView - and it works

[android-developers] Re: Android App - Python+Eclipse

2012-09-29 Thread Anthony Prieur
You can use https://code.google.com/p/android-python27/ to embed your project (+Python2.7 interpreter) in an APK. Le jeudi 20 septembre 2012 23:09:33 UTC+2, Prat a écrit : Hello, I am a beginner of android apps. I am using eclipse to develop an android app for samsung galaxy tab. I have