-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroid Code.txt
71 lines (55 loc) · 1.18 KB
/
Android Code.txt
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<!-- Sign-up&in -->
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/sign_up_in"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clipToOutline="true"
android:background="@drawable/sign_up_in"
/>
<!-- drawable/sign_up_in.xml -->
<vector
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:aapt="http://schemas.android.com/aapt"
android:width="1400dp"
android:height="1400dp"
android:viewportWidth="1400"
android:viewportHeight="1400"
>
<group>
<clip-path
android:pathData="M0 0H1400V1400H0V0Z"
/>
<group
android:translateX="-0.832"
android:translateY="-0.361"
android:pivotX="700"
android:pivotY="700"
android:scaleX="3.511"
android:scaleY="3.511"
android:rotation="-1.049"
>
<path
android:pathData="M0 0V1400H1400V0"
>
<aapt:attr name="android:fillColor">
<gradient
android:type="radial"
android:centerX="700"
android:centerY="700"
android:gradientRadius="350"
>
<item
android:color="#2E5765"
android:offset="0.422"
/>
<item
android:color="#A5654B"
android:offset="1"
/>
</gradient>
</aapt:attr>
</path>
</group>
</group>
</vector>