41 lines
1.5 KiB
XML
41 lines
1.5 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="wrap_content"
|
|
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="" />
|
|
|
|
<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="7dp"
|
|
android:layout_marginRight="7dp"
|
|
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="wrap_content"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentTop="true"
|
|
android:layout_gravity="top"
|
|
android:background="@drawable/tab_back_button_background" />
|
|
|
|
</RelativeLayout>
|