-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(reset level and music): music added and functionality to reset l…
…evel added
- Loading branch information
1 parent
69ed9f7
commit a197834
Showing
9 changed files
with
142 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
7 changes: 0 additions & 7 deletions
7
app/src/main/java/com/jorgecruces/metrometro/logic/PickerStationsAlternative.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" | ||
xmlns:app="http://schemas.android.com/apk/res-auto" | ||
xmlns:tools="http://schemas.android.com/tools" | ||
android:id="@+id/dialogLayout" | ||
android:layout_width="match_parent" | ||
android:layout_height="230dp" | ||
android:background="@color/white"> | ||
|
||
<TextView | ||
android:id="@+id/lostTextView" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="8dp" | ||
android:fontFamily="@font/titiliumweb_bold" | ||
android:padding="20dp" | ||
android:text="¡Acabas de perder! :(" | ||
android:textAlignment="center" | ||
android:textColor="#000000" | ||
android:textSize="24sp" | ||
android:textStyle="bold" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:layout_constraintTop_toTopOf="parent" /> | ||
|
||
<ImageView | ||
android:id="@+id/imageViewResetLevel" | ||
android:layout_width="101dp" | ||
android:layout_height="84dp" | ||
android:layout_marginStart="64dp" | ||
android:layout_marginEnd="60dp" | ||
android:layout_marginBottom="16dp" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toStartOf="@+id/imageView10" | ||
app:layout_constraintStart_toStartOf="parent" | ||
app:srcCompat="@drawable/main_menu_button_reset" /> | ||
|
||
<ImageView | ||
android:id="@+id/imageView10" | ||
android:layout_width="101dp" | ||
android:layout_height="84dp" | ||
android:layout_marginStart="24dp" | ||
android:layout_marginEnd="64dp" | ||
android:layout_marginBottom="16dp" | ||
app:layout_constraintBottom_toBottomOf="parent" | ||
app:layout_constraintEnd_toEndOf="parent" | ||
app:layout_constraintStart_toEndOf="@+id/imageViewResetLevel" | ||
app:srcCompat="@drawable/gameplay_button_ad" /> | ||
|
||
<TextView | ||
android:id="@+id/textView6" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="100dp" | ||
android:layout_marginEnd="8dp" | ||
android:fontFamily="@font/titiliumweb_bold" | ||
android:text="Continuar" | ||
android:textColor="#000000" | ||
android:textSize="20sp" | ||
app:layout_constraintBottom_toTopOf="@+id/imageView10" | ||
app:layout_constraintEnd_toEndOf="@+id/imageView10" | ||
app:layout_constraintTop_toTopOf="parent" | ||
app:layout_constraintVertical_bias="0.0" /> | ||
|
||
<TextView | ||
android:id="@+id/textView4" | ||
android:layout_width="wrap_content" | ||
android:layout_height="wrap_content" | ||
android:layout_marginTop="100dp" | ||
android:fontFamily="@font/titiliumweb_bold" | ||
android:text="Reiniciar nivel" | ||
android:textColor="#000000" | ||
android:textSize="20sp" | ||
app:layout_constraintBottom_toTopOf="@+id/imageViewResetLevel" | ||
app:layout_constraintStart_toStartOf="@+id/imageViewResetLevel" | ||
app:layout_constraintTop_toTopOf="parent" | ||
app:layout_constraintVertical_bias="1.0" /> | ||
|
||
</androidx.constraintlayout.widget.ConstraintLayout> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters