Can't use keyboard in the WebPopup

I have created a webpopup and link to google.com.

It works fine, but when I want to input something in the search field on the google page, the keyboard was not work.
The keyboard has appear on the screen, but can’t press any key.

anybody know where is the problem?

*the test code is below:

local ui = require("ui")  
local bg\_img = display.newImage("bg.png")  
--buttons---------------------------------------------  
  
local function openWebPopup()  
 native.showWebPopup( "http://www.google.com")  
end  
local onRelease =   
{  
 ["btn\_1"] = openWebPopup  
}  
  
local buttonHandler = function( event )  
 if ( "release" == event.phase ) then  
 onRelease[event.id]()  
 end  
end  
  
local btn\_1 = ui.newButton{  
 default = "shortButton.png",over = "shortButtonOver.png",  
 onEvent=buttonHandler,  
 id = "btn\_1",text = "Google",size = 18,emboss = true,  
 x = 160, y = 300,  
}  

[import]uid: 5376 topic_id: 631 reply_id: 300631[/import]

This was brought to our attention a while back, and I think we fixed this yesterday. Go ahead and give your device build another try and let us know how it goes.

-Sean [import]uid: 3 topic_id: 631 reply_id: 1278[/import]

It works correctly now! :smiley:

[import]uid: 5376 topic_id: 631 reply_id: 1283[/import]

This doesn’t work correctly on Android devices. I’m running Android 2.2 both in the emulator and on an actual device.

No virtual keyboard appears when I touch text field inside a webPopUp.

This works fine on iOS.

Please help :frowning:
[import]uid: 8741 topic_id: 631 reply_id: 14745[/import]