Skip to content

Instantly share code, notes, and snippets.

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.
@NicReg
NicReg / ReportCard.java
Created June 13, 2017 22:33
ReportCard showing data about student, date, subjects, grades and comments.
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.