12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <?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="wrap_content"
- android:paddingTop="@dimen/alternate_half_padding"
- android:paddingBottom="@dimen/alternate_half_padding"
- android:paddingLeft="@dimen/standard_padding">
- <TextView
- android:id="@+id/title"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBottom="@+id/buttonBar"
- android:layout_alignParentLeft="true"
- android:layout_alignTop="@+id/buttonBar"
- android:layout_toLeftOf="@+id/buttonBar"
- android:ellipsize="middle"
- android:gravity="start|center_vertical"
- android:text="Header Text"
- android:textColor="?android:textColorPrimary"
- android:textStyle="bold"/>
- <LinearLayout
- android:id="@+id/buttonBar"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentRight="true">
- <ImageButton
- android:id="@+id/syncStatusButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@color/transparent"
- android:clickable="true"
- android:padding="@dimen/standard_half_padding"
- android:src="@drawable/ic_cloud_sync_off"/>
- <ImageButton
- android:id="@+id/settingsButton"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@color/transparent"
- android:clickable="true"
- android:paddingBottom="@dimen/standard_half_padding"
- android:paddingLeft="@dimen/standard_half_padding"
- android:paddingRight="@dimen/standard_padding"
- android:paddingTop="@dimen/standard_half_padding"
- android:src="@drawable/ic_dots_vertical"/>
- </LinearLayout>
- </RelativeLayout>
|