Preguntas etiquetadas con android-service

97
Diferencias entre Intent y PendingIntent

Leí algunos artículos y ambos parecen hacer lo mismo y me preguntaba cuál es la diferencia entre iniciar el servicio así: Intent intent = new Intent(this, HelloService.class); startService(intent); o así: Calendar cal = Calendar.getInstance(); Intent intent = new Intent(this,...