86 lines
3.2 KiB
XML
86 lines
3.2 KiB
XML
<?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="@dimen/dp20"
|
|
android:layout_height="@dimen/dp5"
|
|
android:layout_below="@+id/title_name_1"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="@dimen/dp5"
|
|
android:src="@drawable/shape_button_enable" />
|
|
|
|
<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="@dimen/dp20"
|
|
android:layout_height="@dimen/dp5"
|
|
android:layout_below="@+id/title_name_2"
|
|
android:layout_centerHorizontal="true"
|
|
android:layout_marginTop="@dimen/dp5"
|
|
android:visibility="gone"
|
|
android:src="@drawable/shape_button_enable" />
|
|
|
|
<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/one_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> |