Ionuț Popescu
Lurker
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.
In service:
Thank you!
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);
webView = new WebView(getApplicationContext());
mWebContainer.addView(webView);
Thank you!