Я только начал учить себя разработке 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>