OsmAnd/OsmAnd/res/layout/transport_stop_route_item.xml

22 lines
999 B
XML
Raw Normal View History

2017-12-11 15:05:04 +01:00
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
2017-12-15 10:03:26 +01:00
xmlns:osmand="http://schemas.android.com/apk/res-auto"
2017-12-11 15:05:04 +01:00
android:orientation="vertical"
android:layout_width="match_parent"
2017-12-12 10:37:46 +01:00
android:layout_height="wrap_content">
2017-12-11 15:05:04 +01:00
2017-12-15 10:03:26 +01:00
<net.osmand.plus.widgets.TextViewEx
2017-12-20 16:32:33 +01:00
android:foreground="?attr/selectableItemBackground"
2017-12-15 10:17:38 +01:00
android:textAllCaps="true"
2017-12-15 10:03:26 +01:00
osmand:typeface="@string/font_roboto_medium"
2017-12-11 15:05:04 +01:00
android:textColor="@color/color_white"
2017-12-15 10:03:26 +01:00
android:textSize="@dimen/default_sub_text_size_small"
2017-12-11 15:05:04 +01:00
tools:text="3"
android:gravity="center"
android:id="@+id/transport_stop_route_text"
android:background="@drawable/transport_stop_route_bg"
android:layout_width="match_parent"
2017-12-15 10:03:26 +01:00
android:layout_height="@dimen/context_menu_transport_grid_item_height"/>
2017-12-11 15:05:04 +01:00
</LinearLayout>