My application contains ViewPager
and dynamically created WebView
. When a captcher is displayed on the page (protected from bots) for input, when you click on the input component, the keyboard is not displayed. When I removed the ViewPager
and just left WebView
, the keyboard was displayed. What could be the problem?
adapter=new BrowserPagerAdapter(pages); viewpager=new ViewPager(this); viewpager.setAdapter(adapter); viewpager.setCurrentItem(0); setContentView(viewpager);