OsmAnd/OsmAnd/res/layout/dash_common_fragment.xml

23 lines
915 B
XML
Raw Normal View History

<?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"
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">
<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"/>
<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"/>
</LinearLayout>
2015-01-21 16:51:12 +01:00
<LinearLayout android:id="@+id/items"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"/>
</LinearLayout>