aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-02-20 16:43:50 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2021-02-20 16:43:50 +0100
commit1eb274dcaaf1ee5f79505da935afcd89856e21fd (patch)
tree8a15beb7ae2107a14da4d8a12bf8daf56c203f63 /app/src/main/res/layout
parent893c9110c99cff286011e3d35acb39ba65a97476 (diff)
Implementation of Glide.
Replace the current way by Glide for more stability. Also allows to keep the images with sharedpreferences.
Diffstat (limited to 'app/src/main/res/layout')
-rw-r--r--app/src/main/res/layout/item_layout.xml30
1 files changed, 13 insertions, 17 deletions
diff --git a/app/src/main/res/layout/item_layout.xml b/app/src/main/res/layout/item_layout.xml
index 8d7a792..5ef1c19 100644
--- a/app/src/main/res/layout/item_layout.xml
+++ b/app/src/main/res/layout/item_layout.xml
@@ -1,6 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
-<androidx.cardview.widget.CardView
- xmlns:android="http://schemas.android.com/apk/res/android"
+<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/cv_cardView"
android:layout_width="match_parent"
@@ -9,30 +8,30 @@
android:clickable="true"
android:focusable="true"
android:foreground="?selectableItemBackground"
- app:cardCornerRadius="10dp"
app:cardBackgroundColor="@color/black"
- >
+ app:cardCornerRadius="13dp">
+ <!--android:onClick="fromListToDetail"-->
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:padding="10dp"
- >
+ android:padding="10dp">
<ImageView
android:id="@+id/iv_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- app:layout_constraintTop_toTopOf="parent"
+ android:contentDescription="@string/rv_image"
+ android:src="@mipmap/ic_launcher"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintStart_toStartOf="parent"
- android:src="@mipmap/ic_launcher"
- android:contentDescription="@string/rv_image" />
+ app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_title"
android:layout_width="0dp"
android:layout_height="match_parent"
+ android:layout_marginHorizontal="10sp"
android:fontFamily="@font/bangers"
android:text="@string/rv_title"
android:textAlignment="center"
@@ -41,32 +40,29 @@
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/iv_image"
- app:layout_constraintTop_toTopOf="parent"
- android:layout_marginHorizontal="10sp"/>
+ app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_rank"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:background="@color/very_dark_purple"
android:text="@string/rv_rank"
android:textColor="@color/slightly_desaturated_magenta"
android:textSize="20sp"
+ app:layout_constraintBottom_toTopOf="@id/tv_title"
app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintTop_toTopOf="parent"
- app:layout_constraintBottom_toTopOf="@id/tv_title"/>
+ app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/tv_score"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:background="@color/very_dark_purple"
android:text="@string/rv_score"
android:textColor="@color/slightly_desaturated_magenta"
android:textSize="20sp"
- app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintTop_toBottomOf="@id/tv_title"/>
+ app:layout_constraintEnd_toEndOf="parent"
+ app:layout_constraintTop_toBottomOf="@id/tv_title" />
</androidx.constraintlayout.widget.ConstraintLayout>
</androidx.cardview.widget.CardView> \ No newline at end of file