OsmAnd/OsmAnd/res/layout/track_segments_tree.xml

24 lines
829 B
XML
Raw Normal View History

2017-08-08 11:44:41 +02:00
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
2017-08-10 18:09:52 +02:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2017-08-08 11:44:41 +02:00
android:orientation="vertical">
<ListView
android:id="@android:id/list"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginLeft="0dp"
android:layout_marginRight="0dp"
android:layout_marginTop="0dp"/>
2017-08-10 18:09:52 +02:00
<View
android:id="@+id/overlay_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/white_80_transparent"
android:visibility="gone"/>
2017-08-16 10:14:12 +02:00
<include layout="@layout/my_places_fabs"/>
2017-08-10 18:09:52 +02:00
2017-08-08 11:44:41 +02:00
</RelativeLayout>