I'm new to Android Studio, any help would be greatly appreciated.
This is not the mainActivity but another page called StudentReg1 and branch refers to the spinner id as well as as string array in strings.xml
public class StudentReg1 extends AppCompatActivity { @Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.student_reg1);}
Spinner mySpinner = (Spinner) findViewById(R.id.branch);
ArrayAdapter<String> myAdapter = new ArrayAdapter<String>(StudentReg1.this,android.R.layout.simple_list_item_1, getResources().getStringArray(R.array.branch));
myAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
mySpinner.setAdapter(myAdapter);
}
setDropDownViewResource and setAdapter appear in red, I don't seem to understand the issue.