Why is Android WebView refusing user input?

前端 未结 16 1863
半阙折子戏
半阙折子戏 2020-11-28 08:12

I\'m developing an Android application that uses a WebView to display the login page for Facebook. The page loads beautifully, and I\'m able to select the username/password

16条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 08:41

    I don't know my case is exactly same as yours,

    I found that add one css line can solve problem.

    I just add

    input{
        -webkit-user-select: text;
    }
    

    to my css, then problem solved!

提交回复
热议问题