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"
|
|
|
|
android:id="@+id/main_fav"
|
2015-01-28 17:14:06 +01:00
|
|
|
android:background="?attr/card_bg"
|
2014-11-24 16:16:08 +01:00
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
2014-12-17 16:13:43 +01:00
|
|
|
android:layout_height="@dimen/dashHeaderHeight">
|
2014-11-24 16:16:08 +01:00
|
|
|
<TextView android:id="@+id/fav_text"
|
2015-03-08 23:17:34 +01:00
|
|
|
android:text="@string/shared_string_my_places"
|
2015-01-30 17:25:42 +01:00
|
|
|
style="?attr/dashboardSubHeaderStyle"/>
|
2014-11-24 16:16:08 +01:00
|
|
|
<Button android:id="@+id/show_all"
|
2015-03-08 22:23:08 +01:00
|
|
|
android:text="@string/shared_string_show_all"
|
2015-01-30 17:25:42 +01:00
|
|
|
style="?attr/dashboardGeneralButtonStyle"/>
|
2014-11-24 16:16:08 +01:00
|
|
|
</LinearLayout>
|
2015-01-21 16:51:12 +01:00
|
|
|
<LinearLayout android:id="@+id/items"
|
2014-11-24 16:16:08 +01:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"/>
|
|
|
|
</LinearLayout>
|