I am trying to show download progress for WebView in Android activity. When I try to display a progress bar of a window with:
requestWindowFeature( Window.FEATURE_PROGRESS );
according to http://developer.android.com/guide/appendix/faq/commontasks.html#progressbar , but at this point I get a debugging error.
When an error occurs, I see a new tab "ActivityThread.performLaunchActivity" in Eclipse, which has the message "Source not found". and the button "Change source search path ...".
When I delete the violation line, I do not get this error.
What can cause this problem? Do I need to set permission in the AndroidManifest.xml file or is there something else that I am missing?
source
share