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

39 lines
1.5 KiB
XML

<!-- 我方消息 -->
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/sw_30dp"
android:layout_marginBottom="@dimen/sw_10dp"
android:gravity="center_vertical"
android:orientation="vertical">
<!-- 头像 -->
<de.hdodenhof.circleimageview.CircleImageView
android:id="@+id/avatar"
android:layout_width="@dimen/sw_30dp"
android:layout_height="@dimen/sw_30dp"
android:layout_marginStart="@dimen/sw_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="@dimen/sw_40dp"
android:layout_marginTop="@dimen/_sw_20dp"
android:background="@drawable/our_news"
android:orientation="vertical"
android:padding="@dimen/sw_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="@dimen/sw_203dp"
android:textSize="@dimen/sw_10sp"
android:lineHeight="@dimen/sw_20dp" />
</LinearLayout>
</LinearLayout>