Add semicolons
Simply add a semicolon at the end of each line
Start file
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_second)
Intent intent = getIntent()
String text = intent.getStringExtra("text")
TextView view = findViewById(R.id.textView2)
view.setText(text)
End file
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_second);
Intent intent = getIntent();
String text = intent.getStringExtra("text");
TextView view = findViewById(R.id.textView2);
view.setText(text);
View Diff
1,4c1,4
< super.onCreate(savedInstanceState)
< setContentView(R.layout.activity_second)
< Intent intent = getIntent()
< String text = intent.getStringExtra("text")
---
> super.onCreate(savedInstanceState);
> setContentView(R.layout.activity_second);
> Intent intent = getIntent();
> String text = intent.getStringExtra("text");
6,7c6,7
< TextView view = findViewById(R.id.textView2)
< view.setText(text)
\ No newline at end of file
---
> TextView view = findViewById(R.id.textView2);
> view.setText(text);
\ No newline at end of file
Solutions by @HansW313:
Unlock 1 remaining solutions by signing in and submitting your own entry