Android Open Source - wrist.io Alert Util






From Project

Back to project page wrist.io.

License

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.

Java Source Code

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();
  }
  
}




Java Source Code List

org.hackedio.wristio.ControlActivity.java
org.hackedio.wristio.bluetooth.BluetoothManager.java
org.hackedio.wristio.notification.NotificationService.java
org.hackedio.wristio.twitter.TwitterWristManager.java
org.hackedio.wristio.util.AlertUtil.java
org.hackedio.wristio.util.BluetoothUtil.java