當前位置: 首頁>>代碼示例>>Java>>正文


Java CordovaPlugin.hasPermisssion方法代碼示例

本文整理匯總了Java中org.apache.cordova.CordovaPlugin.hasPermisssion方法的典型用法代碼示例。如果您正苦於以下問題:Java CordovaPlugin.hasPermisssion方法的具體用法?Java CordovaPlugin.hasPermisssion怎麽用?Java CordovaPlugin.hasPermisssion使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.cordova.CordovaPlugin的用法示例。


在下文中一共展示了CordovaPlugin.hasPermisssion方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: onGeolocationPermissionsShowPrompt

import org.apache.cordova.CordovaPlugin; //導入方法依賴的package包/類
@Override
/**
 * Instructs the client to show a prompt to ask the user to set the Geolocation permission state for the specified origin.
 *
 * This also checks for the Geolocation Plugin and requests permission from the application  to use Geolocation.
 *
 * @param origin
 * @param callback
 */
public void onGeolocationPermissionsShowPrompt(String origin, Callback callback) {
    super.onGeolocationPermissionsShowPrompt(origin, callback);
    callback.invoke(origin, true, false);
    //Get the plugin, it should be loaded
    CordovaPlugin geolocation = parentEngine.pluginManager.getPlugin("Geolocation");
    if(geolocation != null && !geolocation.hasPermisssion())
    {
        geolocation.requestPermissions(0);
    }

}
 
開發者ID:Andy-Ta,項目名稱:COB,代碼行數:21,代碼來源:SystemWebChromeClient.java

示例2: onGeolocationPermissionsShowPrompt

import org.apache.cordova.CordovaPlugin; //導入方法依賴的package包/類
@Override
/**
 * Instructs the client to show a prompt to ask the user to set the Geolocation permission state for the specified origin.
 *
 * This also checks for the Geolocation Plugin and requests permission from the application  to use Geolocation.
 *
 * @param origin
 * @param callback
 */
public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissionsCallback callback) {
    super.onGeolocationPermissionsShowPrompt(origin, callback);
    callback.invoke(origin, true, false);
    //Get the plugin, it should be loaded
    CordovaPlugin geolocation = parentEngine.pluginManager.getPlugin("Geolocation");
    if(geolocation != null && !geolocation.hasPermisssion())
    {
        geolocation.requestPermissions(0);
    }

}
 
開發者ID:runner525,項目名稱:x5webview-cordova-plugin,代碼行數:21,代碼來源:X5WebChromeClient.java

示例3: onGeolocationPermissionsShowPrompt

import org.apache.cordova.CordovaPlugin; //導入方法依賴的package包/類
@Override
/**
 * Instructs the client to show a prompt to ask the user to set the Geolocation permission state for the specified origin.
 *
 * This also checks for the Geolocation Plugin and requests permission from the application  to use Geolocation.
 *
 * @param origin
 * @param callback
 */
public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissionsCallback callback) {
  super.onGeolocationPermissionsShowPrompt(origin, callback);
  callback.invoke(origin, true, false);
  //Get the plugin, it should be loaded
  CordovaPlugin geolocation = parentEngine.pluginManager.getPlugin("Geolocation");
  if (geolocation != null && !geolocation.hasPermisssion()) {
    geolocation.requestPermissions(0);
  }

}
 
開發者ID:zsxsoft,項目名稱:cordova-plugin-x5-tbs,代碼行數:20,代碼來源:X5WebChromeClient.java

示例4: onGeolocationPermissionsShowPrompt

import org.apache.cordova.CordovaPlugin; //導入方法依賴的package包/類
/**
 * Instructs the client to show a prompt to ask the user to set the Geolocation permission state for the specified origin.
 *
 * This also checks for the Geolocation Plugin and requests permission from the application  to use Geolocation.
 *
 * @param origin
 * @param callback
 */
public void onGeolocationPermissionsShowPrompt(String origin, GeolocationPermissionsCallback callback) {
    super.onGeolocationPermissionsShowPrompt(origin, callback);
    callback.invoke(origin, true, false);
    //Get the plugin, it should be loaded
    CordovaPlugin geolocation = parentEngine.pluginManager.getPlugin("Geolocation");
    if(geolocation != null && !geolocation.hasPermisssion())
    {
        geolocation.requestPermissions(0);
    }

}
 
開發者ID:jeremyup,項目名稱:cordova-plugin-x5-webview,代碼行數:20,代碼來源:X5WebChromeClient.java


注:本文中的org.apache.cordova.CordovaPlugin.hasPermisssion方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。