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:
authorstefan-niedermann <info@niedermann.it>2020-03-04 22:57:48 +0300
committerstefan-niedermann <info@niedermann.it>2020-03-04 22:57:48 +0300
commit71161a18708c725283127491e09382a1c5167932 (patch)
treefc950c9003a401a54a36171f7f730483d5f3bc75
parent56692f300ded83486b9082792eae6ef653852d0f (diff)
Fix #290 Card context menu is cut off
-rw-r--r--app/src/main/res/layout/item_card.xml6
-rw-r--r--fastlane/metadata/android/en-US/changelogs/22.txt4
2 files changed, 6 insertions, 4 deletions
diff --git a/app/src/main/res/layout/item_card.xml b/app/src/main/res/layout/item_card.xml
index 7adfac621..92977d262 100644
--- a/app/src/main/res/layout/item_card.xml
+++ b/app/src/main/res/layout/item_card.xml
@@ -71,8 +71,7 @@
android:id="@+id/card_menu"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
- android:layout_marginEnd="-16dp"
- android:layout_marginRight="-16dp"
+ android:background="?attr/selectableItemBackground"
android:contentDescription="@string/label_menu"
android:padding="@dimen/standard_quarter_padding"
app:srcCompat="@drawable/ic_menu" />
@@ -99,7 +98,7 @@
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/standard_quarter_margin"
- android:layout_marginBottom="@dimen/standard_half_margin"
+ android:layout_marginBottom="@dimen/standard_quarter_margin"
android:orientation="horizontal">
<com.google.android.material.chip.ChipGroup
@@ -114,6 +113,7 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
+ android:layout_gravity="center_vertical"
android:gravity="end">
<androidx.appcompat.widget.AppCompatTextView
diff --git a/fastlane/metadata/android/en-US/changelogs/22.txt b/fastlane/metadata/android/en-US/changelogs/22.txt
index 82c6f883f..dedc6053b 100644
--- a/fastlane/metadata/android/en-US/changelogs/22.txt
+++ b/fastlane/metadata/android/en-US/changelogs/22.txt
@@ -1 +1,3 @@
-- Wrap card title to new line(s) if length exceeds width of screen (#261) \ No newline at end of file
+- Wrap card title to new line(s) if length exceeds width of screen (#261)
+- Migrate from ButterKnife to ViewBinding (#285)
+- Card context menu is cut off (#290) \ No newline at end of file