IntentUtils.java :  » UnTagged » software-quotes » com » hazam » util » Android Open Source

Android Open Source » UnTagged » software quotes 
software quotes » com » hazam » util » IntentUtils.java
package com.hazam.util;

import android.content.Intent;

public class IntentUtils {
  public static Intent intentForPrefilledSms(String tel, String text) {
    Intent toreturn = new Intent(Intent.ACTION_VIEW);
    toreturn.putExtra("address", tel);
    toreturn.putExtra("sms_body", text);
    toreturn.setType("vnd.android-dir/mms-sms");
    return toreturn;
  }
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.