【发布时间】:2016-04-24 03:47:30
【问题描述】:
我正在使用 logcat 在我的 Android 应用程序中记录消息,我希望能够访问这些消息并将它们显示在 DialogFragment 的 TextView 中。消息列表非常不一致,每次打开和关闭对话框时都会发生变化。它会显示一次完整的历史记录,然后在下一次擦除时,有时会显示更多消息。每次打开对话框时,我可以做些什么来显示所有消息(用于运行)?我是在错误的时间运行该过程还是什么?或者缓冲区应该在其他地方处理吗?谢谢。
public boolean onOptionsItemSelected(MenuItem item) {
switch (item.getItemId()) {
case R.id.action_view_logs:
// View Logs MenuItem tapped
if (logsDialogFragment == null) {
logsDialogFragment = new LogsDialogFragment();
}
logsDialogFragment.show(getFragmentManager(), "dialog");
return true;
case R.id.action_exit:
// Exit MenuItem tapped
finish();
return true;
default:
return super.onOptionsItemSelected(item);
}
}
public class LogsDialogFragment extends DialogFragment {
@Override
public Dialog onCreateDialog(Bundle savedInstanceState) {
Log.i(WifiDirectHandler.LOG_TAG, "Viewing Logs");
AlertDialog.Builder dialogBuilder = new AlertDialog.Builder(getActivity())
.setTitle(getString(R.string.title_logs))
.setNegativeButton(getString(R.string.action_close),
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int whichButton) {
dialog.dismiss();
}
}
);
LayoutInflater i = getActivity().getLayoutInflater();
View rootView = i.inflate(R.layout.fragment_logs_dialog, null);
TextView logTextView = (TextView) rootView.findViewById(R.id.logTextView);
logTextView.setMovementMethod(new ScrollingMovementMethod());
try {
Process process = Runtime.getRuntime().exec("logcat -d");
BufferedReader bufferedReader = new BufferedReader(
new InputStreamReader(process.getInputStream()));
StringBuilder log = new StringBuilder();
String line;
while ((line = bufferedReader.readLine()) != null) {
if (line.contains(WifiDirectHandler.LOG_TAG)){
// Removes log tag and PID from the log line
log.append(line.substring(line.indexOf(": ") + 2)).append("\n");
}
}
logTextView.setText(log.toString());
} catch (IOException e) {
}
dialogBuilder.setView(rootView);
return dialogBuilder.create();
}
}
【问题讨论】:
-
是
logTextView显示结果吗? -
是的,但是每次打开和关闭对话框的结果都不一样。
-
结果不一样,很自然,Log cat 显示不一样,看详细,你可能不一样..
标签: android android-fragments logging logcat android-logcat