Java tutorial
//package com.java2s; /* * Copyright 2012 Google Inc. * Copyright 2012 Bo Zhu <zhu@xecurity.ca> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import android.content.Intent; import android.content.Context; import android.util.Log; public class Main { static final String LOG_TAG = "EasyChip"; static final String CONFIRM_PAYMENT_ACTION = "ca.xecure.easychip.CONFIRM_PAYMENT"; public static void ask_for_payment(Context context, String payee_id, String annotation, String channel_id, String callback_url, int amount) { Intent intent = new Intent(CONFIRM_PAYMENT_ACTION); intent.putExtra("payee_id", payee_id); intent.putExtra("annotation", annotation); intent.putExtra("channel_id", channel_id); intent.putExtra("callback_url", callback_url); intent.putExtra("amount", amount); context.sendBroadcast(intent); Log.v(LOG_TAG, "send intent to main activity to confirm payment"); } }