2

I am working on an HarmonyOS library that prompts users to review the app on the app gallery. I want to display a prompt thanking the user after he/she reviews the app and the prompt should fade after "int thanksDisplayTimeMs". In Android, it is implemented using

 postDelayed(new Runnable(){
     @Override
     public void run() {
     }
 }, thanksDisplayTimeMs);
zhangxaochen
  • 32,744
  • 15
  • 77
  • 108

1 Answers1

0

You may can refer to postTask in EventHandler.

For Details, check Docs.

zhangxaochen
  • 32,744
  • 15
  • 77
  • 108