-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathactivity_maps.xml
40 lines (32 loc) · 1.23 KB
/
activity_maps.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<fragment xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MapsActivity" >
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
>
<com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBarWrapper
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_marginBottom="8dp"
android:layout_alignParentRight="true"
android:layout_alignParentEnd="true"
>
<com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBar
android:layout_width="0dp"
android:layout_height="0dp"
android:id="@+id/verticalSeekBar"
android:progress="12"
android:max="15"
android:splitTrack="false"
app.seekBarRotation="CW270"
/>
</com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBarWrapper>
</RelativeLayout>
</fragment>