user3790194
user3790194

Reputation: 111

Android pie edittext typed text not showing when soft keyboard is open

Edittext input text is not visible and I type in using soft keyboard but once I press next you button I am able to see the input value. code is working fine on older android versions but not on android pie.

Upvotes: 10

Views: 3809

Answers (1)

maxuville
maxuville

Reputation: 531

This seems to be an issue with Android Pie. I changed hardware acceleration to true in the manifest and it worked.

android:hardwareAccelerated="true"

Upvotes: 27

Related Questions