Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fga/improve bubble layout #5303

Merged
merged 4 commits into from
Feb 22, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changelog.d/5303.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Improve Bubble layouts rendering.
Original file line number Diff line number Diff line change
@@ -0,0 +1,124 @@
/*
* Copyright (c) 2022 New Vector Ltd
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package im.vector.app.features.home.room.detail.timeline.view

import android.content.Context
import android.util.AttributeSet
import android.view.View
import android.view.ViewStub
import android.widget.TextView
import androidx.constraintlayout.widget.ConstraintLayout
import androidx.core.view.marginBottom
import androidx.core.view.marginEnd
import androidx.core.view.marginStart
import androidx.core.view.marginTop
import im.vector.app.R
import im.vector.app.core.resources.LocaleProvider
import im.vector.app.core.resources.getLayoutDirectionFromCurrentLocale

class MessageBubbleContentLayout @JvmOverloads constructor(context: Context, attrs: AttributeSet? = null, defStyleAttr: Int = 0) :
ConstraintLayout(context, attrs, defStyleAttr) {

private var messageTextView: TextView? = null

private lateinit var contentContainerView: View
private lateinit var timeView: View
private lateinit var contentOverlayView: View
private var localeLayoutDirection: Int = View.LAYOUT_DIRECTION_LOCALE

private val timeViewMeasuredWidthWithMargins: Int
get() = timeView.measuredWidth + timeView.marginStart + timeView.marginEnd

override fun onFinishInflate() {
super.onFinishInflate()
val textViewStub: ViewStub = findViewById(R.id.messageContentTextStub)
contentContainerView = findViewById(R.id.viewStubContainer)
contentOverlayView = findViewById(R.id.messageOverlayView)
timeView = findViewById(R.id.messageTimeView)
textViewStub.setOnInflateListener { _, inflated ->
textViewStub.setOnInflateListener(null)
messageTextView = inflated.findViewById(R.id.messageTextView)
}
localeLayoutDirection = LocaleProvider(resources).getLayoutDirectionFromCurrentLocale()
}

override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
// Let the ConstraintLayouts measure children
super.onMeasure(widthMeasureSpec, heightMeasureSpec)
val messageTextView = this.messageTextView
// Then if we have a text message layout, we can resize ourself so we can position the timeView without losing space.
if (messageTextView != null) {
val width: Int
val height: Int
val textLineCount = messageTextView.lineCount
val maxContentWidth = (contentContainerView.layoutParams as LayoutParams).matchConstraintMaxWidth
val lastLineWidth = if (textLineCount != 0) messageTextView.layout.getLineWidth(textLineCount - 1) else 0f
if (textLineCount == 1 && contentContainerView.measuredWidth + timeViewMeasuredWidthWithMargins < maxContentWidth) {
width = contentContainerView.measuredWidth + timeViewMeasuredWidthWithMargins
height = contentContainerView.measuredHeight
} else if (textLineCount > 1 && lastLineWidth + timeViewMeasuredWidthWithMargins
< contentContainerView.measuredWidth - contentContainerView.paddingEnd) {
width = contentContainerView.measuredWidth
height = contentContainerView.measuredHeight
} else {
width = contentContainerView.measuredWidth
height = contentContainerView.measuredHeight + timeView.measuredHeight
}
setMeasuredDimension(width, height)
}
}

override fun onLayout(changed: Boolean, left: Int, top: Int, right: Int, bottom: Int) {
// If we have a text message layout, we want to render it manually, so we don't call super.onLayout
if (messageTextView != null) {
val parentLeft: Int = paddingLeft
val parentRight: Int = right - left - paddingRight
val parentTop: Int = paddingTop
val parentBottom: Int = bottom - top - paddingBottom
if (localeLayoutDirection == LAYOUT_DIRECTION_RTL) {
val contentLeft = parentRight - contentContainerView.measuredWidth - contentContainerView.marginEnd
contentContainerView.layout(
contentLeft,
parentTop + contentContainerView.marginTop,
parentRight - contentContainerView.marginEnd,
parentTop + contentContainerView.marginTop + contentContainerView.measuredHeight
)
timeView.layout(
parentLeft + timeView.marginEnd,
parentBottom - timeView.measuredHeight - timeView.marginBottom,
parentLeft + timeView.measuredWidth + timeView.marginEnd,
parentBottom - timeView.marginBottom
)
} else {
contentContainerView.layout(
parentLeft,
parentTop,
parentLeft + contentContainerView.measuredWidth,
parentTop + contentContainerView.measuredHeight
)
timeView.layout(
parentRight - timeView.measuredWidth - timeView.marginEnd,
parentBottom - timeView.measuredHeight - timeView.marginBottom,
parentRight - timeView.marginEnd,
parentBottom - timeView.marginBottom
)
}
} else {
super.onLayout(changed, left, top, right, bottom)
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class MessageBubbleView @JvmOverloads constructor(context: Context, attrs: Attri
private var isIncoming: Boolean = false

private val horizontalStubPadding = DimensionConverter(resources).dpToPx(12)
private val verticalStubPadding = DimensionConverter(resources).dpToPx(4)
private val verticalStubPadding = DimensionConverter(resources).dpToPx(8)

private lateinit var views: ViewMessageBubbleBinding
private lateinit var bubbleDrawable: MaterialShapeDrawable
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
style="@style/Widget.Vector.TextView.Body"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textAlignment="viewStart"
android:textColor="?vctr_content_primary"
tools:text="@sample/messages.json/data/message" />

Expand Down
4 changes: 2 additions & 2 deletions vector/src/main/res/layout/view_message_bubble.xml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@
android:clipChildren="false"
android:clipToPadding="false">

<androidx.constraintlayout.widget.ConstraintLayout
<im.vector.app.features.home.room.detail.timeline.view.MessageBubbleContentLayout
android:id="@+id/bubbleView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
Expand Down Expand Up @@ -130,7 +130,7 @@
app:layout_constraintEnd_toEndOf="parent"
tools:text="@tools:sample/date/hhmm" />

</androidx.constraintlayout.widget.ConstraintLayout>
</im.vector.app.features.home.room.detail.timeline.view.MessageBubbleContentLayout>
</FrameLayout>

<im.vector.app.core.ui.views.SendStateImageView
Expand Down