private fun getLoadingDialog(context: Context): AlertDialog { val builder = AlertDialog.Builder(context) builder.setView(ProgressBar(context)) builder.setCancelable(false) val dialog = builder.create() dialog.window!!.decorView.setBackgroundColor(Color.TRANSPARENT) return dialog }