|
|
|
@ -4,13 +4,194 @@
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:paddingHorizontal="30dp"
|
|
|
|
|
tools:context=".view.HomeActivity">
|
|
|
|
|
|
|
|
|
|
<Button
|
|
|
|
|
android:id="@+id/button"
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textViewTitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Button"
|
|
|
|
|
tools:layout_editor_absoluteX="25dp"
|
|
|
|
|
tools:layout_editor_absoluteY="14dp" />
|
|
|
|
|
android:layout_marginTop="40dp"
|
|
|
|
|
android:text="Hello Varun"
|
|
|
|
|
android:textColor="@color/title"
|
|
|
|
|
android:textSize="20sp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textViewSubtitle"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="5dp"
|
|
|
|
|
android:fontFamily="@font/mulish_black"
|
|
|
|
|
android:text="Welcome Back!"
|
|
|
|
|
android:textColor="@color/title"
|
|
|
|
|
android:textSize="28sp"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/textViewTitle" />
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/searchBarContainer"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="45dp"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:background="@drawable/background"
|
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="horizontal"
|
|
|
|
|
android:paddingHorizontal="16dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@id/textViewSubtitle">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:layout_width="14dp"
|
|
|
|
|
android:layout_height="14dp"
|
|
|
|
|
android:contentDescription="search icon"
|
|
|
|
|
android:src="@drawable/search" />
|
|
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
|
android:id="@+id/searchBar"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="8dp"
|
|
|
|
|
android:background="@android:color/transparent"
|
|
|
|
|
android:drawablePadding="8dp"
|
|
|
|
|
android:hint="Search for a league, team, etc."
|
|
|
|
|
android:inputType="text"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:textColorHint="#B0B0B0"
|
|
|
|
|
android:textSize="15dp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/textViewRecentMatches"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="20dp"
|
|
|
|
|
android:text="Recent Matches"
|
|
|
|
|
android:textColor="@color/title"
|
|
|
|
|
android:textSize="20dp"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/searchBarContainer" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:id="@+id/CardContainer"
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
|
android:background="@drawable/background"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:paddingHorizontal="20dp"
|
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
|
app:layout_constraintTop_toBottomOf="@+id/textViewRecentMatches">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginTop="15dp"
|
|
|
|
|
android:layout_marginBottom="15dp"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:fontFamily="@font/mulish_bold"
|
|
|
|
|
android:maxLines="1"
|
|
|
|
|
android:text="Champions League - Groupe Stage: Matchay"
|
|
|
|
|
android:textColor="@color/title"
|
|
|
|
|
android:textSize="14dp"
|
|
|
|
|
android:textStyle="bold" />
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
android:layout_marginBottom="10dp"
|
|
|
|
|
android:orientation="horizontal">
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.4"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/ImageFirstTeam"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="2"
|
|
|
|
|
|
|
|
|
|
android:text="Fluminense FC"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:textSize="16dp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.3"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:fontFamily="@font/mulish_black"
|
|
|
|
|
android:text="2-1"
|
|
|
|
|
android:textColor="@color/title"
|
|
|
|
|
android:textSize="43dp" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:fontFamily="@font/mulish_extrabold"
|
|
|
|
|
android:maxLines="2"
|
|
|
|
|
android:text="Full-time"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:textColor="@color/title"
|
|
|
|
|
android:textSize="18dp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="0dp"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_weight="0.4"
|
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
|
android:id="@+id/ImageSecondTeam"
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:ellipsize="end"
|
|
|
|
|
android:maxLines="2"
|
|
|
|
|
android:text="CA Mineiro"
|
|
|
|
|
android:textAlignment="center"
|
|
|
|
|
android:textSize="16dp" />
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
<View
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="1dp"
|
|
|
|
|
android:layout_marginBottom="20dp"
|
|
|
|
|
android:background="#E1DFDF" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|