Reputation: 111
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
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