Update:
There is a new version of the app. Click on the picture below:Depending on whether or not the device is connected to the internet, Random generates Pseudo random and Real Random (using Random.org) numbers. Users can simulate a die roll, a coin flip or use A DIY random number generator. A string randomiser option, which randomises string input, is also available.
Checking whether the device is connected to the internet:
private boolean haveNetworkConnection() { ConnectivityManager connectivityManager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo activeNetworkInfo = connectivityManager.getActiveNetworkInfo(); return activeNetworkInfo != null && activeNetworkInfo.isConnectedOrConnecting(); }
It is also necessary to check if the device can actually connect to Random.org. This is to take into consideration of the case where Random.org servers might be down occasionally, or, the device is connecting to a router with no DNS and/or IP set up.
/............./ try { result = Integer.parseInt(readRandom()); text.setText("Real Random"); } catch (UnknownHostException e) { result = pseudoRandom(); text.setText("Pseudo Random"); Toast.makeText(getApplicationContext(), "HTTP Time-Out\nCheck connection", Toast.LENGTH_LONG).show(); } /............./
Getting Real random from Random.org:
The following lines of code is for the DIY option. Everything else uses a simple modification. For example, the min and max for the Roll a Die option would be 1 and 6 respectively.
public String realRandom(String min, String max) throws Exception { String sendto = "http://www.random.org/integers/?num=1&min=" + min + "&max=" + max + "&col=1&base=10&format=plain&rnd=new"; URL url = new URL(sendto); BufferedReader in = new BufferedReader(new InputStreamReader(url.openStream())); return (in.readLine()); }