Help.java
907 Bytes
package com.upc.pbe.upcnews;
import android.app.Activity;
import android.os.Bundle;
import android.util.Log;
import android.widget.TextView;
public class Help extends Activity{
final static String TAG = "Help";
final static String HELP = "Help, I need somebody, Help, not just anybody, Help, you know I need someone, help. ";
public void onCreate(Bundle savedInstanceState) {
Log.d(TAG, "onCreated");
super.onCreate(savedInstanceState);
setContentView(R.layout.help);
TextView text = (TextView) findViewById(R.id.textView2);
text.setText(HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP + HELP);
}
public void onStop(){
Log.d(TAG, "onStoped");
super.onStop();
}
}