aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/item_folder.xml
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/item_folder.xml')
-rw-r--r--app/src/main/res/layout/item_folder.xml48
1 files changed, 0 insertions, 48 deletions
diff --git a/app/src/main/res/layout/item_folder.xml b/app/src/main/res/layout/item_folder.xml
deleted file mode 100644
index bb5a2bf..0000000
--- a/app/src/main/res/layout/item_folder.xml
+++ /dev/null
@@ -1,48 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- style="@style/Widget.Rsend.Card"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:orientation="horizontal"
- android:gravity="center_vertical"
- android:clickable="true"
- android:focusable="true"
- android:foreground="?attr/selectableItemBackground">
-
- <ImageView
- android:layout_width="24dp"
- android:layout_height="24dp"
- android:layout_marginEnd="@dimen/space_m"
- android:src="@drawable/ic_folder"
- android:contentDescription="@null" />
-
- <LinearLayout
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="vertical">
-
- <TextView
- android:id="@+id/folderName"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:maxLines="1"
- android:ellipsize="end"
- android:textAppearance="@style/TextAppearance.Rsend.Title" />
-
- <TextView
- android:id="@+id/folderPath"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:maxLines="1"
- android:ellipsize="end"
- android:textAppearance="@style/TextAppearance.Rsend.Caption" />
- </LinearLayout>
-
- <TextView
- android:id="@+id/folderChip"
- style="@style/Widget.Rsend.Chip"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginStart="@dimen/space_s" />
-</LinearLayout>