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="match_parent" 5 android:background="@color/colorPrimary"> 6 7 <ImageButton 8 android:id="@+id/home_image_button" 9 android:layout_width="42dp" 10 android:layout_height="42dp" 11 android:layout_alignParentStart="true" 12 android:layout_centerVertical="true" 13 android:layout_marginLeft="11dp" 14 android:layout_marginTop="11dp" 15 android:layout_marginBottom="11dp" 16 android:background="@android:color/transparent" 17 android:scaleType="fitCenter" 18 android:src="@mipmap/ic_launcher"/> 19 20 <Button 21 android:id="@+id/home_text_button" 22 style="?android:attr/borderlessButtonStyle" 23 android:singleLine="true" 24 android:ellipsize="end" 25 android:gravity="left|center_vertical" 26 android:layout_width="wrap_content" 27 android:layout_height="wrap_content" 28 android:layout_centerVertical="true" 29 android:layout_marginLeft="10dp" 30 android:layout_toEndOf="@+id/home_image_button" 31 android:layout_toLeftOf="@+id/reload_button" 32 android:layout_marginRight="12dp" 33 android:background="@android:color/transparent" 34 android:text="Expo" 35 android:textAppearance="?android:attr/textAppearanceMedium" 36 android:textColor="@color/white"/> 37 38 <ImageButton 39 android:id="@+id/reload_button" 40 android:layout_width="wrap_content" 41 android:layout_height="wrap_content" 42 android:layout_alignParentEnd="true" 43 android:layout_centerVertical="true" 44 android:layout_marginRight="12dp" 45 android:background="@android:color/transparent" 46 android:src="@drawable/ic_refresh_white_36dp"/> 47 48 49</RelativeLayout> 50