Back to project page C2Framework.
The source code is released under:
Apache License
If you think the Android project C2Framework 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 gaia.c2.content.android.model; //from w w w . ja v a 2 s . c om import android.content.Intent; import android.net.Uri; import android.os.Parcel; import android.os.Parcelable; import gaia.c2.content.model.ContextDependentModel; import gaia.c2.context.C2Context; /** * Created by kmr on 4/13/14. */ public class Call implements ContextDependentModel, Parcelable { public static final String MIME_TYPE = "x-android/call"; private C2Context ctx; private String telephone; public Call(String tl) { this.telephone = tl; } @Override public Call using(C2Context ctx) { this.ctx = ctx; return this; } public void call() { Intent callIntent = new Intent(Intent.ACTION_CALL); callIntent.setData(Uri.parse("tel:" + this.telephone)); this.ctx.startActivity(callIntent); } //region parcelable public Call(Parcel in) { telephone = in.readString(); } @Override public int describeContents() { return this.hashCode(); } @Override public void writeToParcel(Parcel parcel, int i) { parcel.writeString(telephone); } public static final Parcelable.Creator CREATOR = new Parcelable.Creator() { public Call createFromParcel(Parcel in) { return new Call(in); } public Call[] newArray(int size) { return new Call[size]; } }; //endregion }