Files
Android-key-of-love/app/src/main/res/layout/item_chat_message_me.xml
pengxiaolong d10524c597 手机适配
2026-02-10 18:26:31 +08:00

25 lines
941 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- 自己的消息气泡 -->
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="@dimen/sw_12dp"
android:paddingEnd="@dimen/sw_12dp"
android:paddingTop="@dimen/sw_6dp"
android:paddingBottom="@dimen/sw_6dp">
<TextView
android:id="@+id/messageText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="end"
android:maxWidth="@dimen/sw_250dp"
android:background="@drawable/bg_chat_bubble_me"
android:paddingStart="@dimen/sw_12dp"
android:paddingEnd="@dimen/sw_12dp"
android:paddingTop="@dimen/sw_8dp"
android:paddingBottom="@dimen/sw_8dp"
android:textColor="#000000"
android:textSize="@dimen/sw_14sp" />
</FrameLayout>