use of com.cmput301w18t05.taskzilla.PersonalColors in project Taskzilla by CMPUT301W18T05.
the class WelcomeActivity method loadAppColors.
/**
* load the AppColors singleton from storage
*/
private void loadAppColors() {
try {
FileInputStream fis = openFileInput("COLORS.TXT");
BufferedReader br = new BufferedReader(new InputStreamReader(fis));
PersonalColors c = new Gson().fromJson(br, PersonalColors.class);
AppColors.getInstance().setColors(c);
} catch (FileNotFoundException e) {
System.out.println("File not found!");
}
}
Aggregations