Java Intents are objects that software developers use when we want to do something in Java and we pass data to Intents using extras. Intents allow software developers to navigate activities.
Button greatDebate = (Button) findViewById(R.id.DebateButton);
String buttonLabel = getString (R.string.Debate);
greatDebate.setText(buttonLabel);