第一次提交

This commit is contained in:
被淹死的鱼
2026-03-11 18:26:29 +08:00
commit cd3b53759e
8532 changed files with 522078 additions and 0 deletions

View File

@@ -0,0 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white"
android:orientation="horizontal"
tools:viewBindingIgnore="true">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginStart="16dp"
android:orientation="horizontal">
<RelativeLayout
android:id="@+id/title_view_1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginRight="@dimen/dp16">
<ImageView
android:id="@+id/title_bottom_line_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/title_name_1"
android:layout_centerHorizontal="true"
android:layout_marginTop="13dp"
android:src="@drawable/icon_tab_point_bg" />
<TextView
android:id="@+id/title_name_1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="消息"
android:textColor="@color/one_text"
android:textSize="20dp" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/title_view_2"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerInParent="true">
<ImageView
android:id="@+id/title_bottom_line_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/title_name_2"
android:layout_centerHorizontal="true"
android:layout_marginTop="13dp"
android:src="@drawable/icon_tab_point_bg" />
<TextView
android:id="@+id/title_name_2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="通话"
android:textColor="@color/grey_text"
android:textSize="16dp" />
</RelativeLayout>
</LinearLayout>
<ImageView
android:id="@+id/title_post"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_centerVertical="true"
android:layout_marginRight="@dimen/dp16"
android:src="@drawable/ic_dynamic_remind" />
<ImageView
android:id="@+id/title_clear_unread"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginEnd="8dp"
android:layout_toStartOf="@+id/title_post"
android:src="@drawable/ic_clear_unread" />
</RelativeLayout>