item_toolbar.xml
803 Bytes
<?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="50dp">
<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:layout_width="match_parent"
android:layout_height="1px"
android:paddingTop="@dimen/_20px"
android:background="@color/gray_line_color" />
</RelativeLayout>
</layout>