|
@@ -24,33 +24,90 @@
|
|
|
android:layout_width="match_parent"
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="match_parent">
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
- <androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
- android:id="@+id/tvTotalScore"
|
|
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/totalScoreLayout"
|
|
|
android:layout_width="@dimen/divider_190px"
|
|
android:layout_width="@dimen/divider_190px"
|
|
|
android:layout_height="@dimen/divider_58px"
|
|
android:layout_height="@dimen/divider_58px"
|
|
|
android:layout_marginTop="@dimen/divider_311px"
|
|
android:layout_marginTop="@dimen/divider_311px"
|
|
|
- android:fontFamily="@font/lcb"
|
|
|
|
|
android:gravity="center"
|
|
android:gravity="center"
|
|
|
- android:includeFontPadding="false"
|
|
|
|
|
- android:textColor="@android:color/white"
|
|
|
|
|
- android:textSize="@dimen/divider_28px"
|
|
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
|
|
|
|
|
- <androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
- android:id="@+id/tvGameLevelScore"
|
|
|
|
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:fontFamily="@font/lcb"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:includeFontPadding="false"
|
|
|
|
|
+ android:text="@string/cumulative_score"
|
|
|
|
|
+ android:textColor="@android:color/white"
|
|
|
|
|
+ android:textSize="@dimen/divider_28px" />
|
|
|
|
|
+
|
|
|
|
|
+ <com.yingyangfly.game.widget.NumberAnimTextView
|
|
|
|
|
+ android:id="@+id/tvTotalScore"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:fontFamily="@font/lcb"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:includeFontPadding="false"
|
|
|
|
|
+ android:textColor="@android:color/white"
|
|
|
|
|
+ android:textSize="@dimen/divider_28px" />
|
|
|
|
|
+
|
|
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:fontFamily="@font/lcb"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:includeFontPadding="false"
|
|
|
|
|
+ android:text="@string/scores"
|
|
|
|
|
+ android:textColor="@android:color/white"
|
|
|
|
|
+ android:textSize="@dimen/divider_28px" />
|
|
|
|
|
+
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
+
|
|
|
|
|
+ <LinearLayout
|
|
|
|
|
+ android:id="@+id/gameLevelScoreLayout"
|
|
|
android:layout_width="@dimen/divider_190px"
|
|
android:layout_width="@dimen/divider_190px"
|
|
|
android:layout_height="@dimen/divider_58px"
|
|
android:layout_height="@dimen/divider_58px"
|
|
|
android:layout_marginTop="@dimen/divider_8px"
|
|
android:layout_marginTop="@dimen/divider_8px"
|
|
|
- android:fontFamily="@font/lcb"
|
|
|
|
|
android:gravity="center"
|
|
android:gravity="center"
|
|
|
- android:includeFontPadding="false"
|
|
|
|
|
- android:textColor="@android:color/white"
|
|
|
|
|
- android:textSize="@dimen/divider_28px"
|
|
|
|
|
|
|
+ android:orientation="horizontal"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/tvTotalScore" />
|
|
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/totalScoreLayout">
|
|
|
|
|
+
|
|
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:fontFamily="@font/lcb"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:includeFontPadding="false"
|
|
|
|
|
+ android:text="@string/this_level_score"
|
|
|
|
|
+ android:textColor="@android:color/white"
|
|
|
|
|
+ android:textSize="@dimen/divider_28px" />
|
|
|
|
|
+
|
|
|
|
|
+ <com.yingyangfly.game.widget.NumberAnimTextView
|
|
|
|
|
+ android:id="@+id/tvGameLevelScore"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:fontFamily="@font/lcb"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:includeFontPadding="false"
|
|
|
|
|
+ android:textColor="@android:color/white"
|
|
|
|
|
+ android:textSize="@dimen/divider_28px" />
|
|
|
|
|
+
|
|
|
|
|
+ <androidx.appcompat.widget.AppCompatTextView
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:fontFamily="@font/lcb"
|
|
|
|
|
+ android:gravity="center"
|
|
|
|
|
+ android:includeFontPadding="false"
|
|
|
|
|
+ android:text="@string/scores"
|
|
|
|
|
+ android:textColor="@android:color/white"
|
|
|
|
|
+ android:textSize="@dimen/divider_28px" />
|
|
|
|
|
+ </LinearLayout>
|
|
|
|
|
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
android:id="@+id/btnDetermine"
|
|
android:id="@+id/btnDetermine"
|
|
@@ -62,7 +119,7 @@
|
|
|
android:scaleType="centerInside"
|
|
android:scaleType="centerInside"
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
- app:layout_constraintTop_toBottomOf="@+id/tvGameLevelScore" />
|
|
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/gameLevelScoreLayout" />
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
|