OsmAnd/OsmAnd/res/layout/search_header_list_item.xml

53 lines
1.7 KiB
XML
Raw Normal View History

2017-03-23 20:23:40 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
android:id="@+id/top_divider"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2019-07-04 18:58:10 +02:00
android:background="?attr/activity_background_color"
2017-03-23 20:23:40 +01:00
android:orientation="vertical"
android:visibility="gone">
<include layout="@layout/card_bottom_divider"/>
<View
android:layout_width="match_parent"
android:layout_height="8dp"/>
<include layout="@layout/card_top_divider"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal"
android:minHeight="48dp"
android:paddingLeft="56dp"
2020-02-24 15:17:23 +01:00
android:paddingRight="16dp"
android:paddingEnd="16dp"
android:paddingStart="56dp">
2017-03-23 20:23:40 +01:00
<TextView
android:id="@+id/title"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center_vertical"
android:textColor="?android:textColorPrimary"
android:textSize="@dimen/default_desc_text_size"/>
</LinearLayout>
<View
android:id="@+id/divider"
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="56dp"
2020-02-24 15:17:23 +01:00
android:background="?attr/dashboard_divider"
android:layout_marginStart="56dp" />
2017-03-23 20:23:40 +01:00
</LinearLayout>