Files
test/common/src/main/res/layout/view_layout_msg.xml
zlzw 687d6e9bc0 add 分享
add 推送(搜索还没做、卡片还没做)
add 打招呼
2024-03-15 16:06:18 +08:00

28 lines
1012 B
XML

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/lt_nodata_msg"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:gravity="center"
android:orientation="vertical"
android:visibility="visible">
<ImageView
android:id="@+id/imageView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_message_not_chat_list" />
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/not_data_message_chat_list" />
</LinearLayout>
</RelativeLayout>