Sha256: 8453c4194990a41e1b7c98ceef03bccf0deeb715cdb37affc3a3e16f5c441f58
Contents?: true
Size: 585 Bytes
Versions: 17
Compression:
Stored size: 585 Bytes
Contents
package com.rho.connectionchecking; import com.rhomobile.rhodes.RhoConf; import android.app.AlertDialog; import android.content.Context; public class ConnectionCheckingDialogue { static AlertDialog.Builder builder1 = null; static AlertDialog alert = null; public static void createBuilder(Context ctx) { builder1=new AlertDialog.Builder(ctx); builder1.setMessage(ConnectionCheckingSingleton.MESSAGE); builder1.setCancelable(false); alert=builder1.create(); } public static void show() { alert.show(); } public static void hide() { alert.hide(); } }
Version data entries
17 entries across 17 versions & 2 rubygems