Skip to content

Commit

Permalink
Removed Year 3 & 4 Due to lack of data
Browse files Browse the repository at this point in the history
  • Loading branch information
sukumar1210 committed May 16, 2023
1 parent 963606b commit a60c0e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/src/main/java/com/example/base/Time_Table.java
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ protected void onCreate(Bundle savedInstanceState) {

// year select
Spinner yearDropdown = findViewById(R.id.year);
String[] years = new String[]{"1st Year", "2nd Year", "3rd Year", "4th Year"};
String[] years = new String[]{"1st Year", "2nd Year"}; //, "3rd Year", "4th Year"
ArrayAdapter<String> yearAdapter = new ArrayAdapter<>(this, android.R.layout.simple_spinner_dropdown_item, years);
yearDropdown.setAdapter(yearAdapter);

Expand Down

0 comments on commit a60c0e6

Please sign in to comment.