55 lines
2 KiB
XML
55 lines
2 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/RelativeLayout1"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:background="@drawable/tab_title_headline_background"
|
|
android:orientation="horizontal" >
|
|
|
|
<Button
|
|
android:id="@+id/back_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_gravity="top"
|
|
android:background="@drawable/tab_back_button"
|
|
android:text="" />
|
|
|
|
<!--
|
|
Button
|
|
android:id="@+id/extra_button"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_gravity="top"
|
|
android:background="@drawable/tab_back_button"
|
|
android:visibility="gone"
|
|
android:text="" /
|
|
-->
|
|
|
|
<net.osmand.plus.activities.FontFitTextView
|
|
android:id="@+id/title_text"
|
|
style="@style/WhiteTitleText"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center_vertical"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginLeft="15dp"
|
|
android:layout_marginRight="15dp"
|
|
android:layout_toLeftOf="@+id/title_image"
|
|
android:layout_toRightOf="@+id/back_button"
|
|
android:text="@string/favourites_activity" />
|
|
|
|
<ImageView
|
|
android:id="@+id/title_image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginRight="20dp"
|
|
android:layout_gravity="top"
|
|
android:src="@drawable/tab_favorites_screen_icon" />
|
|
|
|
</RelativeLayout>
|