Android Loading ProgressDialog

public class LoadingHelper { private static ProgressDialog progress; public void run(Context context, final CallbackInterface callback){ progress = ProgressDialog.show(context, "Carregando", "Por favor, aguarde :D", true); new Thread(new Runnable() { @Override public…

Android Toolbar Back Button

It's always convenient to have that little button to "go back" to the previous Activity, and to add it is very simple, just add a directive in your"AndroidManifest.xml".    …