Androidアプリ開発の実験を始めたばかりなので、Android独自のチュートリアルを試してみることにしました(これはhttp://developer.android.com/training/basics/firstapp/starting-activity.html) 。
私の新しいアクティビティのテキストビューは表示されません。これが私のコードです:
public class DisplayMessageActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
/* Get the intent and the message sent with it */
Intent intent = getIntent();
String message = intent.getStringExtra(GoogleTutActivity.EXTRA_MESSAGE);
/* Create a new textview where we can show the message the user sent */
TextView textView = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
setContentView(R.layout.activity_display_message);
}
}