OsmAnd/OsmAnd/res/layout/dash_common_fragment.xml

35 lines
1.3 KiB
XML
Raw Normal View History

<?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"
android:background="?attr/card_bg"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="@dimen/dashHeaderHeight"
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"
style="?attr/dashboardSubHeaderStyle"
2015-03-19 01:34:35 +01:00
android:text="@string/shared_string_my_places"
osmand:typeface="@string/font_roboto_medium" />
2015-03-19 01:18:59 +01:00
<net.osmand.plus.widgets.ButtonEx
android:id="@+id/show_all"
style="?attr/dashboardGeneralButtonStyle"
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" />
</LinearLayout>