summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/row_layout.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/row_layout.xml')
-rw-r--r--app/src/main/res/layout/row_layout.xml47
1 files changed, 0 insertions, 47 deletions
diff --git a/app/src/main/res/layout/row_layout.xml b/app/src/main/res/layout/row_layout.xml
deleted file mode 100644
index 1c74476..0000000
--- a/app/src/main/res/layout/row_layout.xml
+++ /dev/null
@@ -1,47 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<androidx.constraintlayout.widget.ConstraintLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- xmlns:tools="http://schemas.android.com/tools"
- xmlns:app="http://schemas.android.com/apk/res-auto"
- android:layout_width="match_parent"
- android:layout_height="?android:attr/listPreferredItemHeight"
- android:layout_marginStart="?android:attr/listPreferredItemPaddingLeft"
- android:layout_marginEnd="?android:attr/listPreferredItemPaddingRight"
- android:gravity="center_vertical"
- android:padding="6dip">
-
-<ImageView
- android:id="@+id/icon"
- android:layout_width="wrap_content"
- android:layout_height="fill_parent"
- android:layout_alignParentBottom="true"
- android:layout_alignParentTop="true"
- android:layout_marginEnd="6dip"
- android:contentDescription="@string/rv_image"
- android:src="@mipmap/ic_launcher"
- tools:ignore="MissingConstraints" />
-
-<TextView
- android:id="@+id/secondLine"
- android:layout_height="26dip"
- android:ellipsize="marquee"
- android:text="@string/rv_description"
- android:textSize="12sp"
- app:layout_constraintStart_toEndOf="@id/icon"
- app:layout_constraintTop_toBottomOf="@id/firstLine"
- android:layout_width="0dp" />
-
-<TextView
- android:id="@+id/firstLine"
- android:layout_height="wrap_content"
- android:layout_toEndOf="@id/icon"
- android:gravity="center_vertical"
- android:text="@string/rv_title"
- android:textSize="16sp"
- app:layout_constraintStart_toEndOf="@id/icon"
- app:layout_constraintEnd_toEndOf="parent"
- android:layout_width="0dp"
- tools:ignore="MissingConstraints" />
-
-
-</androidx.constraintlayout.widget.ConstraintLayout>