summaryrefslogtreecommitdiff
path: root/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_map_padding.xml
diff options
context:
space:
mode:
Diffstat (limited to 'platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_map_padding.xml')
-rw-r--r--platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_map_padding.xml33
1 files changed, 0 insertions, 33 deletions
diff --git a/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_map_padding.xml b/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_map_padding.xml
deleted file mode 100644
index 97319f7c56..0000000000
--- a/platform/android/MapboxGLAndroidSDKTestApp/src/main/res/layout/activity_map_padding.xml
+++ /dev/null
@@ -1,33 +0,0 @@
-<?xml version="1.0" encoding="utf-8"?>
-<merge xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto">
-
- <com.mapbox.mapboxsdk.maps.MapView
- android:id="@id/mapView"
- android:layout_width="match_parent"
- android:layout_height="match_parent"/>
-
- <View
- android:layout_width="@dimen/map_padding_left"
- android:layout_height="match_parent"
- android:alpha="0.5"
- android:background="@color/mapbox_blue"/>
-
- <View
- android:layout_width="match_parent"
- android:layout_height="@dimen/map_padding_bottom"
- android:layout_gravity="bottom"
- android:layout_marginEnd="@dimen/map_padding_right"
- android:layout_marginLeft="@dimen/map_padding_left"
- android:layout_marginRight="@dimen/map_padding_right"
- android:layout_marginStart="@dimen/map_padding_left"
- android:alpha="0.5"
- android:background="@color/mapbox_blue"/>
-
- <View
- android:layout_width="@dimen/map_padding_right"
- android:layout_height="match_parent"
- android:layout_gravity="end"
- android:alpha="0.5"
- android:background="@color/mapbox_blue"/>
-
-</merge>