Adds hit points to monster card.

This commit is contained in:
2020-09-01 20:55:58 -07:00
parent 37800d4fb8
commit f607954ce6
5 changed files with 89 additions and 1 deletions

View File

@@ -69,5 +69,18 @@
app:layout_constraintTop_toBottomOf="@+id/divider1"
tools:text="Armor Class 15" />
<TextView
android:id="@+id/hit_points"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:layout_marginEnd="8dp"
android:layout_marginBottom="8dp"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/armor_class"
tools:text="Hit Points 1 (1d4 - 1)" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>