Ошибка: неизвестный класс: 'message' - как это исправить? - PullRequest
0 голосов
/ 28 января 2019

Я только начал учить себя разработке Android, и у меня возникла ошибка в этом базовом приложении hello world.

Я пытался искать, но все кажется китайским языком.

вот учебник, которому я следовал: https://developer.android.com/training/basics/firstapp/starting-activity

и вот скриншот моей ошибки: [Я включу код ниже] [1]: https://i.stack.imgur.com/Xm1tg.png

<code>
public class DisplayMessageActivity extends AppCompatActivity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_display_message);
}

// Get the Intent that started this activity and extract the string
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

// Capture the layout's TextView and set the string as its text
TextView textView = findViewById(R.id.textView);
textView.setText(message);//on this line i get an error under "message"
</code>

Ответы [ 2 ]

0 голосов
/ 28 января 2019

Вам нужно переместить следующий код внутрь onCreate()

// Get the Intent that started this activity and extract the string
Intent intent = getIntent();
String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

// Capture the layout's TextView and set the string as its text
TextView textView = findViewById(R.id.textView);
textView.setText(message);//on this line i get an error under "message"
0 голосов
/ 28 января 2019

Переместите этот код в метод onCreate (), например:

public class DisplayMessageActivity extends AppCompatActivity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_display_message);

        // Get the Intent that started this activity and extract the string
        Intent intent = getIntent();
        String message = intent.getStringExtra(MainActivity.EXTRA_MESSAGE);

        // Capture the layout's TextView and set the string as its text
        TextView textView = findViewById(R.id.textView);
        textView.setText(message);
    }
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...