Setpluginenabled Is Undefined
here is the code i dont know why this this method setPluginsEnabled is undefined try to deprecation this but it doesnt work ?????? public class Webv extends Activity{ WebView w
Solution 1:
According to http://developer.android.com/reference/android/webkit/WebSettings.html, there is no method setPluginsEnabled
for WebSettings. Maybe it's an older method that has been removed in newer versions?
Additionally, the text next to setPluginState
reads:
This method was deprecated in API level 18. Plugins will not be supported in future, and should not be used.
You should probably follow that advice.
Post a Comment for "Setpluginenabled Is Undefined"