|
|
|
@ -6,5 +6,28 @@
|
|
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
tools:context="tetrisGame.activity.Game">
|
|
|
|
|
|
|
|
|
|
<tetrisGame.views.ViewsGame
|
|
|
|
|
android:id="@+id/tabGame"
|
|
|
|
|
android:layout_width="300dp"
|
|
|
|
|
android:layout_height="300dp"
|
|
|
|
|
android:layout_marginEnd="111dp"
|
|
|
|
|
android:layout_marginBottom="431dp"
|
|
|
|
|
android:background="@color/black"
|
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/TextScore"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:gravity="center"
|
|
|
|
|
android:text="@string/TextScore"
|
|
|
|
|
app:layout_constraintBottom_toTopOf="@+id/tabGame"
|
|
|
|
|
app:layout_constraintEnd_toStartOf="@+id/tabGame"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|