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


Java LogWrapper.setNext方法代码示例

本文整理汇总了Java中com.example.android.common.logger.LogWrapper.setNext方法的典型用法代码示例。如果您正苦于以下问题:Java LogWrapper.setNext方法的具体用法?Java LogWrapper.setNext怎么用?Java LogWrapper.setNext使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.example.android.common.logger.LogWrapper的用法示例。


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

示例1: initializeLogging

import com.example.android.common.logger.LogWrapper; //导入方法依赖的package包/类
/** Create a chain of targets that will receive log data */
@Override
public void initializeLogging() {
    // Wraps Android's native log framework.
    LogWrapper logWrapper = new LogWrapper();
    // Using Log, front-end to the logging chain, emulates android.util.log method signatures.
    Log.setLogNode(logWrapper);

    // Filter strips out everything except the message text.
    MessageOnlyLogFilter msgFilter = new MessageOnlyLogFilter();
    logWrapper.setNext(msgFilter);

    // On screen logging via a fragment with a TextView.
    LogFragment logFragment = (LogFragment) getSupportFragmentManager()
            .findFragmentById(R.id.log_fragment);
    msgFilter.setNext(logFragment.getLogView());

    Log.i(TAG, "Ready");
}
 
开发者ID:mobileink,项目名称:lab.mobile,代码行数:20,代码来源:MainActivity.java

示例2: initializeLogging

import com.example.android.common.logger.LogWrapper; //导入方法依赖的package包/类
/** Create a chain of targets that will receive log data */
@Override
public void initializeLogging() {
    // Wraps Android's native log framework.
    LogWrapper logWrapper = new LogWrapper();
    // Using Log, front-end to the logging chain, emulates android.util.log method signatures.
    Log.setLogNode(logWrapper);

    // Filter strips out everything except the message text.
    MessageOnlyLogFilter msgFilter = new MessageOnlyLogFilter();
    logWrapper.setNext(msgFilter);

    // On screen logging via a fragment with a TextView.
   LogFragment logFragment = (LogFragment) getSupportFragmentManager().findFragmentById(R.id.log_fragment);
    //msgFilter.setNext(logFragment.getLogView());
    Log.i(TAG, "Ready");
}
 
开发者ID:tkmarsh,项目名称:SmartRC,代码行数:18,代码来源:MainActivity.java

示例3: initializeLogging

import com.example.android.common.logger.LogWrapper; //导入方法依赖的package包/类
/** Create a chain of targets that will receive log data */
@Override
public void initializeLogging() {
    // Wraps Android's native log framework.
    LogWrapper logWrapper = new LogWrapper();
    // Using Log, front-end to the logging chain, emulates android.util.log method signatures.
    Log.setLogNode(logWrapper);

    // Filter strips out everything except the message text.
    MessageOnlyLogFilter msgFilter = new MessageOnlyLogFilter();
    logWrapper.setNext(msgFilter);

    // On screen logging via a fragment with a TextView.
    LogFragment logFragment = (LogFragment) getSupportFragmentManager()
            .findFragmentById(R.id.log_fragment);
    msgFilter.setNext(logFragment.getLogView());
    if (Build.VERSION.SDK_INT < 23) {
        //noinspection deprecation
        logFragment.getLogView().setTextAppearance(this, R.style.Log);
    } else {
        logFragment.getLogView().setTextAppearance(R.style.Log);
    }
    logFragment.getLogView().setBackgroundColor(Color.WHITE);

    Log.i(TAG, "Ready");
}
 
开发者ID:googlesamples,项目名称:android-play-safetynet,代码行数:27,代码来源:MainActivity.java

示例4: initializeLogging

import com.example.android.common.logger.LogWrapper; //导入方法依赖的package包/类
/** Create a chain of targets that will receive log data */
@Override
public void initializeLogging() {
    // Wraps Android's native log framework.
    LogWrapper logWrapper = new LogWrapper();
    // Using Log, front-end to the logging chain, emulates android.util.log method signatures.
    Log.setLogNode(logWrapper);

    // Filter strips out everything except the message text.
    MessageOnlyLogFilter msgFilter = new MessageOnlyLogFilter();
    logWrapper.setNext(msgFilter);

    // On screen logging via a fragment with a TextView.
    LogFragment logFragment = (LogFragment) getSupportFragmentManager()
            .findFragmentById(R.id.log_fragment);
    msgFilter.setNext(logFragment.getLogView());
    logFragment.getLogView().setTextAppearance(this, R.style.Log);
    logFragment.getLogView().setBackgroundColor(Color.WHITE);


    Log.i(TAG, "Ready");
}
 
开发者ID:obulpathi,项目名称:controller,代码行数:23,代码来源:MainActivity.java

示例5: initializeLogging

import com.example.android.common.logger.LogWrapper; //导入方法依赖的package包/类
/** Create a chain of targets that will receive log data */
public void initializeLogging() {

    // Using Log, front-end to the logging chain, emulates
    // android.util.log method signatures.

    // Wraps Android's native log framework
    LogWrapper logWrapper = new LogWrapper();
    Log.setLogNode(logWrapper);

    // A filter that strips out everything except the message text.
    MessageOnlyLogFilter msgFilter = new MessageOnlyLogFilter();
    logWrapper.setNext(msgFilter);

    // On screen logging via a fragment with a TextView.
    mLogFragment =
            (LogFragment) getSupportFragmentManager().findFragmentById(R.id.log_fragment);
    msgFilter.setNext(mLogFragment.getLogView());
}
 
开发者ID:mmuppa,项目名称:BasicNetworking,代码行数:20,代码来源:MainActivity.java


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