私はそれに従っていて、3つのテキストビューエラーチュートリアルで立ち往生しています: http://developer.android.com/training/basics/firstapp/starting-activity.html textViewを解決できないという2つのエラーと、textViewを解決できないという1つのエラーが表示されます変数として解決されます。ヘルプ!
@SuppressLint("NewApi")
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
// Get the message from the intent
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);
// Create the text view
TextView textview = new TextView(this);
textView.setTextSize(40);
textView.setText(message);
// Set the text view as the activity layout
setContentView(textView);
setContentView(R.layout.activity_display_message);
// Show the Up button in the action bar.
setupActionBar();
`