Android :: Instrument Code To Find OutOfMemory Error In WebView?
Apr 21, 2009
I sometimes get bug reports that are caused by an OutOfMemory error. It happens when creating a bitmap, but I am pretty sure that it is not the bitmap size that is the real problem, because the instantiation of those images happens > 100.000 times a day without an error report. Those png images are of 4K size (on disk) anyway.
Those bug reports are very infrequent, but still I would love to get rid of them. I can't reproduce the memory growing over 10 MBs (actually way less) when using the app myself and monitoring the memory consumption in DDMS. I also, at no point in time, cache something or hold on to more than one item (article in my case) at a time, except in one list. There the list caches the visible components, which cannot amount to much too and is default functionality from the Android framework.
..........................
View 3 Replies
Mar 4, 2010
Is there a method to catch HTTP error codes with a WebView? Because my goal is to capture a 401 code but nothing happen with "onReceivedError".
View 3 Replies
View Related
May 21, 2010
I have a really long collection with 10k items, and when running a toString() on the object it crashes. I need to use this output somehow.
CODE:..........
Guide how to increase the heap for and Android application. I don't run the command line.
View 2 Replies
View Related
Nov 5, 2010
In my app, I am creating a bitmap from its colors code like this :
CODE:................
View 6 Replies
View Related
Jun 10, 2010
memory - after only 2-3 minutes I get Force Close and outOfMemory Error. I have only onCreate (I know, stupid, but I didn't knew for anything else as I started only few weeks ago) and inside I have...
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);
many lines of code...manipulating with SQLite databases...
}
View 10 Replies
View Related
Aug 25, 2010
I've been trying to make a simple live wallpaper out of a boot animation. So basically i have about 50 .pngs in my drawable folder. I'm able to set the animation to about 10-20 frames and it works great. But once i set it to about 30 frames...I get an OutOfMemory Error. I was hoping maybe someone could take a look at my code and maybe give an example of how I could achieve more frames? That would help so much i've been looking at this for hours > <
Here's my code:..................
And here's a logcat if that'll help at all:
CODE:...............
View 4 Replies
View Related
Aug 13, 2010
I would like to preemptively get the HTML code of a webpage that is to be loaded in a webView, parse it using regex, and display only the HTML code that I want, while letting the webpage still think it has loaded everything. Is there any way to do that in the WebViewClient.onLoadResource() or similar methods?
EDIT: I tried this:.............................
View 2 Replies
View Related
Mar 15, 2009
I wrote an app that, among other things, renders feed articles using WebView. Now I get error reports that seem to originate in WebView:
-- NewsRob Version: 1.7.0/170 -- Android Version: sdk=2, release=1.1, inc=128600 -- Thread State: RUNNABLE -- Stacktrace: java.lang.NullPointerException at android.webkit.CacheManager$1.run(CacheManager.java:391) at java.lang.Thread.run(Thread.java:935)
I've got another report with the same content, but a different incremental version of the sdk (126986). Probably one from the US and one from the UK. So now I would love to know why the code blows up and if there is anything I can do about it. And with the source files and line numbers I felt in good shape to so. If only I could match them to the public code repositories ;-(............................
View 5 Replies
View Related
Apr 8, 2009
My application generates an HTML file which needs to be displayed to the user . For this purpose I'm using the loadData() API provided by Webview. This HTML file is updated every 2 secs & the same is loaded again using loadData() to display the updated values. On reloading the file the Webview starts displaying again from the top of the file causing the user to always scroll down to the location where he previously was. This causes a very bad user experience. To overcome this issue an alternative that I could think of was to split the file to multiple files that can exactly fit in the the screen. For this I need to find the height of the HTML content that can loaded in a web view. From the WebView documentation I found that an API getContentHeight() is provided for this purpose. Although this method returns me 0 on the first attempt. On subsequent attempt it gives me the height of the page that was previously loaded.
View 3 Replies
View Related
Feb 1, 2010
Everytime i go to send a message it says sms error cause code 34 error class 2. i did a hard reset and it is still happening?
View 3 Replies
View Related
Feb 11, 2009
I don't know where to put the bug report of APIs.
I use WebView to display some pages in my dictionary software. I met some problems with WebView.
1) could not handle the color values When I use the HTML code: <font color="#00FF00"></font> the WebView could not handle this type of tags. But <font color="red"></font> can work well.
This bug exist both in SDK1.0 & SDK1.1
2) Chinese Char: I use UTF-8 as the charset, and if there exist some Chinese chars, then this HTML code could not be displayed in WebView: <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"></head> <body> <p><font color="red">[-------- 美国 统词典[双解] --------]</font></p> </body> </html>
This bug exists in SDK1.1.
View 11 Replies
View Related
May 8, 2012
how to program/write code on a "webview" in Android for loading a html file?
View 2 Replies
View Related
Jul 2, 2010
Where and how can I find and download Android 1.5 source code?
View 3 Replies
View Related
Apr 27, 2010
I know that I can get some informations from the Sim card by using the TelephonyManager class, but I couldn't find any specific method to get its country and area code, and also if the user is on roaming the area code would probably change to the location he currently is.
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+unsubscribe@googlegroups.com For more options,
View 2 Replies
View Related
Jun 18, 2010
I have just started learning to write apps for android using Eclipse. Where can I find free source code that I can use during my learning experience?
View 4 Replies
View Related
May 14, 2010
I found an app called I'M in Android's trunk on git, but that doesn't look like the Google Talk app that comes installed on Android phones.
Does anyone know if that source code is even published?
View 2 Replies
View Related
Mar 20, 2009
Who is JPARKS and why did he break it ?
View 4 Replies
View Related
Feb 23, 2009
Now, I am trying to verify the JNI in Android Java platform. I am using HTC G1 phone. I write a simple .c file to make a hello.so and a simple hello.java file to load the library. My story is like below:
1. create hellolib.c file and compiled to a hellolib.so create a folder in create a hellolib.c file hellolib.c, it really nothing just a function return;
*#include <jni.h>*
*#define .LOG_TAG "TestLib"*
*#undef LOG*
*#include <utils/Log.h>*
*JNIEXPORT void JNICALL java_com_testHelloLib_PrintHello(JNIEnv
* env, jobject jobj)*
*{* *LOGD("hello android LIB");* *}*
I compiled the hellolib.c to .so by changing the android.mk:
*LOCAL_PATH:= $(call my-dir) include $(CLEAR_VARS)*
*LOCAL_SRC_FILES := hellolib.c*
*LOCAL_C_INCLUDES := $(JNI_H_INCLUDE)*
*LOCAL_SHARED_LIBRARIES := libutils
LOCAL_PRELINK_MODULE := false*
*LOCAL_MODULE := libhello *
*include $(BUILD_SHARED_LIBRARY)
* push the libhello.so to /system/lib
2. create a .java file.
*public class HelloAndroid extends Activity {
/** Called when the activity is first created. */
@Override public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
TextView tv = new TextView(this);
native_test.add_xx(1, 2) ;* * }* * }
View 8 Replies
View Related
May 19, 2009
Getting error code 5 and unable to insert the data in the database, when more than one thread are trying to populate the data in database.
I am using the following versions - android sdk1.1 and sqlite 3.0.
View 2 Replies
View Related
Oct 30, 2010
Is anyone else recently having the problem with web browsers? The problem I am having is after a recent os upgrade to my dhd I get this message
http error code: 504
gateway time-out
It was with the default brwoser then i tried with another and got the same!
I can still use other apps like Twitter and facebook though, but web browsing is impossible.
View 2 Replies
View Related
Feb 3, 2010
I have a code for GLSurfaceView which runs fine with sdk 1.5. I am trying to use it in the sdk 2.0 I am getting following error - > "*Application called a GL11 Pointer method with an Indirect Buffer*"
This is the line at which the error is coming, *gl.glVertexPointer(3, GL10.GL_FLOAT, 0, slicesBuffers[i]);
*Please anybody explains me why this error comes & how to solve it?
View 4 Replies
View Related
Aug 25, 2009
Why I have this error? It' s the same java code than the following url:...........
View 6 Replies
View Related
Dec 24, 2009
What could be the reason, if I get such a strange error?
CODE:.................
I do not get a special line in my code. How can I find anything out, where the error in my code is?
And the LogCat says all the time:
CODE:............................
View 5 Replies
View Related
Oct 15, 2010
I'm creating a Thread and in that thread I open a database connection using the DBHelper, perform an update on a field in my database and close it. I create a separate one in the Thread because if the View is closed the global one for that view is closed, causing my Thread update to throw an error. The thread is in a View, that also has it's own instance of the DBHelper and opens the database onCreate closes it onPause opens it onResume closes it onDestroy The instance in my Thread is throwing this but not all the time :error code 5: database is locked Is there a known practice I should implement so I don't get this error?
View 9 Replies
View Related
Aug 23, 2009
I have different background threads in my application, one doing periodical database updates, another responsible for doing long searches and so. Obviously some are just reading from database while others are writing as well. Once in a while I get "database is locked" exception. I need to know the safe way of reading/writing from/to database on different threads. As well I've found "isDbLockedByCurrentThread()" and "isDbLockedByOtherThreads()" methods on SQLiteDatabase. Should I use them every time I want to access the database? What if the database is locked? Should I pause the current thread and retry a few milliseconds later?
View 5 Replies
View Related
Jul 16, 2009
I have downloaded the code successfully using "repo sync" on my linux system and now I want to buld it using make but it fails and telling that
"frameworks/policies/base/PolicyConfig.mk:22:*** No module defined for the given PRODUCT_POLICY (android.policy_phone) . stop. "
View 9 Replies
View Related
Nov 24, 2010
Can anyone tell me how to fix a code 98 error when trying to send texts?
View 1 Replies
View Related
May 27, 2010
I have followed the instructions on the Android website on how to download the latest android source code files but it gives errors when i run this command:
CODE:.....
It gives the following error:
CODE:....
On checking forums for its resolution, i was told that port 9418 was being blocked. I use Ubuntu 10.04 and ensured that the firewall wasnt blocking the port and also enabled the port and the above IP addresses. I also spoke to the networking peeps who ensured that no traffic from the internet is being blocked.
I would be glad if i could get directions on how to proceed next.
View 2 Replies
View Related
Aug 20, 2010
My Android app runs fine, but: If I insert a call to WebView.setScrollbarFadingEnabled, it crashes saying:
Could not find method android.webkit.WebView.setScrollbarFadingEnabled, referenced from [my class]
VFY: unable to resolve virtual method 289: Landroid/webkit/WebView;.setScrollbarFadingEnabled (Z)V
I am using Android 1.5, not a custom ROM. My app defines minSdkVersion="3" I always clean before compiling.
Is setScrollbarFadingEnabled unavailable in Android 1.5? If so, why don't I receive a compiler error?
View 1 Replies
View Related
Jul 30, 2010
What are you guys entering for Model Code? I'm seeing the below choices but can't find anywhere which one my phone is:
1. SGH-T959ZKATMB
2. SGH-T959ZKBTMB
3. SGH-T959ZKDTMB
4. SGH-T959ZKMTMB
View 32 Replies
View Related