Skip to content

Commit

Permalink
Fix jumpy animation of chat input on keyboard show/hide
Browse files Browse the repository at this point in the history
MOB-3860

# Conflicts:
#	widgetssdk/src/main/java/com/glia/widgets/chat/ChatView.kt
  • Loading branch information
gugalo authored and Andrii-Horishnii-Glia committed Jan 9, 2025
1 parent 2f4ca06 commit b3b8c10
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions widgetssdk/src/main/res/layout/chat_view.xml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@
android:layout_height="0dp"
android:layout_width="0dp"
app:layout_constraintTop_toTopOf="@+id/chat_edit_text"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintBottom_toBottomOf="@+id/chat_edit_text"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"/>

Expand All @@ -140,8 +140,8 @@
android:id="@+id/add_attachment_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="@+id/message_input_background"
app:layout_constraintBottom_toBottomOf="@+id/message_input_background"
app:layout_constraintTop_toTopOf="@+id/chat_edit_text"
app:layout_constraintBottom_toBottomOf="@+id/chat_edit_text"
app:layout_constraintStart_toEndOf="@+id/chat_edit_text"
app:layout_constraintEnd_toStartOf="@+id/send_button"
android:background="?attr/selectableItemBackground"
Expand All @@ -153,8 +153,8 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:padding="@dimen/glia_large"
app:layout_constraintBottom_toBottomOf="@+id/message_input_background"
app:layout_constraintTop_toTopOf="@+id/message_input_background"
app:layout_constraintBottom_toBottomOf="@+id/chat_edit_text"
app:layout_constraintTop_toTopOf="@+id/chat_edit_text"
app:layout_constraintStart_toEndOf="@+id/add_attachment_button"
app:layout_constraintEnd_toEndOf="parent"
android:background="?attr/selectableItemBackground"
Expand Down

0 comments on commit b3b8c10

Please sign in to comment.