How can I access multiple content in webview in android -


i trying use webview. use

ourbrow.loadurl("https://www.google.com/finance/chart?client=firefox-a&rls=org.mozilla:en-us:official&channel=sb&biw=1366&bih=390&q=+val[from]+val[to]+&tkr=1&p=5y&chst=vkc&chs=229x94&chsc=1&ei=vyuxu7j6jaxq0qgh3og4cq"); 

logcat :

03-06 12:50:27.551: d/adnan(14485): android.webkit.webview{413ab878 vfedhvcl ........ 156,340-456,640 #7f0a0010 app:id/chartwebview}

if use

ourbrow.loadurl("https://www.google.com/finance/chart?client=firefox-a&rls=org.mozilla:en-us:official&channel=sb&biw=1366&bih=390&q=currency:bdthkd&tkr=1&p=5y&chst=vkc&chs=229x94&chsc=1&ei=vyuxu7j6jaxq0qgh3og4cq");

then ok... need use dynamic data not fixed one.

you have wrongly written it..

you can use : "static_part"+dynamic_part+"

so need write :

ourbrow.loadurl("https://www.google.com/finance/chart?client=firefox-a&rls=org.mozilla:en-us:official&channel=sb&biw=1366&bih=390&q="+val[from]+":"+val[to]+"&tkr=1&p=5y&chst=vkc&chs=229x94&chsc=1&ei=vyuxu7j6jaxq0qgh3og4cq"); 

Comments

Popular posts from this blog

c# - How to get the current UAC mode -

postgresql - Lazarus + Postgres: incomplete startup packet -

javascript - Ajax jqXHR.status==0 fix error -