super.onCreate(icicle);
setContentView(R.layout.log_viewer);
this.handler = new Handler();
text = (LogTextBox) findViewById(R.id.text);
text.setTextSize(10);
text.setHorizontallyScrolling(true);
text.setTypeface(Typeface.MONOSPACE);
text.setGravity(Gravity.BOTTOM | Gravity.LEFT);
this.active = true;
try {
logger = new FileOutputStream("/tmp/logviewer.txt");
new Thread(new LogReader()).start();
} catch (IOException e) {
appendThrowable(e);
}