Android Studioでlogcat履歴/バッファのサイズを増やす方法があるかどうか誰もが知っていますか?Eclipseでそれを行う方法があり、Android Studioにも同様の設定がありました。
プロパティファイルidea.cycle.buffer.size=1024
のAndroid-studio\bin\idea.properties
の値を増やすことができます。バッファサイズの単位:(Kb)。私はすでに試してみましたが、それは私にとって完璧です!
次のような構成の説明:
#---------------------------------------------------------------------
# This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb).
# Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled
#---------------------------------------------------------------------
idea.cycle.buffer.size=1024
現在、logcatのバッファサイズを変更することはできません。ただし、AOSP課題追跡で機能要求を作成しました。リンクは次のとおりです。 https://code.google.com/p/Android/issues/detail?id=73425
Idea.cycle.buffer.sizeが http://tools.Android.com/tech-docs/configuration に次のように記載されていることに注意してください。
#----------------------------------------------------------------
# This option controls console cyclic buffer: keeps the console output size not higher than the specified buffer size (Kb).
# Older lines are deleted. In order to disable cycle buffer use idea.cycle.buffer.size=disabled
#----------------------------------------------------------------
idea.cycle.buffer.size=1024
あるいは、主に大きなサイズのデータがあり、一時的にデータを確認したい場合は、フィルター(Logcatパッケージの優先度)を使用して、出力をファイルに保存します。