当前位置: 首页>>代码示例>>Java>>正文


Java ADM类代码示例

本文整理汇总了Java中com.amazon.device.messaging.ADM的典型用法代码示例。如果您正苦于以下问题:Java ADM类的具体用法?Java ADM怎么用?Java ADM使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


ADM类属于com.amazon.device.messaging包,在下文中一共展示了ADM类的5个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: doInBackground

import com.amazon.device.messaging.ADM; //导入依赖的package包/类
@Override
protected Void doInBackground(Context... params)
{
	GCMRegistrar.unregister(params[0]);
	try
	{
	    Class.forName( "com.amazon.device.messaging.ADM" );
	}
	catch (ClassNotFoundException e)
	{
	    return null;
	}
	final ADM adm = new ADM(KlyphApplication.getInstance());
	adm.startUnregister();
	return null;
}
 
开发者ID:jonathangerbaud,项目名称:Klyph,代码行数:17,代码来源:KlyphADM.java

示例2: arePushNotificationsAvailable

import com.amazon.device.messaging.ADM; //导入依赖的package包/类
public static boolean arePushNotificationsAvailable()
{
	if (KlyphFlags.IS_AMAZON_VERSION)
	{
		try
		{
			Class.forName("com.amazon.device.messaging.ADM");
		}
		catch (ClassNotFoundException e)
		{
			return false;
		}

		final ADM adm = new ADM(KlyphApplication.getInstance());
		return adm.isSupported();
	}

	return true;
}
 
开发者ID:jonathangerbaud,项目名称:Klyph,代码行数:20,代码来源:KlyphPreferences.java

示例3: initialize

import com.amazon.device.messaging.ADM; //导入依赖的package包/类
/**
 * Sets the context of the Command. This can then be used to do things like get file paths associated with the
 * Activity.
 * 
 * @param cordova
 *            The context of the main Activity.
 * @param webView
 *            The associated CordovaWebView.
 */
@Override
public void initialize(CordovaInterface cordova, CordovaWebView webView) {
    super.initialize(cordova, webView);
    // Initialize only for Amazon devices 2nd Generation and later
    if (this.isAmazonDevice() && !isFirstGenKindleFireDevice()) {
        adm = new ADM(cordova.getActivity());
        activity = (CordovaActivity) cordova.getActivity();
        webview = this.webView;
        isForeground = true;
        ADMMessageHandler.saveConfigOptions(activity);
    } else {
        LOG.e(TAG, NON_AMAZON_DEVICE_ERROR);
    }
}
 
开发者ID:chrisuehlinger,项目名称:smart-mirror-app,代码行数:24,代码来源:PushPlugin.java

示例4: registerIfNecessary

import com.amazon.device.messaging.ADM; //导入依赖的package包/类
public static void registerIfNecessary()
{
	final Context context = KlyphApplication.getInstance();
	Log.d("KlyphADM", "registerIfNecessary: ");
	try
	{
	    Class.forName( "com.amazon.device.messaging.ADM" );
	}
	catch (ClassNotFoundException e)
	{
	    return;
	}
	
	final ADM adm = new ADM(context);
       if (adm.isSupported())
       {
       	Log.d("KlyphADM", "registerIfNecessary: 1");
           if(adm.getRegistrationId() == null)
           {
           	Log.d("KlyphADM", "registerIfNecessary: 2");
               registerTask = new RegisterTask();
   			registerTask.execute(context);
           } 
           else 
           {
           	Log.d("KlyphADM", "registerIfNecessary: 3");
               /* Send the registration ID for this app instance to your server. */
               /* This is a redundancy since this should already have been performed at registration time from the onRegister() callback */
               /* but we do it because our python server doesn't save registration IDs. */
               registerOnServerTask = new RegisterOnServerTask();
   			registerOnServerTask.execute(context);
           }
       }
}
 
开发者ID:jonathangerbaud,项目名称:Klyph,代码行数:35,代码来源:KlyphADM.java

示例5: register

import com.amazon.device.messaging.ADM; //导入依赖的package包/类
private void register(){
    final ADM adm = new ADM(this);
    if (adm.isSupported()){
        if(adm.getRegistrationId() == null){
            adm.startRegister();
        }
    }
}
 
开发者ID:daffodilistic,项目名称:aws-snsmobilepush,代码行数:9,代码来源:KindleMobilePushApp.java


注:本文中的com.amazon.device.messaging.ADM类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。