android studio不打印log日志怎么办

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了android studio不打印log日志怎么办相关的知识,希望对你有一定的参考价值。

1、用eclipse进行android开发中经常遇到logcat无任何信息输出,这给我们调试程序带来很大的不便。解决办法:window-->show view-->选择android下的devices,打开devices,点击右边的截屏图片。等到出现截图的时候,logcat就出来信息了!
2、如果以上方法试过之后logcat还没有任何信息,则把logcat窗口关了,重新打开即可。
参考技术A 打开eclipse,点击window,在下拉列表中找到show view,然后找到other, 展开有个logcat的选项,点击它就可以在控制台看到日志信息。建议你可以买本Android的书来学习。如果需要,我这里有一些学习Android不错的电子书,视频和源码。本回答被提问者和网友采纳

java android log分割类默认的log打印不完全所有的日志

package com.ipanel.join.cq.vod.utils;

import java.util.ArrayList;

import android.util.Log;

public class LogcatUtils {
	/**
	 * Divides a string into chunks of a given character size.
	 * 
	 * @param text
	 *            String text to be sliced
	 * @param sliceSize
	 *            int Number of characters
	 * @return ArrayList<String> Chunks of strings
	 */
	public static ArrayList<String> splitString(String text, int sliceSize) {
		ArrayList<String> textList = new ArrayList<String>();
		String aux;
		int left = -1, right = 0;
		int charsLeft = text.length();
		while (charsLeft != 0) {
			left = right;
			if (charsLeft >= sliceSize) {
				right += sliceSize;
				charsLeft -= sliceSize;
			} else {
				right = text.length();
				aux = text.substring(left, right);
				charsLeft = 0;
			}
			aux = text.substring(left, right);
			textList.add(aux);
		}
		return textList;
	}

	/**
	 * Divides a string into chunks.
	 * 
	 * @param text
	 *            String text to be sliced
	 * @return ArrayList<String>
	 */
	public static ArrayList<String> splitString(String text) {
		return splitString(text, 2000);
	}

	/**
	 * Divides the string into chunks for displaying them into the Eclipse's
	 * LogCat.
	 * 
	 * @param text
	 *            The text to be split and shown in LogCat
	 * @param tag
	 *            The tag in which it will be shown.
	 */
	public static void splitAndLog(String tag, String text) {
		ArrayList<String> messageList = LogcatUtils.splitString(text);
		for (String message : messageList) {
			Log.d(tag, message);
		}
	}
}

以上是关于android studio不打印log日志怎么办的主要内容,如果未能解决你的问题,请参考以下文章

Android Studio 日志工具

android studio 中jni底层日志的打印

Android Studio保存log到本地

Android Studio 之logcat使用篇

5.1Android Studio用Logcat编写和查看日志

Android 使用Log打印日志的时候中文是乱码,怎么解决啊?