web-dev-qa-db-ja.com

phonegapでトーストを作成する方法は?

Phonegap/cordovaを使用してAndroidアプリケーションでトーストを作成する方法は?

ありがとう!

17
Pradip Kharbuja

最初にToastPlugin.Javaを作成します

package com.company.plugins;

import org.Apache.cordova.api.CallbackContext;
import org.Apache.cordova.api.CordovaPlugin;
import org.json.JSONArray;
import org.json.JSONException;

import Android.util.Log;
import Android.widget.Toast;

public class ToastPlugin extends CordovaPlugin {
    @Override
    public boolean execute(String action, JSONArray args,
            CallbackContext callbackContext) throws JSONException {

        String message = args.getString(0);

        // used to log the text and can be seen in LogCat
        Log.d("Toast Plugin", "Calling the Toast...");
        Log.d("Toast Plugin", message);

        if (action.equals("shortToast")) {          
            this.shortToast(message, callbackContext);
            return true;
        } else if (action.equals("longToast")) {
            this.longToast(message, callbackContext);
            return true;
        }
        return false;
    }

    private void shortToast(String message, CallbackContext callbackContext) {
        if (message != null && message.length() > 0) {
            Toast.makeText(cordova.getActivity().getApplicationContext(),
                    message, Toast.LENGTH_SHORT).show();
            callbackContext.success(message);
        } else {
            callbackContext.error("Expected one non-empty string argument.");
        }
    }

    private void longToast(String message, CallbackContext callbackContext) {
        if (message != null && message.length() > 0) {
            Toast.makeText(cordova.getActivity().getApplicationContext(),
                    message, Toast.LENGTH_LONG).show();
            callbackContext.success(message);
        } else {
            callbackContext.error("Expected one non-empty string argument.");
        }
    }
}


次に、toastPlugin.jsを作成します

//Plugin file should be always after cordova.js
//There is always better way to create, but this also works

window.shortToast = function(str, callback) {   
    cordova.exec(callback, function(err) {
        callback('Nothing to echo.');
    }, "ToastPlugin", "shortToast", [ str ]);
};

window.longToast = function(str, callback) {
    cordova.exec(callback, function(err) {
        callback('Nothing to echo.');
    }, "ToastPlugin", "longToast", [ str ]);
};


これらのファイルをプロジェクトにリンクすると、JavaScriptを次のように呼び出すことができます。

  • shortToast( "ここにショートトーストメッセージ...");
  • longToast( "ここに長いトーストメッセージ...");
19
Pradip Kharbuja

PhoneGap-Toast は、これを可能にするPhoneGapのオープンソース(MITライセンス)ブリッジです。

7
smw

ユニバーサルiOS/Android/WP8 Toastプラグインをお探しの場合は、こちらをチェックしてください: http://www.x-services.nl/phonegap-toast-plugin/796

3
Eddy Verbruggen