Displaying a Toast notification in Android framework

后端 未结 1 1735
日久生厌
日久生厌 2021-01-27 13:57

I\'m trying to modify the Android framework by displaying an Toast notification in the PasswordUnlockScreen.java file when a password verification is done. I\'ve added the follo

相关标签:
1条回答
  • 2021-01-27 14:53

    Try this one :

    Toast.makeText(PasswordUnlockScreen.this, "Verifying password", Toast.LENGTH_LONG).show();
    
    0 讨论(0)
提交回复
热议问题