• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

Java AndroidLogger类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

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



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

示例1: onCreate

import com.google.ipc.invalidation.external.client.android.service.AndroidLogger; //导入依赖的package包/类
/**
 * This is called once per ChromeApplication instance, which get created per process
 * (browser OR renderer).  Don't stick anything in here that shouldn't be called multiple times
 * during Chrome's lifetime.
 */
@Override
public void onCreate() {
    UmaUtils.recordMainEntryPointTime();
    super.onCreate();
    UiUtils.setKeyboardShowingDelegate(new UiUtils.KeyboardShowingDelegate() {
        @Override
        public boolean disableKeyboardCheck(Context context, View view) {
            Activity activity = null;
            if (context instanceof Activity) {
                activity = (Activity) context;
            } else if (view != null && view.getContext() instanceof Activity) {
                activity = (Activity) view.getContext();
            }

            // For multiwindow mode we do not track keyboard visibility.
            return activity != null && MultiWindowUtils.getInstance().isMultiWindow(activity);
        }
    });

    // Initialize the AccountManagerHelper with the correct AccountManagerDelegate. Must be done
    // only once and before AccountMangerHelper.get(...) is called to avoid using the
    // default AccountManagerDelegate.
    AccountManagerHelper.initializeAccountManagerHelper(this, createAccountManagerDelegate());

    // Set the unique identification generator for invalidations.  The
    // invalidations system can start and attempt to fetch the client ID
    // very early.  We need this generator to be ready before that happens.
    UniqueIdInvalidationClientNameGenerator.doInitializeAndInstallGenerator(this);

    // Set minimum Tango log level. This sets an in-memory static field, and needs to be
    // set in the ApplicationContext instead of an activity, since Tango can be woken up
    // by the system directly though messages from GCM.
    AndroidLogger.setMinimumAndroidLogLevel(Log.WARN);

    // Set up the identification generator for sync. The ID is actually generated
    // in the SyncController constructor.
    UniqueIdentificationGeneratorFactory.registerGenerator(SyncController.GENERATOR_ID,
            new UuidBasedUniqueIdentificationGenerator(this, SESSIONS_UUID_PREF_KEY), false);
}
 
开发者ID:Smalinuxer,项目名称:Vafrinn,代码行数:45,代码来源:ChromeApplication.java


示例2: createResourcesBuilder

import com.google.ipc.invalidation.external.client.android.service.AndroidLogger; //导入依赖的package包/类
/**
 * Constructs a {@link SystemResourcesBuilder} instance using default scheduling, Android-style
 * logging, and storage, and using {@code network} to send and receive messages.
 */
public static SystemResourcesBuilder createResourcesBuilder(String logPrefix,
    NetworkChannel network, Storage storage) {
  SystemResourcesBuilder builder = new SystemResourcesBuilder(AndroidLogger.forPrefix(logPrefix),
        new ExecutorBasedScheduler("ticl" + logPrefix),
        new ExecutorBasedScheduler("ticl-listener" + logPrefix),
        network, storage);
  builder.setPlatform("Android-" + android.os.Build.VERSION.RELEASE);
  return builder;
}
 
开发者ID:morristech,项目名称:android-chromium,代码行数:14,代码来源:AndroidResourcesFactory.java


示例3: handlePreNativeInitialization

import com.google.ipc.invalidation.external.client.android.service.AndroidLogger; //导入依赖的package包/类
/**
 * Performs the shared class initialization.
 */
