32 lines
955 B
XML
32 lines
955 B
XML
<?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">
|
|
|
|
<Button a:id="@+id/onscreen_fold_button"
|
|
style="@style/onscreen_header_button_style"
|
|
a:text="_"/>
|
|
|
|
<Button a:id="@+id/onscreen_minimize_button"
|
|
style="@style/onscreen_header_button_style"
|
|
a:text="_"/>
|
|
|
|
<Button a:id="@+id/onscreen_close_button"
|
|
style="@style/onscreen_header_button_style"
|
|
a:text="x"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView a:id="@+id/onscreen_title"
|
|
a:text="@string/c_app_name"
|
|
a:layout_width="match_parent"
|
|
a:layout_height="match_parent"
|
|
a:layout_toLeftOf="@id/onscreen_header_buttons"/>
|
|
|
|
</RelativeLayout> |