Back to project page wrist.io.
The source code is released under:
GNU General Public License
If you think the Android project wrist.io 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 org.hackedio.wristio.util; //from w w w .j av a 2s.c o m import android.app.AlertDialog; import android.content.Context; public class AlertUtil { public static void alertMessage(Context context, String msg){ AlertDialog alertBuilder = new AlertDialog.Builder(context).create(); alertBuilder.setMessage(msg); alertBuilder.show(); } }