• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Disable new window for input select in webview

I want to know if is possible for a select input to be displayed on the page without opening a new window. If not, do you think it is possible to set the window type before it is displayed?

I ask all of this because I'm trying to integrate a webview into a service, and I'm having trouble displaying the select inputs.

01-03 15:49:16.371 1608-5385/system_process W/WindowManager: Attempted to add application window with unknown token null. Aborting.​

In service:
mWebContainer = View.findViewById(R.id.web_container);
webView = new WebView(getApplicationContext());
mWebContainer.addView(webView);​

Thank you!
 
Back
Top Bottom