我有RelativeLayout和两个TextView,其中一个是背景。
在图像上,两个基线对齐,但我想对齐一个基线和另一个基线底部。
这是我的xml代码。
<RelativeLayout
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="@dimen/chat_room_item_height"
android:background="?attr/selectableItemBackground"
android:paddingEnd="16dp"
android:paddingLeft="16dp"
android:paddingRight="16dp"
android:paddingStart="16dp"
>
<!-- other stuff -->
<TextView
android:id="@+id/text_view_unread_message_count"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_below="@+id/text_view_last_message_date"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:background="@drawable/chat_unread_message_count_background"
style="@style/ChatRoomUnreadMessageCountTextStyle"
tools:text="101"
/>
<TextView
android:id="@+id/text_view_last_message"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/text_view_title"
android:layout_toEndOf="@id/image_view_icon"
android:layout_toLeftOf="@id/text_view_unread_message_count"
android:layout_toRightOf="@id/image_view_icon"
android:layout_toStartOf="@id/text_view_unread_message_count"
android:ellipsize="end"
android:layout_alignBaseline="@+id/text_view_unread_message_count"
android:gravity="bottom"
android:maxLines="1"
tools:text="My life is a story book with many different chapters but I don’t let everyone read it."
style="@style/ChatRoomLastMessageTextStyle"
/>
</RelativeLayout>
我尝试将TextView与背景包装到不同的ViewGrops,将TextView包装到布局中,无济于事。
答案 0 :(得分:1)
你可以做一个小技巧,我们走了:
将text_view_unread_message_count
置于某个viewgroupo中,例如RelativeLayout并使用SP缩放添加paddingBottom(这是您手动对齐的空间),如下所示:
Obs。:您需要为TextView提供一个新ID,这是一个示例ID,并且可以更改大小值。
<!-- sp scaling will change with font size -->
<RelativeLayout
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:paddingBottom="10sp"
android:layout_marginLeft="8dp"
android:layout_marginStart="8dp"
android:layout_toEndOf="@id/image_view_icon"
android:layout_toLeftOf="@id/text_view_unread_message_count"
android:layout_toRightOf="@id/image_view_icon"
android:layout_toStartOf="@id/text_view_unread_message_count">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/chat_unread_message_count_background"
style="@style/ChatRoomUnreadMessageCountTextStyle"
tools:text="101"
/>
</RelativeLayout>
将位置定义放在textview上的父级和文本定义上。这应该有用。
答案 1 :(得分:0)
您可以通过编程设置所需的底部边距。
val bottomToBaselineHeight = textViewLastMessage.height - textViewLastMessage.baseline
textViewUnreadMessageCount.margin(bottom = bottomToBaselineHeight)