2014-11-24 16:16:08 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-03-19 01:18:59 +01:00
|
|
|
xmlns:osmand="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:id="@+id/main_fav"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2015-05-03 23:42:50 +02:00
|
|
|
android:background="?attr/bg_card"
|
2015-04-14 16:33:17 +02:00
|
|
|
android:layout_marginTop="@dimen/dash_margin"
|
|
|
|
android:layout_marginBottom="@dimen/dash_margin"
|
|
|
|
android:layout_marginLeft="@dimen/dash_margin_h"
|
|
|
|
android:layout_marginRight="@dimen/dash_margin_h"
|
2015-03-19 01:18:59 +01:00
|
|
|
android:orientation="vertical" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2015-04-17 00:37:39 +02:00
|
|
|
android:layout_height="@dimen/list_header_height"
|
2015-03-19 01:18:59 +01:00
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
2015-03-19 01:34:35 +01:00
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
2015-03-19 01:18:59 +01:00
|
|
|
android:id="@+id/fav_text"
|
2015-04-17 00:37:39 +02:00
|
|
|
style="@style/DashboardSubHeader"
|
2015-06-08 09:17:03 +02:00
|
|
|
android:text="@string/shared_string_my_favorites"
|
2015-03-19 01:34:35 +01:00
|
|
|
osmand:typeface="@string/font_roboto_medium" />
|
2015-03-19 01:18:59 +01:00
|
|
|
|
|
|
|
<net.osmand.plus.widgets.ButtonEx
|
|
|
|
android:id="@+id/show_all"
|
2015-04-17 00:37:39 +02:00
|
|
|
style="@style/DashboardGeneralButton"
|
2015-03-19 01:18:59 +01:00
|
|
|
android:text="@string/shared_string_show_all"
|
|
|
|
osmand:textAllCapsCompat="true"
|
|
|
|
osmand:typeface="@string/font_roboto_medium" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/items"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical" />
|
|
|
|
|
2014-11-24 16:16:08 +01:00
|
|
|
</LinearLayout>
|