1

私はそれに従っていて、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();

`

4

2 に答える 2

0

Java の変数は大文字と小文字が区別されるためtextView、 とtextviewは異なります。コードを次のように変更します。

TextView textview = new TextView(this);
textview.setTextSize(40);
textview.setText(message);

// Set the text view as the activity layout
setContentView(textview);
于 2013-07-22T19:07:47.380 に答える