| <?xml version="1.0" encoding="utf-8"?> | 
| <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
|     android:layout_width="match_parent" | 
|     android:layout_height="@dimen/y40" | 
|     android:background="@mipmap/bg_head"> | 
|   | 
|     <TextView | 
|         android:id="@+id/tv_left" | 
|         android:layout_width="wrap_content" | 
|         android:layout_height="match_parent" | 
|         android:text="返回" | 
|         android:gravity="center" | 
|         android:textColor="@color/white" | 
|         android:drawableLeft="@mipmap/jiantou_white_left" | 
|         android:drawablePadding="@dimen/x4" | 
|         android:textSize="16sp" | 
|         android:layout_marginLeft="@dimen/x10" | 
|         /> | 
|   | 
|     <TextView | 
|         android:id="@+id/tv_title" | 
|         android:layout_width="wrap_content" | 
|         android:layout_height="wrap_content" | 
|         android:layout_centerInParent="true" | 
|         android:ellipsize="marquee" | 
|         android:focusable="true" | 
|         android:focusableInTouchMode="true" | 
|         android:gravity="center" | 
|         android:drawablePadding="@dimen/x6" | 
|         android:textColor="@color/white" | 
|         android:marqueeRepeatLimit="marquee_forever" | 
|         android:singleLine="true" | 
|         android:text="标题" | 
|         android:textSize="18sp" /> | 
|     <ImageView | 
|         android:id="@+id/iv_right" | 
|         android:layout_width="@dimen/x26" | 
|         android:layout_height="@dimen/x26" | 
|         android:layout_centerVertical="true" | 
|         android:layout_alignParentRight="true" | 
|         android:layout_marginRight="@dimen/x10" | 
|        /> | 
| </RelativeLayout> |