That fuck shit the fascists are using
at master 23 lines 641 B view raw
1package org.selfAuthentication 2 3import android.app.Dialog 4import android.content.Context 5import android.graphics.Color 6import android.graphics.drawable.ColorDrawable 7import android.view.LayoutInflater 8import org.tm.archive.R 9 10class ProgressDialog { 11 companion object { 12 fun progressDialog(context: Context): Dialog { 13 val dialog = Dialog(context) 14 val inflate = LayoutInflater.from(context).inflate(R.layout.progress_dialog, null) 15 dialog.setContentView(inflate) 16 dialog.setCancelable(false) 17 dialog.window!!.setBackgroundDrawable( 18 ColorDrawable(Color.TRANSPARENT) 19 ) 20 return dialog 21 } 22 } 23}