i'm not seeing anything related to this problem: i need to "disable" a webview temporarily. that is, i want it to ignore any touching. i assumed setting webview1.enabled = false would accomplish that. it doesn't; i can still drag the webview page around and tap buttons in it. i don't see any relevant settings in the various webextras libraries or the webview itself, beyond enabled = true/false.
background: i have a scrollable listview in the app which displays over the webview when needed. the listview doesn't occupy the entire screen (it slides out about half way and has a transparent background so the webview behind it is still visible). so long as the user only touches the listview as she flings through it and ultimately touches the selection she wants, everything is fine. but if her finger wanders onto the webview as she flings, the webview responds. i don't want it to until the listview is put away. i thought if i disabled the webview when the listview was visible, it would ignore the errant touches.
admitedly, this might be a poor design choice on my part, and, presumably, i can make the listview full-screen, but since enabled = true/false doesn't seem to do what i thought it was supposed to do, i'm wondering what the setting's purpose is then. and, i'd like to know if there is a way to disable the webview briefly without setting its visibility.
thanks in advance.
-go
background: i have a scrollable listview in the app which displays over the webview when needed. the listview doesn't occupy the entire screen (it slides out about half way and has a transparent background so the webview behind it is still visible). so long as the user only touches the listview as she flings through it and ultimately touches the selection she wants, everything is fine. but if her finger wanders onto the webview as she flings, the webview responds. i don't want it to until the listview is put away. i thought if i disabled the webview when the listview was visible, it would ignore the errant touches.
admitedly, this might be a poor design choice on my part, and, presumably, i can make the listview full-screen, but since enabled = true/false doesn't seem to do what i thought it was supposed to do, i'm wondering what the setting's purpose is then. and, i'd like to know if there is a way to disable the webview briefly without setting its visibility.
thanks in advance.
-go