log "hello" appears only once, and the toast does not appear at all.
@Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); ScheduledExecutorService scheduler = Executors.newSingleThreadScheduledExecutor(); scheduler.scheduleAtFixedRate(new Runnable() { public void run() { Log.i("hello", "world"); Toast.makeText(getApplicationContext(), "It works", Toast.LENGTH_SHORT).show();
source share