OsmAnd/OsmAnd/res/layout/dashboard_settings_dialog_item.xml

38 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"
xmlns:osmand="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
2015-10-20 10:04:36 +02:00
android:layout_height="@dimen/list_item_height"
android:paddingLeft="20dp"
android:orientation="horizontal">
2015-10-20 10:04:36 +02:00
<include layout="@layout/check_item_rel"/>
2015-09-14 20:20:40 +02:00
<net.osmand.plus.widgets.TextViewEx
android:id="@+id/text"
style="@style/DashboardSubHeader"
2015-09-14 20:20:40 +02:00
android:layout_marginLeft="16dp"
android:textColor="@color/dashboard_black"
android:textSize="@dimen/default_list_text_size"
osmand:typeface="@string/font_roboto_regular"
tools:text="@string/lorem_ipsum"/>
2015-09-14 20:20:40 +02:00
2015-09-18 18:14:27 +02:00
<net.osmand.plus.widgets.ButtonEx
android:layout_width="48dp"
android:layout_height="48dp"
2015-09-14 20:20:40 +02:00
android:layout_gravity="center_vertical"
android:id="@+id/numberOfRowsTextView"
android:textColor="@color/dashboard_blue"
android:textSize="@dimen/default_list_text_size"
osmand:typeface="@string/font_roboto_regular"
2015-09-18 18:14:27 +02:00
android:gravity="center"
2015-10-20 10:04:36 +02:00
tools:visibility="visible"
android:visibility="gone"
2015-09-18 18:14:27 +02:00
tools:text="5"
style="@style/DashboardGeneralButton"/>
</LinearLayout>