Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-deck.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/src/main/res/layout/item_attachment_default.xml')
-rw-r--r--app/src/main/res/layout/item_attachment_default.xml19
1 files changed, 11 insertions, 8 deletions
diff --git a/app/src/main/res/layout/item_attachment_default.xml b/app/src/main/res/layout/item_attachment_default.xml
index 98e3114eb..88e2126cd 100644
--- a/app/src/main/res/layout/item_attachment_default.xml
+++ b/app/src/main/res/layout/item_attachment_default.xml
@@ -9,23 +9,25 @@
android:padding="@dimen/spacer_2x">
<FrameLayout
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_marginEnd="@dimen/spacer_1x">
+ android:layout_width="@dimen/avatar_size"
+ android:layout_height="@dimen/avatar_size"
+ android:layout_marginEnd="@dimen/spacer_2x">
- <androidx.appcompat.widget.AppCompatImageView
+ <ImageView
android:id="@+id/preview"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
android:layout_gravity="center"
- android:layout_margin="@dimen/spacer_1x"
+ android:contentDescription="@null"
+ android:padding="@dimen/spacer_1hx"
app:srcCompat="@drawable/ic_attach_file_grey600_24dp" />
- <androidx.appcompat.widget.AppCompatImageView
+ <ImageView
android:id="@+id/not_synced_yet"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|end"
+ android:contentDescription="@string/not_synced_yet"
android:visibility="gone"
app:srcCompat="@drawable/ic_sync_blue_24dp"
tools:visibility="visible" />
@@ -36,6 +38,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_gravity="center"
+ android:layout_marginEnd="@dimen/spacer_1x"
android:layout_weight="1"
android:textAppearance="?attr/textAppearanceListItem"
tools:maxLength="30"