The strictmode tag has no wiki summary.
12
votes
2answers
2k views
Should accessing SharedPreferences be done off the UI Thread?
With the release of Gingerbread, I have been experimenting with some of the new API's, one of them being StrictMode (http://developer.android.com/reference/android/os/StrictMode.html)
I noticed that ...
11
votes
6answers
3k views
Gingerbread emulator instance is much more sluggish than Froyo and below. Why?
I'm not sure if anyone else noticed it, but the Gingerbread emulator runs like a dog, with both scrolling, navigating, interaction - all taking much longer and being much choppier. I even got an ANR ...
7
votes
4answers
865 views
StrictMode for lower platform versions
I have started using the Android StrictMode and find that it would be great to have it always running during development and not just on a special branch I created in git. The reason I did this is my ...
6
votes
2answers
3k views
Android Honeycomb: NetworkOnMainThreadException even when using AsyncTask and no strict mode?
I run into a NetworkOnMainThreadException with my Android 3.0 app.
Searching for a solution I found this, but if I understand this correctly, default setting would be that the strict mode is turned ...
6
votes
3answers
581 views
Two functions with the same name in JavaScript - how can this work?
AFAIK function foo() { aaa(); } is just var foo = function(){ aaa() } in JavaScript. So adding functtion foo() { bbb(); } should either overwirte the foo variable, or ignore the second definition - ...
5
votes
1answer
326 views
Strict mode alternatives to this instanceof arguments.callee
There's an old trick (that I learned on SO) to catch calling a constructor as a function, i.e. forgetting the new keyword. The following, or something like, it goes in each constructor at the top.
if ...
4
votes
1answer
332 views
Android StrictMode reporting false positives
I have been trying to run my application in StrictMode to check for any hidden problem that may have sneaked. One issue I ran across is what seems to be a false positive of Leaked DatabaseConections ...
4
votes
1answer
550 views
Android StrictMode InstanceCountViolation
I am running my app with StrictMode activated in development as documented here StrictMode for lower platform versions
and noticed an error message that I do not know what to think about nor can I ...
4
votes
1answer
478 views
Detecting forgotten SQLite transaction on Android using StrictMode?
Executing multiple SQL statements without putting them into one transaction is a severe bottleneck (see e.g. http://www.sqlite.org/faq.html#q19). I haven't thoroughly checked how SQLite is configured ...
3
votes
1answer
88 views
StrictMode prior 2.3
I was googleing the enableing StrictMode prior 2.3 but I couldn't find anything useful. All I found was that StrictMode is introduced in 2.3 and you can use reflection to check if there is strict mode ...
3
votes
3answers
588 views
Can I disable ECMAscript strict mode for specific functions?
I don't find anything about my question here on MDC or the ECMAscript specifications. Probably somebody knows a more 'hacky' way to solve this.
I'm calling "use strict" on every javascript file in my ...
3
votes
2answers
224 views
Retrieve “self” function in the strict-mode JavaScript
I often need in a function f to retrieve a name of the method that points to f. For example. Let's say we have a getMethodName(obj, methodFunction) function that uses foreach on obj to find a property ...
3
votes
3answers
950 views
Definition of DEVELOPER_MODE for StrictMode
I'm anxiously awaiting the opensource release of StrictMode for continuation of our platform development. The sample in the blog at ...
2
votes
2answers
702 views
StrictMode + Analytics
I am using Google Analytics for Android but after turning on StrictMode I get a lot of message like this:
StrictMode policy violation; ~duration=349 ms: ...
2
votes
2answers
2k views
Ksoap2 is not working in android 3.0 getting NetworkOnMainThreadException
Ksoap2 is not working in Android 3.0. Logcat shows NetworkOnMainThreadException:
02-24 20:18:34.536: ERROR/AndroidRuntime(428): java.lang.RuntimeException: Unable to start activity ComponentInfo{com. ...
2
votes
1answer
1k views
DropBoxManager use cases?
I noticed that a DropBoxManager has been introduced in Android API since FroYo (API 8).
It looks like an alternative logger capable of logging not only text but also files or byte arrays, but I could ...
1
vote
1answer
156 views
StrictMode is throwing DatabaseObjectNotClosedException when using CursorLoader and leaving the current activity
I'm using a very basic example where I create a CursorLoader with a uri from my content provider and populate a map. Everything works smoothly but when I leave that activity I get a ...
1
vote
1answer
493 views
MapActivity with StrictMode does not work - Help
After reading Tim Bray's post "New Gingerbread API: StrictMode" on the Android developer's blog, I decided to start using it on my projects. I'm hoping to help catch performance problems before they ...
1
vote
3answers
495 views
Should I disable MySQL strict mode?
I have been working on a site that had MySQL strict mode enabled. One person had a long user agent string that was logged in our log table and unfortunately the user agent string exceeded the limit ...
1
vote
1answer
592 views
What is the lifecycle for Android's StrictMode?
I'm trying to minimize the number of places in my code where I need to setup StrictMode. But I'm not sure if I'm right or not about the following.
The documentation for Android's StrictMode says you ...
1
vote
1answer
1k views
StrictMode confusion - how is this the wrong thread?
My issue:
12-18 17:05:03.336: DEBUG/StrictMode(2112): StrictMode policy violation; ~duration=2073 ms: android.os.StrictMode$StrictModeDiskReadViolation: policy=23 violation=2
From the factory ...
1
vote
1answer
548 views
Doing File I/O on Android - Which thread does it belong on
After reading Brad Fitzpatrick's article on StrictMode I'm left with a few questions.
Where does File I/O belong in my applications? (I know the UI thread is wrong but could spawning a new thread be ...
0
votes
0answers
94 views
Android StrictMode documentation
I have an android app for which logcat shows:
DEBUG/StrictMode(81): StrictMode policy violation; ~duration=3376 ms:
android.os.StrictMode$StrictModeDiskReadViolation: policy=151
violation=2
...
0
votes
2answers
226 views
Strict mode in android 2.2
I have target sdk set as 3.2 and min sdk as 2.2, how can I use strictmode in my application, as I understand it is introduced but cannot really understand how to start using it.
0
votes
1answer
264 views
Android WebView causes StrictMode violation
I'm noticing that StrictMode is complaining quite loudly about WebView creation. Is there any way to improve the startup performance of a WebView object? I'm instantiating from XML in my onCreate() ...
0
votes
0answers
370 views
Opening a sub-activity several times causes an InstanceCountViolation despite being destroyed
I'm working on a project that has a lower level activity called RecordView to display record details such as an image, the date and time it was taken, and the latitude/longitude information. Rather ...
0
votes
2answers
301 views
Where is the Android StrictMode implemented?
I'm looking to extend the StrictMode API, similar to what is suggested in this StackOverflow question. I saw that the API was extended in Honeycomb to include a detectCustomSlowMethod() API, which ...