Salve ragazzi, ho iniziato a programmare con android studio, solo che ho un problema. In pratica, sto cercando d usare un intentService, ma non so come fargli svolgere delle azioni in background...
Da come ho capito dovrei fare l'override del metodo onHandleIntent(), questo è il codice che ho provato per vederne il funzionamento:
protected void onHandleIntent(Intent intent)
{
synchronized (this)
{
while (true)
{
try
{
wait(3000);
Toast.makeText(this, "Servizio in ascolto", Toast.LENGTH_LONG).show();
} catch (InterruptedException e) {
e.printStackTrace();
}
}
}
}
Dovrebbe visualizzare un Toast ogni 3 secondi, ma in realtà ciò non succede, qualcuno sa dirmi perchè?