This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.nico.reportcard; | |
import java.util.ArrayList; | |
public class ReportCard { | |
// School name is a constant as this will never change | |
private static final String School = "Your University"; | |
/* Declaring Student and Date variables as part of the info to display. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package com.example.nico.reportcard; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import java.util.ArrayList; | |
public class ReportCard { | |
/* Declaring Student and Date variables as part of the info to display. |