mirror of
https://github.com/nextcloud/talk-android.git
synced 2024-11-23 05:25:31 +03:00
Merge pull request #1514 from nextcloud/bugfix/noid/fixVoiceMessageRecordingForRtl
set layoutDirection for message input panel to ltr.
This commit is contained in:
commit
6750ad1212
1 changed files with 4 additions and 2 deletions
|
@ -31,7 +31,8 @@
|
|||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="4dp">
|
||||
android:layout_marginEnd="4dp"
|
||||
android:layoutDirection="ltr">
|
||||
|
||||
<include layout="@layout/item_message_quote"
|
||||
android:layout_width="match_parent"
|
||||
|
@ -66,7 +67,7 @@
|
|||
|
||||
<androidx.emoji.widget.EmojiEditText
|
||||
android:id="@id/messageInput"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_below="@+id/quotedChatMessageView"
|
||||
android:layout_centerHorizontal="true"
|
||||
|
@ -77,6 +78,7 @@
|
|||
android:lineSpacingMultiplier="1.2"
|
||||
android:minHeight="48dp"
|
||||
android:textAlignment="viewStart"
|
||||
android:layoutDirection="locale"
|
||||
tools:hint="@string/nc_hint_enter_a_message" />
|
||||
|
||||
<TextView
|
||||
|
|
Loading…
Reference in a new issue