2012-11-21 15:24:17 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
|
|
|
<RelativeLayout xmlns:a="http://schemas.android.com/apk/res/android"
|
|
|
|
a:layout_width="match_parent"
|
|
|
|
a:layout_height="30dp">
|
|
|
|
|
|
|
|
<LinearLayout a:id="@+id/onscreen_header_buttons"
|
|
|
|
a:layout_width="wrap_content"
|
|
|
|
a:layout_height="match_parent"
|
|
|
|
a:layout_alignParentRight="true">
|
|
|
|
|
2012-11-23 08:39:58 -05:00
|
|
|
<ImageButton a:id="@+id/onscreen_fold_button"
|
2012-11-21 15:24:17 -05:00
|
|
|
style="@style/onscreen_header_button_style"
|
2012-11-23 08:39:58 -05:00
|
|
|
a:src="@drawable/cpp_onscreen_button_fold"/>
|
2012-11-21 15:24:17 -05:00
|
|
|
|
2012-11-23 08:39:58 -05:00
|
|
|
<ImageButton a:id="@+id/onscreen_minimize_button"
|
2012-11-21 15:24:17 -05:00
|
|
|
style="@style/onscreen_header_button_style"
|
2012-11-23 08:39:58 -05:00
|
|
|
a:src="@drawable/cpp_onscreen_button_minimize"/>
|
2012-11-21 15:24:17 -05:00
|
|
|
|
2012-11-23 08:39:58 -05:00
|
|
|
<ImageButton a:id="@+id/onscreen_close_button"
|
2012-11-21 15:24:17 -05:00
|
|
|
style="@style/onscreen_header_button_style"
|
2012-11-23 08:39:58 -05:00
|
|
|
a:src="@drawable/cpp_onscreen_button_close"/>
|
2012-11-21 15:24:17 -05:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2012-11-23 08:39:58 -05:00
|
|
|
<ImageView a:id="@+id/onscreen_title"
|
|
|
|
a:layout_width="match_parent"
|
|
|
|
a:layout_height="match_parent"
|
|
|
|
a:src="@drawable/cpp_onscreen_header_logo"
|
|
|
|
a:scaleType="fitStart"
|
|
|
|
a:paddingLeft="6dp"
|
|
|
|
a:paddingTop="2dp"
|
|
|
|
a:paddingBottom="2dp"
|
|
|
|
a:layout_toLeftOf="@id/onscreen_header_buttons"/>
|
2012-11-21 15:24:17 -05:00
|
|
|
|
|
|
|
</RelativeLayout>
|