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>2022-11-03 21:28:42 +0300
committerStefan Niedermann <info@niedermann.it>2022-11-03 21:28:42 +0300
commitbad2fb13de44553d6604e8f57688933be1c5a530 (patch)
tree554208f85d334c9363c03c789fd926a6453a2133
parent8a429d7566c9383928cae507230bb5263eaf2436 (diff)
Material 3: Fix fabSize
Signed-off-by: Stefan Niedermann <info@niedermann.it>
-rw-r--r--app/src/main/res/layout/activity_take_photo.xml4
-rw-r--r--app/src/main/res/layout/dialog_board_manage_labels.xml2
-rw-r--r--app/src/main/res/layout/fragment_card_edit_tab_comments.xml4
3 files changed, 5 insertions, 5 deletions
diff --git a/app/src/main/res/layout/activity_take_photo.xml b/app/src/main/res/layout/activity_take_photo.xml
index 652f58a98..bdfc8a076 100644
--- a/app/src/main/res/layout/activity_take_photo.xml
+++ b/app/src/main/res/layout/activity_take_photo.xml
@@ -24,12 +24,12 @@
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/switchCamera"
+ style="?attr/floatingActionButtonSmallSecondaryStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/take_photo_switch_camera"
android:tint="@android:color/white"
app:backgroundTint="@color/defaultBrand"
- app:fabSize="mini"
app:layout_constraintBottom_toBottomOf="@id/takePhoto"
app:layout_constraintEnd_toStartOf="@id/takePhoto"
app:layout_constraintStart_toStartOf="parent"
@@ -50,12 +50,12 @@
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/toggle_torch"
+ style="?attr/floatingActionButtonSmallSecondaryStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:contentDescription="@string/take_photo_toggle_torch"
android:tint="@android:color/white"
app:backgroundTint="@color/defaultBrand"
- app:fabSize="mini"
app:layout_constraintBottom_toBottomOf="@id/takePhoto"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toEndOf="@id/takePhoto"
diff --git a/app/src/main/res/layout/dialog_board_manage_labels.xml b/app/src/main/res/layout/dialog_board_manage_labels.xml
index 0622b54bb..370aedd8b 100644
--- a/app/src/main/res/layout/dialog_board_manage_labels.xml
+++ b/app/src/main/res/layout/dialog_board_manage_labels.xml
@@ -34,12 +34,12 @@
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
+ style="?attr/floatingActionButtonSmallSecondaryStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:contentDescription="@string/add_comment"
app:backgroundTint="@color/defaultBrand"
- app:fabSize="mini"
app:srcCompat="@drawable/ic_send_white_24dp" />
</LinearLayout>
diff --git a/app/src/main/res/layout/fragment_card_edit_tab_comments.xml b/app/src/main/res/layout/fragment_card_edit_tab_comments.xml
index af20284b2..62d845b7f 100644
--- a/app/src/main/res/layout/fragment_card_edit_tab_comments.xml
+++ b/app/src/main/res/layout/fragment_card_edit_tab_comments.xml
@@ -10,8 +10,8 @@
android:id="@+id/comments"
android:layout_width="match_parent"
android:layout_height="match_parent"
- android:scrollbars="vertical"
android:layout_above="@id/addCommentLayout"
+ android:scrollbars="vertical"
app:layoutManager="androidx.recyclerview.widget.LinearLayoutManager"
app:reverseLayout="true"
tools:listitem="@layout/item_comment" />
@@ -146,13 +146,13 @@
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/fab"
+ style="?attr/floatingActionButtonSmallSecondaryStyle"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:contentDescription="@string/add_comment"
android:translationY="@dimen/spacer_1qx"
app:backgroundTint="@color/defaultBrand"
- app:fabSize="mini"
app:srcCompat="@drawable/ic_send_white_24dp" />
</LinearLayout>
</LinearLayout>