53 lines
2.1 KiB
XML
53 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/rl_top"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="@dimen/theme_title_height">
|
|
<LinearLayout
|
|
android:orientation="horizontal"
|
|
android:id="@+id/ll_hot_title"
|
|
android:layout_width="@dimen/hot_title_width"
|
|
android:layout_height="@dimen/theme_navigation_size"
|
|
android:layout_centerHorizontal="true">
|
|
<TextView
|
|
android:textSize="@dimen/theme_15sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/theme_txt_orange"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:id="@+id/tv_hot"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/hot_hot"
|
|
android:lines="1"
|
|
android:layout_weight="1"/>
|
|
<TextView
|
|
android:textSize="@dimen/theme_15sp"
|
|
android:textStyle="bold"
|
|
android:textColor="@color/txt_24A8FF"
|
|
android:ellipsize="end"
|
|
android:gravity="center"
|
|
android:id="@+id/tv_lastst"
|
|
android:layout_width="0dp"
|
|
android:layout_height="match_parent"
|
|
android:text="@string/hot_lastst"
|
|
android:lines="1"
|
|
android:layout_weight="1"/>
|
|
</LinearLayout>
|
|
<ImageView
|
|
android:gravity="center"
|
|
android:layout_gravity="center_vertical"
|
|
android:id="@+id/tv_return"
|
|
android:layout_width="@dimen/theme_navigation_size"
|
|
android:layout_height="@dimen/theme_navigation_size"
|
|
android:src="@drawable/icon_back"/>
|
|
<ImageView
|
|
android:id="@+id/tv_scroll"
|
|
android:layout_width="@dimen/tab_bar_line_width"
|
|
android:layout_height="@dimen/tab_bar_line_height"
|
|
android:layout_marginTop="@dimen/tab_bar_line_margin"
|
|
android:src="@mipmap/indicator"
|
|
android:scaleType="fitCenter"
|
|
android:layout_alignBaseline="@+id/ll_hot_title"/>
|
|
</RelativeLayout>
|