39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<?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"
|
|
android:layout_height="@dimen/list_header_height"
|
|
android:paddingLeft="@dimen/dialog_content_margin"
|
|
android:orientation="horizontal">
|
|
|
|
<include
|
|
layout="@layout/check_item_rel"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical"/>
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/text"
|
|
style="@style/DashboardSubHeader"
|
|
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"/>
|
|
|
|
|
|
<net.osmand.plus.widgets.ButtonEx
|
|
android:layout_width="48dp"
|
|
android:layout_height="48dp"
|
|
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"
|
|
android:gravity="center"
|
|
tools:text="5"
|
|
style="@style/DashboardGeneralButton"/>
|
|
|
|
</LinearLayout>
|