Back to project page ShareManager.
The source code is released under:
Copyright (c) 2013, Nelspike All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: * Red...
If you think the Android project ShareManager listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package share.manager.adapters; //w ww . j a v a 2s . com import android.app.AlertDialog; import android.content.Context; import android.content.DialogInterface; public class DialogAdapter { public static void connectionIssues(final Context context) { AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(context); alertDialogBuilder.setTitle("Connection Expired"); alertDialogBuilder .setMessage( "Can't reach the server at the moment. Restart the app, and try again.") .setCancelable(false) .setPositiveButton("OK", new DialogInterface.OnClickListener() { @Override public void onClick(DialogInterface dialog, int id) { System.exit(0); } }); AlertDialog alertDialog = alertDialogBuilder.create(); alertDialog.show(); } }