12345678910111213141516171819202122232425262728293031323334353637 |
- <?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/zzz_common_title_height"
- android:background="@drawable/zzz_dialog_title">
- <ImageView
- android:id="@+id/zzz_back"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_marginLeft="@dimen/zzz_second_title_back_marginRight"
- android:src="@drawable/zzz_back_src_light"/>
- <TextView
- android:id="@+id/zzz_title_name"
- android:layout_width="wrap_content"
- android:layout_height="match_parent"
- android:layout_centerInParent="true"
- android:ellipsize="end"
- android:gravity="center_vertical"
- android:singleLine="true"
- android:textColor="@color/zzz_common_title_text_color"
- android:textSize="@dimen/zzz_common_title_text_size"/>
- <ImageView
- android:id="@+id/zzz_close"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:layout_alignParentRight="true"
- android:layout_marginLeft="@dimen/zzz_common_title_close_btn_margin_right"
- android:layout_marginRight="@dimen/zzz_common_title_close_btn_margin_right"
- android:src="@drawable/zzz_common_title_close"/>
- </RelativeLayout>
|