[Solved] Can I show Toast from none-UI Service in android?


You can certainly do that. A service is a Context. So you can call

Toast.makeText(this, "My Information", Toast.LENGTH_SHORT).show();

solved Can I show Toast from none-UI Service in android?