protected void handlePreNativeInitialization() {
    ChromeApplication application = (ChromeApplication) ContextUtils.getApplicationContext();

    UiUtils.setKeyboardShowingDelegate(new UiUtils.KeyboardShowingDelegate() {
        @Override
        public boolean disableKeyboardCheck(Context context, View view) {
            Activity activity = null;
            if (context instanceof Activity) {
                activity = (Activity) context;
            } else if (view != null && view.getContext() instanceof Activity) {
                activity = (Activity) view.getContext();
            }

            // For multiwindow mode we do not track keyboard visibility.
            return activity != null
                    && MultiWindowUtils.getInstance().isLegacyMultiWindow(activity);
        }
    });

    // Initialize the AccountManagerHelper with the correct AccountManagerDelegate. Must be done
    // only once and before AccountMangerHelper.get(...) is called to avoid using the
    // default AccountManagerDelegate.
    AccountManagerHelper.initializeAccountManagerHelper(
            application, application.createAccountManagerDelegate());

    // Set the unique identification generator for invalidations.  The
    // invalidations system can start and attempt to fetch the client ID
    // very early.  We need this generator to be ready before that happens.
    UniqueIdInvalidationClientNameGenerator.doInitializeAndInstallGenerator(application);

    // Set minimum Tango log level. This sets an in-memory static field, and needs to be
    // set in the ApplicationContext instead of an activity, since Tango can be woken up
    // by the system directly though messages from GCM.
    AndroidLogger.setMinimumAndroidLogLevel(Log.WARN);

    // Set up the identification generator for sync. The ID is actually generated
    // in the SyncController constructor.
    UniqueIdentificationGeneratorFactory.registerGenerator(SyncController.GENERATOR_ID,
            new UuidBasedUniqueIdentificationGenerator(
                    application, SESSIONS_UUID_PREF_KEY), false);
}
 
开发者ID:JackyAndroid,项目名称:AndroidChromium,代码行数:45,代码来源:ProcessInitializationHandler.java


示例4: handlePreNativeInitialization

import com.google.ipc.invalidation.external.client.android.service.AndroidLogger; //导入依赖的package包/类
/**
 * Performs the shared class initialization.
 */
protected void handlePreNativeInitialization() {
    ChromeApplication application = (ChromeApplication) ContextUtils.getApplicationContext();

    UiUtils.setKeyboardShowingDelegate(new UiUtils.KeyboardShowingDelegate() {
        @Override
        public boolean disableKeyboardCheck(Context context, View view) {
            Activity activity = null;
            if (context instanceof Activity) {
                activity = (Activity) context;
            } else if (view != null && view.getContext() instanceof Activity) {
                activity = (Activity) view.getContext();
            }

            // For multiwindow mode we do not track keyboard visibility.
            return activity != null
                    && MultiWindowUtils.getInstance().isLegacyMultiWindow(activity);
        }
    });

    // Initialize the AccountManagerHelper with the correct AccountManagerDelegate. Must be done
    // only once and before AccountMangerHelper.get(...) is called to avoid using the
    // default AccountManagerDelegate.
    AccountManagerHelper.initializeAccountManagerHelper(
            AppHooks.get().createAccountManagerDelegate());

    // Set the unique identification generator for invalidations.  The
    // invalidations system can start and attempt to fetch the client ID
    // very early.  We need this generator to be ready before that happens.
    UniqueIdInvalidationClientNameGenerator.doInitializeAndInstallGenerator(application);

    // Set minimum Tango log level. This sets an in-memory static field, and needs to be
    // set in the ApplicationContext instead of an activity, since Tango can be woken up
    // by the system directly though messages from GCM.
    AndroidLogger.setMinimumAndroidLogLevel(Log.WARN);

    // Set up the identification generator for sync. The ID is actually generated
    // in the SyncController constructor.
    UniqueIdentificationGeneratorFactory.registerGenerator(SyncController.GENERATOR_ID,
            new UuidBasedUniqueIdentificationGenerator(
                    application, SESSIONS_UUID_PREF_KEY), false);

    // Indicate that we can use the GMS location provider.
    LocationProviderFactory.useGmsCoreLocationProvider();
}
 
开发者ID:mogoweb,项目名称:365browser,代码行数:48,代码来源:ProcessInitializationHandler.java


示例5: AndroidResources

import com.google.ipc.invalidation.external.client.android.service.AndroidLogger; //导入依赖的package包/类
/**
 * Creates an instance of resources for production code.
 *
 * @param context Android system context
 * @param clock source of time for the internal scheduler
 * @param logPrefix log prefix
 */
private AndroidResources(Context context, AndroidClock clock, String logPrefix) {
  super(AndroidLogger.forPrefix(logPrefix), new AndroidInternalScheduler(context, clock),
      new InvalidScheduler(), new AndroidNetworkChannel(context), new AndroidStorage(context),
      getPlatformString());
  this.context = Preconditions.checkNotNull(context);
}
 
开发者ID:mogoweb,项目名称:365browser,代码行数:14,代码来源:ResourcesFactory.java



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


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
Java ListObjectsV2Result类代码示例发布时间:2022-05-22
下一篇:
Java BranchSpec类代码示例发布时间:2022-05-22
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap