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

Version Path
rhodes-7.6.0 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-7.5.1 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-7.4.1 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-7.1.17 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-6.2.0 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-6.0.11 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.18 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.17 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.15 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.0.22 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.2 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.0.7 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.0.3 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
rhodes-5.5.0 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
tauplatform-1.0.3 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
tauplatform-1.0.2 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java
tauplatform-1.0.1 lib/commonAPI/ConnectionChecking/ext/platform/android/src/com/rho/connectionchecking/ConnectionCheckingDialogue.java