GitHub
Changes
So, I styled my cards a bit and increased the text size. I also did move to a new library for my FAButton and it works pretty much like I want it to. Like in my other ListView, I added delete/edit function onLongItemClick. The biggest change was another update to my data model, mostly to support the date for my timestamp. I could have probably made one before, but I was concerned that if the data wasn't attached specifically to each description, I'd have a lot of trouble saving it.
Previous Model
Enemy Class:
Name(String), Descriptions(ArrayList<String>)
New Model
Enemy Class:
name(String), Reasons(ArrayList<Reason>)
Reason Class:
description(String), time(Date)
Enemy Class:
Name(String), Descriptions(ArrayList<String>)
Enemy Class:
name(String), Reasons(ArrayList<Reason>)
Reason Class:
description(String), time(Date)
No comments:
Post a Comment