Añadi asiento y modificación de drawable

This commit is contained in:
sebastiancc27 2024-03-21 07:44:32 -06:00
parent d2f2040e2a
commit 58f1247e72
5 changed files with 17 additions and 18 deletions

View File

@ -2,7 +2,7 @@
<project version="4"> <project version="4">
<component name="deploymentTargetDropDown"> <component name="deploymentTargetDropDown">
<value> <value>
<entry key="app"> <entry key="MainActivity">
<State /> <State />
</entry> </entry>
</value> </value>

View File

@ -5,6 +5,7 @@
<option name="linkedExternalProjectsSettings"> <option name="linkedExternalProjectsSettings">
<GradleProjectSettings> <GradleProjectSettings>
<option name="externalProjectPath" value="$PROJECT_DIR$" /> <option name="externalProjectPath" value="$PROJECT_DIR$" />
<option name="gradleHome" value="$PROJECT_DIR$/../../../../workspace/gradle-8.2" />
<option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" /> <option name="gradleJvm" value="#GRADLE_LOCAL_JAVA_HOME" />
<option name="modules"> <option name="modules">
<set> <set>

Binary file not shown.

After

Width:  |  Height:  |  Size: 677 B

View File

@ -3,8 +3,8 @@
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools" xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent" android:layout_width="match_parent"
android:background="#2B7F88"
android:layout_height="match_parent" android:layout_height="match_parent"
android:background="#2B7F88"
tools:context=".MainActivity"> tools:context=".MainActivity">
<TextView <TextView
@ -12,9 +12,9 @@
android:layout_width="415dp" android:layout_width="415dp"
android:layout_height="87dp" android:layout_height="87dp"
android:background="#08404F" android:background="#08404F"
android:fontFamily="@font/cinepolis"
android:gravity="center" android:gravity="center"
android:text="Playpal" android:text="Playpal"
android:fontFamily="@font/cinepolis"
android:textAlignment="gravity" android:textAlignment="gravity"
android:textColor="@color/white" android:textColor="@color/white"
android:textSize="50sp" android:textSize="50sp"
@ -34,12 +34,11 @@
<androidx.recyclerview.widget.RecyclerView <androidx.recyclerview.widget.RecyclerView
android:id="@+id/chairRecycleView" android:id="@+id/chairRecycleView"
android:layout_width="309dp" android:layout_width="411dp"
android:layout_height="155dp" android:layout_height="231dp"
android:layout_marginTop="176dp" android:layout_marginTop="132dp"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toBottomOf="@+id/eventTextTitle"
app:layout_constraintStart_toStartOf="parent" tools:layout_editor_absoluteX="0dp" />
app:layout_constraintTop_toBottomOf="@+id/eventTextTitle" />
<TextView <TextView
android:id="@+id/noSalaText" android:id="@+id/noSalaText"
@ -115,16 +114,14 @@
android:id="@+id/textView8" android:id="@+id/textView8"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="130dp" android:layout_height="130dp"
android:layout_marginTop="56dp" android:layout_marginTop="40dp"
android:background="#612020" android:background="#612020"
android:fontFamily="@font/cinepolis" android:fontFamily="@font/cinepolis"
android:gravity="center" android:gravity="center"
android:text="Escenario" android:text="Escenario"
android:textColor="@color/white" android:textColor="@color/white"
android:textSize="50dp" android:textSize="50dp"
app:layout_constraintEnd_toEndOf="parent" app:layout_constraintTop_toBottomOf="@+id/chairRecycleView"
app:layout_constraintHorizontal_bias="0.0" tools:layout_editor_absoluteX="2dp" />
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/chairRecycleView" />
</androidx.constraintlayout.widget.ConstraintLayout> </androidx.constraintlayout.widget.ConstraintLayout>

View File

@ -1,15 +1,16 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent" android:layout_width="50dp"
android:layout_height="wrap_content" android:layout_height="50dp"
xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_margin="16dp" android:layout_margin="16dp"
android:background="#225c6e"> android:background="#225c6e">
<TextView <TextView
android:layout_width="match_parent" android:layout_width="50dp"
android:layout_height="wrap_content" android:layout_height="50dp"
android:id="@+id/chair" android:id="@+id/chair"
android:textColor="#FFFFFF" android:textColor="#FFFFFF"
android:background="@drawable/asiento"
app:layout_constraintRight_toRightOf="parent" app:layout_constraintRight_toRightOf="parent"
app:layout_constraintLeft_toLeftOf="parent" app:layout_constraintLeft_toLeftOf="parent"
/> />