TaxiAutoDialer.java :  » App » drunkoid » com » hello » Android Open Source

Android Open Source » App » drunkoid 
drunkoid » com » hello » TaxiAutoDialer.java
package com.hello;

import android.app.Activity;
import android.content.Intent;
import android.net.Uri;

public class TaxiAutoDialer {
  
private Activity activity;
  
  public TaxiAutoDialer(Activity cont){
    this.activity = cont;
  }
  
    void callACab(String phoneNumber)
    {
      String number = "tel:" + phoneNumber;
        Intent callIntent = new Intent(Intent.ACTION_CALL, Uri.parse(number)); 
        activity.startActivity(callIntent);       
    } 

}
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.