TestPage
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
private void setDebugArea(String s) {
TextView debugArea = (TextView)findViewById(R.id.debugArea);
debugArea.setText(s);
} // end setDebugArea
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
// -------------- XML -----------------
/**
<TextView
android:id="@+id/debugArea"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Debug Area"
/>
*/