java - Clicking outside of Phonegap/Cordova InAppBrowser -


so i'm making phonegap/cordova application (v 3.1.0) , need open inappbrowser doesn't cover full layout, can make custom toolbars , such show beneath browser. i've managed make inappbrowser appear smaller screen fiddling layout options , can succesfully show toolbars i'm not able click on them. need on how manage clicks propagate main phonegap view inappbrowser.

as code - edit inappbrowser.java @ following lines desired height:

inappwebview.setlayoutparams(new linearlayout.layoutparams(width, height)); 

and

lp.height = height; lp.width = width; 

any ideas on how pass click, example on blue close div?

here's screenshot show more detail: enter image description here

edit:

managed click events setting onclick/touch listener on inappbrowser webview, doing samo on main view attached on dialog created registers no touch events @ all.

also can find source code of inappbrowser plugin on github on here.


Comments

Popular posts from this blog

python - Subclassed QStyledItemDelegate ignores Stylesheet -

java - HttpClient 3.1 Connection pooling vs HttpClient 4.3.2 -

SQL: Divide the sum of values in one table with the count of rows in another -