2025-12-11 14:52:29 +08:00
|
|
|
<!-- 我方消息 -->
|
|
|
|
|
<LinearLayout
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
2025-12-26 22:01:04 +08:00
|
|
|
android:layout_marginTop="30dp"
|
|
|
|
|
android:layout_marginBottom="10dp"
|
2025-12-11 14:52:29 +08:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
<!-- 头像 -->
|
|
|
|
|
<de.hdodenhof.circleimageview.CircleImageView
|
|
|
|
|
android:id="@+id/avatar"
|
|
|
|
|
android:layout_width="30dp"
|
|
|
|
|
android:layout_height="30dp"
|
|
|
|
|
android:layout_marginStart="5dp"
|
|
|
|
|
android:clickable="true"
|
|
|
|
|
android:focusable="true"
|
|
|
|
|
android:src="@drawable/logo" />
|
|
|
|
|
<!-- 消息内容 -->
|
|
|
|
|
<LinearLayout
|
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:layout_marginStart="40dp"
|
|
|
|
|
android:layout_marginTop="-20dp"
|
|
|
|
|
android:background="@drawable/our_news"
|
|
|
|
|
android:orientation="vertical"
|
|
|
|
|
android:padding="10dp">
|
|
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
|
android:id="@+id/container"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:text="Welcome to use the [key of love] keyboard"
|
|
|
|
|
android:textColor="#929292"
|
|
|
|
|
android:maxWidth="203dp"
|
|
|
|
|
android:textSize="10sp"
|
|
|
|
|
android:lineHeight="20dp" />
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
</LinearLayout>
|