2020-08-22 22:22:06 +08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
android:layout_width="match_parent"
|
2020-08-31 23:21:31 +08:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
2020-08-22 22:22:06 +08:00
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
|
android:id="@+id/header_root_view"
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
|
|
<com.huanchengfly.tieba.post.widgets.theme.TintImageView
|
|
|
|
|
android:layout_width="24dp"
|
|
|
|
|
android:layout_height="24dp"
|
|
|
|
|
android:id="@+id/icon"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_alignParentStart="true" />
|
|
|
|
|
|
|
|
|
|
<com.huanchengfly.tieba.post.widgets.theme.TintTextView
|
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
|
android:id="@+id/title"
|
|
|
|
|
android:textStyle="bold"
|
|
|
|
|
android:layout_marginStart="8dp"
|
2020-08-31 23:21:31 +08:00
|
|
|
android:layout_toStartOf="@id/end_icon"
|
2020-08-22 22:22:06 +08:00
|
|
|
android:layout_toEndOf="@id/icon"
|
|
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
|
android:layout_centerVertical="true" />
|
2020-08-31 23:21:31 +08:00
|
|
|
|
|
|
|
|
<com.huanchengfly.tieba.post.widgets.theme.TintImageView
|
|
|
|
|
android:layout_width="24dp"
|
|
|
|
|
android:layout_height="24dp"
|
|
|
|
|
android:id="@+id/end_icon"
|
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
|
android:layout_alignParentEnd="true" />
|
2020-08-22 22:22:06 +08:00
|
|
|
</RelativeLayout>
|
|
|
|
|
</FrameLayout>
|