Fixed playerList, now the players can be deleted and added
Editor still missing
This commit is contained in:
parent
aebb20542e
commit
30515a5384
7 changed files with 211 additions and 103 deletions
|
@ -25,14 +25,6 @@
|
|||
</RelativeLayout>
|
||||
</android.support.v7.widget.Toolbar>
|
||||
|
||||
<Button
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/finish_button"
|
||||
android:onClick="finishButton"
|
||||
android:layout_gravity="center_horizontal"
|
||||
android:text="Save character" />
|
||||
|
||||
<ScrollView
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
|
|
|
@ -45,6 +45,13 @@
|
|||
android:layout_height="wrap_content"
|
||||
android:id="@+id/listView"
|
||||
android:layout_gravity="center_horizontal" />
|
||||
<TextView
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:id="@+id/help_text"
|
||||
android:text="@string/help_welcome_text"
|
||||
android:layout_gravity="center"/>
|
||||
|
||||
</LinearLayout>
|
||||
|
||||
|
||||
|
|
|
@ -90,4 +90,5 @@
|
|||
<string name="add_player">Add player</string>
|
||||
<string name="zero" translatable="false">0</string>
|
||||
<string name="no_players">No players, please add one</string>
|
||||
<string name="help_welcome_text">Press a player to open, long press for options</string>
|
||||
</resources>
|
||||
|
|
Reference in a new issue