update_section_header.xml 739 B

123456789101112131415161718192021
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3. android:layout_width="match_parent"
  4. android:layout_height="50dp"
  5. android:background="@color/ApexDriverGray"
  6. >
  7. <TextView
  8. android:id="@+id/header_title_tv"
  9. android:layout_width="wrap_content"
  10. android:layout_height="50dp"
  11. android:layout_centerVertical="true"
  12. android:gravity="center_vertical"
  13. android:background="@drawable/clear_bg"
  14. android:layout_marginLeft="2dp"
  15. android:textSize="20sp"
  16. android:textColor="@color/ApexDriverWhite"
  17. android:text="Section Header"
  18. />
  19. </RelativeLayout>