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


Java LogFragment类代码示例

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


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

示例1: initializeLogging

import com.example.android.common.logger.LogFragment; //导入依赖的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.LogFragment; //导入依赖的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.LogFragment; //导入依赖的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: onCreate

import com.example.android.common.logger.LogFragment; //导入依赖的package包/类
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
    setSupportActionBar(toolbar);

    FloatingActionButton fab = (FloatingActionButton) findViewById(R.id.fab);
    fab.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            printSnapshot();
        }
    });

    Intent intent = new Intent(FENCE_RECEIVER_ACTION);
    mPendingIntent = PendingIntent.getBroadcast(MainActivity.this, 0, intent, 0);

    mFenceReceiver = new FenceReceiver();
    registerReceiver(mFenceReceiver, new IntentFilter(FENCE_RECEIVER_ACTION));
    
    mLogFragment = (LogFragment) getSupportFragmentManager().findFragmentById(R.id.log_fragment);
}
 
开发者ID:googlesamples,项目名称:android-play-awareness,代码行数:24,代码来源:MainActivity.java

示例5: initializeLogging

import com.example.android.common.logger.LogFragment; //导入依赖的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

示例6: initializeLogging

import com.example.android.common.logger.LogFragment; //导入依赖的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.LogFragment类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。