mirror of
https://github.com/nextcloud/talk-android
synced 2025-06-20 12:09:45 +01:00
optimize message input for size+a11y
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
9a4d7b78a2
commit
60def3cc0c
@ -563,6 +563,8 @@ class ChatController(args: Bundle) :
|
||||
}
|
||||
}
|
||||
|
||||
binding.messageInputView.setPadding(0, 0, 0, 0)
|
||||
|
||||
if (args.containsKey("showToggleChat") && args.getBoolean("showToggleChat")) {
|
||||
binding.callControlToggleChat.visibility = View.VISIBLE
|
||||
wasDetached = true
|
||||
|
@ -20,33 +20,38 @@
|
||||
~ along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
-->
|
||||
|
||||
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||
xmlns:tools="http://schemas.android.com/tools"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:animateLayoutChanges="true"
|
||||
android:background="@color/bg_default">
|
||||
android:background="@color/bg_default"
|
||||
android:orientation="vertical">
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="0dp"
|
||||
android:layout_weight="1">
|
||||
|
||||
<include
|
||||
android:id="@+id/lobby"
|
||||
layout="@layout/lobby_view"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"/>
|
||||
tools:visibility="visible" />
|
||||
|
||||
<com.facebook.drawee.view.SimpleDraweeView
|
||||
android:id="@+id/callControlToggleChat"
|
||||
android:layout_width="60dp"
|
||||
android:layout_height="60dp"
|
||||
android:layout_margin="16dp"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:layout_margin="16dp"
|
||||
android:elevation="10dp"
|
||||
android:visibility="gone"
|
||||
app:backgroundImage="@color/call_buttons_background"
|
||||
app:placeholderImage="@drawable/ic_call_black_24dp"
|
||||
app:roundAsCircle="true"
|
||||
android:elevation="10dp"
|
||||
android:visibility="gone"
|
||||
tools:visibility="visible"
|
||||
/>
|
||||
tools:visibility="visible" />
|
||||
|
||||
<LinearLayout
|
||||
android:id="@+id/progressBar"
|
||||
@ -64,43 +69,13 @@
|
||||
<include layout="@layout/item_custom_incoming_text_message_shimmer" />
|
||||
</LinearLayout>
|
||||
|
||||
<View
|
||||
android:id="@+id/separator"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:layout_above="@+id/messageInputView"
|
||||
android:background="@color/controller_chat_separator" />
|
||||
|
||||
<com.stfalcon.chatkit.messages.MessageInput
|
||||
android:id="@+id/messageInputView"
|
||||
android:animateLayoutChanges="true"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:inputType="textLongMessage|textAutoComplete"
|
||||
android:maxLength="1000"
|
||||
app:showAttachmentButton="true"
|
||||
app:attachmentButtonHeight="48dp"
|
||||
app:attachmentButtonWidth="48dp"
|
||||
app:attachmentButtonIcon="@drawable/ic_baseline_attach_file_24"
|
||||
app:attachmentButtonBackground="@color/transparent"
|
||||
app:inputButtonDefaultBgColor="@color/colorPrimary"
|
||||
app:inputButtonHeight="48dp"
|
||||
app:inputButtonMargin="8dp"
|
||||
app:inputButtonWidth="48dp"
|
||||
app:inputHint="@string/nc_hint_enter_a_message"
|
||||
app:inputTextColor="@color/nc_incoming_text_default"
|
||||
app:inputTextSize="16sp"
|
||||
app:delayTypingStatus="200"/>
|
||||
|
||||
<com.stfalcon.chatkit.messages.MessagesList
|
||||
android:id="@+id/messagesListView"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="match_parent"
|
||||
android:layout_above="@+id/messageInputView"
|
||||
android:paddingBottom="0dp"
|
||||
android:visibility="gone"
|
||||
app:dateHeaderTextSize="13sp"
|
||||
android:paddingBottom="4dp"
|
||||
app:incomingBubblePaddingBottom="@dimen/message_bubble_corners_padding"
|
||||
app:incomingBubblePaddingLeft="@dimen/message_bubble_corners_padding"
|
||||
app:incomingBubblePaddingRight="@dimen/message_bubble_corners_padding"
|
||||
@ -131,7 +106,7 @@
|
||||
android:id="@+id/popupBubbleView"
|
||||
android:layout_width="wrap_content"
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_above="@+id/separator"
|
||||
android:layout_alignParentBottom="true"
|
||||
android:layout_centerHorizontal="true"
|
||||
android:layout_margin="16dp"
|
||||
android:paddingStart="0dp"
|
||||
@ -141,4 +116,40 @@
|
||||
app:pb_text="@string/nc_new_messages"
|
||||
app:pb_textColor="@color/textColorOnPrimaryBackground" />
|
||||
|
||||
</RelativeLayout>
|
||||
</RelativeLayout>
|
||||
|
||||
<LinearLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:orientation="vertical">
|
||||
|
||||
<View
|
||||
android:id="@+id/separator"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="1dp"
|
||||
android:background="@color/controller_chat_separator" />
|
||||
|
||||
<com.stfalcon.chatkit.messages.MessageInput
|
||||
android:id="@+id/messageInputView"
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content"
|
||||
android:animateLayoutChanges="true"
|
||||
android:inputType="textLongMessage|textAutoComplete"
|
||||
android:maxLength="1000"
|
||||
app:attachmentButtonBackground="@color/transparent"
|
||||
app:attachmentButtonHeight="48dp"
|
||||
app:attachmentButtonIcon="@drawable/ic_baseline_attach_file_24"
|
||||
app:attachmentButtonMargin="0dp"
|
||||
app:attachmentButtonWidth="48dp"
|
||||
app:delayTypingStatus="200"
|
||||
app:inputButtonDefaultBgColor="@color/transparent"
|
||||
app:inputButtonDefaultIconColor="@color/colorPrimary"
|
||||
app:inputButtonHeight="48dp"
|
||||
app:inputButtonMargin="0dp"
|
||||
app:inputButtonWidth="48dp"
|
||||
app:inputHint="@string/nc_hint_enter_a_message"
|
||||
app:inputTextColor="@color/nc_incoming_text_default"
|
||||
app:inputTextSize="16sp"
|
||||
app:showAttachmentButton="true" />
|
||||
</LinearLayout>
|
||||
</LinearLayout>
|
@ -30,7 +30,8 @@
|
||||
|
||||
<RelativeLayout
|
||||
android:layout_width="match_parent"
|
||||
android:layout_height="wrap_content">
|
||||
android:layout_height="wrap_content"
|
||||
android:layout_marginEnd="4dp">
|
||||
|
||||
<include layout="@layout/item_message_quote"
|
||||
android:layout_width="match_parent"
|
||||
@ -42,9 +43,10 @@
|
||||
android:id="@id/attachmentButton"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:padding="10dp"
|
||||
android:padding="12dp"
|
||||
android:layout_below="@id/quotedChatMessageView"
|
||||
android:background="@color/transparent"
|
||||
android:src="@drawable/ic_baseline_attach_file_24"
|
||||
app:tint="?attr/colorControlNormal"
|
||||
android:scaleType="centerCrop"
|
||||
android:contentDescription="@string/nc_add_attachment" />
|
||||
@ -53,7 +55,7 @@
|
||||
android:id="@+id/smileyButton"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:padding="10dp"
|
||||
android:padding="12dp"
|
||||
android:layout_below="@id/quotedChatMessageView"
|
||||
android:layout_toEndOf="@id/attachmentButton"
|
||||
android:background="@color/transparent"
|
||||
@ -140,6 +142,7 @@
|
||||
android:id="@id/messageSendButton"
|
||||
android:layout_width="48dp"
|
||||
android:layout_height="48dp"
|
||||
android:padding="12dp"
|
||||
android:layout_below="@id/quotedChatMessageView"
|
||||
android:layout_alignParentEnd="true"
|
||||
android:adjustViewBounds="true"
|
||||
|
Loading…
Reference in New Issue
Block a user