37 lines
1.3 KiB
XML
37 lines
1.3 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_item_height"
|
|
android:paddingLeft="20dp"
|
|
android:orientation="horizontal">
|
|
|
|
<include layout="@layout/check_item_rel"/>
|
|
|
|
<net.osmand.plus.widgets.TextViewEx
|
|
android:id="@+id/text"
|
|
style="@style/DashboardSubHeader"
|
|
android:layout_marginLeft="16dp"
|
|
android:textColor="?android:textColorPrimary"
|
|
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/active_color_primary_light"
|
|
android:textSize="@dimen/default_list_text_size"
|
|
osmand:typeface="@string/font_roboto_regular"
|
|
android:gravity="center"
|
|
tools:visibility="visible"
|
|
android:visibility="gone"
|
|
tools:text="5"
|
|
style="@style/DashboardGeneralButton"/>
|
|
|
|
</LinearLayout>
|