Alert Dialog from Thread - Android

后端 未结 3 1723
孤街浪徒
孤街浪徒 2021-01-03 16:23

I have a thread that sends GPS coordinates to a database every six seconds and I have a check that verifies that the user is within a defined area. If the user is not within

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-03 17:06

    new Handler().post(new Runnable{
     public void run(){
    
       //create your AlertDialog here.. 
      }
    
    });
    

    see more here

提交回复
热议问题