item_toolbar.xml
1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:id="@+id/toobar"
android:layout_width="match_parent"
android:layout_height="60dp"
>
<TextView
android:id="@+id/toobar_tv"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:singleLine="true"
android:text=""
android:textColor="@color/config_black_color"
android:textSize="22sp" />
<View
android:id="@+id/view"
android:layout_width="match_parent"
android:layout_height="@dimen/_10px"
android:layout_alignParentBottom="true"
android:background="@color/gray_bg" />
<View
android:id="@+id/line"
android:layout_width="match_parent"
android:layout_height="1px"
android:layout_above="@id/view"
android:background="@color/gray_line_color" />
</RelativeLayout>
</layout>