Add high score system with persistent storage using SharedPreferences and Gson

This commit is contained in:
cmclark00 2025-03-27 00:27:44 -04:00
parent 8dc1d433ea
commit b068de76f5
17 changed files with 480 additions and 168 deletions

View file

@ -190,6 +190,16 @@
android:text="@string/restart"
android:textColor="@color/white"
android:textSize="18sp" />
<Button
android:id="@+id/highScoresButton"
android:layout_width="200dp"
android:layout_height="wrap_content"
android:layout_marginTop="16dp"
android:background="@color/transparent"
android:text="@string/high_scores"
android:textColor="@color/white"
android:textSize="18sp" />
<LinearLayout
android:id="@+id/levelSelectorContainer"