
Added a Symbol Map to solve issues with saving 2 digit values to file. LoadGame Activity is now also working.
17 lines
719 B
XML
17 lines
719 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
|
|
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
|
|
android:paddingRight="@dimen/activity_horizontal_margin"
|
|
android:paddingTop="@dimen/activity_vertical_margin"
|
|
android:paddingBottom="@dimen/activity_vertical_margin"
|
|
tools:context="tu_darmstadt.sudoku.ui.LoadGameActivity">
|
|
|
|
<ListView
|
|
android:id="@+id/load_game_list"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
|
|
</ListView>
|
|
|
|
</RelativeLayout>
|