-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
4c20fb4
commit d297615
Showing
50 changed files
with
941 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
*.iml | ||
.gradle | ||
/local.properties | ||
.idea | ||
.DS_Store | ||
/build | ||
/captures | ||
.externalNativeBuild |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
apply plugin: 'com.android.application' | ||
|
||
android { | ||
compileSdkVersion 25 | ||
buildToolsVersion "25.0.2" | ||
defaultConfig { | ||
applicationId "com.xw.sample.vectorcompattextview" | ||
minSdkVersion 14 | ||
targetSdkVersion 25 | ||
versionCode 1 | ||
versionName "1.0" | ||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" | ||
} | ||
buildTypes { | ||
release { | ||
minifyEnabled false | ||
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | ||
} | ||
} | ||
} | ||
|
||
dependencies { | ||
compile fileTree(include: ['*.jar'], dir: 'libs') | ||
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { | ||
exclude group: 'com.android.support', module: 'support-annotations' | ||
}) | ||
compile 'com.android.support:appcompat-v7:25.3.0' | ||
testCompile 'junit:junit:4.12' | ||
compile project(':vectorcompattextview') | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Add project specific ProGuard rules here. | ||
# By default, the flags in this file are appended to flags specified | ||
# in D:\Android\android-sdk-windows/tools/proguard/proguard-android.txt | ||
# You can edit the include path and order by changing the proguardFiles | ||
# directive in build.gradle. | ||
# | ||
# For more details, see | ||
# http://developer.android.com/guide/developing/tools/proguard.html | ||
|
||
# Add any project specific keep options here: | ||
|
||
# If your project uses WebView with JS, uncomment the following | ||
# and specify the fully qualified class name to the JavaScript interface | ||
# class: | ||
#-keepclassmembers class fqcn.of.javascript.interface.for.webview { | ||
# public *; | ||
#} | ||
|
||
# Uncomment this to preserve the line number information for | ||
# debugging stack traces. | ||
#-keepattributes SourceFile,LineNumberTable | ||
|
||
# If you keep the line number information, uncomment this to | ||
# hide the original source file name. | ||
#-renamesourcefileattribute SourceFile |
26 changes: 26 additions & 0 deletions
26
app/src/androidTest/java/com/xw/sample/vectorcompattextview/ExampleInstrumentedTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package com.xw.sample.vectorcompattextview; | ||
|
||
import android.content.Context; | ||
import android.support.test.InstrumentationRegistry; | ||
import android.support.test.runner.AndroidJUnit4; | ||
|
||
import org.junit.Test; | ||
import org.junit.runner.RunWith; | ||
|
||
import static org.junit.Assert.*; | ||
|
||
/** | ||
* Instrumentation test, which will execute on an Android device. | ||
* | ||
* @see <a href="http://d.android.com/tools/testing">Testing documentation</a> | ||
*/ | ||
@RunWith(AndroidJUnit4.class) | ||
public class ExampleInstrumentedTest { | ||
@Test | ||
public void useAppContext() throws Exception { | ||
// Context of the app under test. | ||
Context appContext = InstrumentationRegistry.getTargetContext(); | ||
|
||
assertEquals("com.xw.sample.vectorcompattextview", appContext.getPackageName()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<manifest package="com.xw.sample.vectorcompattextview" | ||
xmlns:android="http://schemas.android.com/apk/res/android"> | ||
|
||
<application | ||
android:allowBackup="true" | ||
android:icon="@mipmap/ic_launcher" | ||
android:label="@string/app_name" | ||
android:roundIcon="@mipmap/ic_launcher_round" | ||
android:supportsRtl="true" | ||
android:theme="@style/AppTheme"> | ||
<activity android:name=".MainActivity"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN"/> | ||
|
||
<category android:name="android.intent.category.LAUNCHER"/> | ||
</intent-filter> | ||
</activity> | ||
</application> | ||
|
||
</manifest> |
13 changes: 13 additions & 0 deletions
13
app/src/main/java/com/xw/sample/vectorcompattextview/MainActivity.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package com.xw.sample.vectorcompattextview; | ||
|
||
import android.support.v7.app.AppCompatActivity; | ||
import android.os.Bundle; | ||
|
||
public class MainActivity extends AppCompatActivity { | ||
|
||
@Override | ||
protected void onCreate(Bundle savedInstanceState) { | ||
super.onCreate(savedInstanceState); | ||
setContentView(R.layout.activity_main); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<corners android:radius="4dp"/> | ||
<stroke | ||
android:width="1dp" | ||
android:color="@color/color_gray"/> | ||
<solid android:color="@android:color/transparent"/> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<corners android:radius="4dp"/> | ||
<stroke | ||
android:width="1dp" | ||
android:color="@color/color_red"/> | ||
<solid android:color="@android:color/transparent"/> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<shape xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:shape="rectangle"> | ||
<stroke | ||
android:width="1px" | ||
android:color="@color/color_gray"/> | ||
<solid android:color="@android:color/transparent"/> | ||
</shape> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="16dp" | ||
android:height="16dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#ffffff" | ||
android:pathData="M352.5,959.1 L270.4,877 636.2,511 271.5,146.3 353.6,64.1l447,447L352.5,959.1z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="32dp" | ||
android:height="32dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#ffffff" | ||
android:pathData="M512,905.3c-216.9,0 -393.3,-176.4 -393.3,-393.3s176.4,-393.3 393.3,-393.3 393.3,176.4 393.3,393.3 -176.4,393.3 -393.3,393.3zM512,152.2c-198.4,0 -359.8,161.4 -359.8,359.8s161.4,359.8 359.8,359.8 359.8,-161.4 359.8,-359.8 -161.4,-359.8 -359.8,-359.8z"/> | ||
<path | ||
android:fillColor="#ffffff" | ||
android:pathData="M466.3,466.3l-167.5,258.9 258.9,-167.6 167.5,-258.9 -258.9,167.6zM512,542.5c-16.8,0 -30.5,-13.6 -30.5,-30.5 0,-16.8 13.6,-30.5 30.5,-30.5 16.8,0 30.4,13.6 30.4,30.5 0,16.8 -13.6,30.5 -30.4,30.5z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#FF24292E" | ||
android:pathData="M14.2,515.2c0,216.9 139,401.2 332.7,468.9 26.1,6.6 22.1,-12.1 22.1,-24.7l0,-86.1c-150.6,17.7 -156.7,-82.1 -166.9,-98.7 -20.5,-34.9 -68.8,-43.8 -54.4,-60.4 34.3,-17.7 69.2,4.5 109.8,64.3 29.4,43.4 86.4,36.1 115.4,28.8 6.3,-26.1 19.9,-49.3 38.5,-67.5 -155.9,-27.7 -221,-123 -221,-236.3 0,-54.8 18.1,-105.4 53.7,-146.2 -22.6,-67.3 2.1,-124.7 5.4,-133.2 64.5,-5.8 131.4,46.1 136.6,50.2 36.7,-9.8 78.5,-15.2 125.2,-15.2 47.1,0 89.1,5.4 125.9,15.4 12.5,-9.5 74.7,-54.1 134.6,-48.6 3.2,8.6 27.3,64.7 6.1,131 36,40.8 54.3,91.7 54.3,146.8 0,113.5 -65.4,208.9 -221.9,236.4 26.2,25.8 42.3,61.6 42.3,101.1l0,124.9c0.9,9.9 0,19.9 16.7,19.9 196.5,-66.2 338,-252 338,-470.8 0,-274.3 -222.4,-496.6 -496.6,-496.6C236.5,18.6 14.2,240.9 14.2,515.2z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="20dp" | ||
android:height="12dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#f44336" | ||
android:pathData="M945.2,590.8 L78.8,590.8c-43.3,0 -78.8,-35.4 -78.8,-78.8l0,0c0,-43.3 35.4,-78.8 78.8,-78.8l866.5,0c43.3,0 78.8,35.4 78.8,78.8l0,0C1024,555.3 988.6,590.8 945.2,590.8z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="26dp" | ||
android:height="26dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#1296db" | ||
android:pathData="M672.3,137.9c71.1,-1.3 109,24.7 145.1,57.6 30.7,-2.6 70.5,-19.8 94,-31.7 7.6,-4.2 15.2,-8.4 22.8,-12.5 -13.4,36.3 -31.6,64.6 -59.6,86.2 -6.2,4.8 -12.4,11.2 -20.2,14.3l0,0.4c39.8,-0.4 72.7,-18.4 103.9,-28.1l0,0.5c-16.4,26 -38.6,52.5 -62.3,71.4 -9.6,7.6 -19.1,15.2 -28.7,22.8 0.5,42.2 -0.6,82.4 -8.5,117.9 -45.8,206 -167.3,345.9 -359.6,405.9 -69,21.5 -180.6,30.3 -259.7,10.7 -39.2,-9.7 -74.7,-20.7 -107.9,-35.3 -18.5,-8.1 -35.6,-16.8 -51.9,-26.8 -5.4,-3.3 -10.8,-6.6 -16.1,-9.8 17.8,0.5 38.7,5.4 58.7,2.2 18,-2.9 35.7,-2.1 52.4,-5.8 41.5,-9.1 78.4,-21.2 110.2,-39.8 15.4,-9 38.8,-19.6 49.7,-32.6 -20.6,0.4 -39.3,-4.4 -54.6,-9.8 -59.4,-21 -94,-59.5 -116.4,-117.4 18,1.9 69.8,6.6 81.9,-3.6 -22.7,-1.3 -44.4,-14.4 -60,-24.1 -47.8,-29.9 -86.7,-80 -86.4,-157.1 6.3,2.9 12.5,5.9 18.8,8.9 12,5.1 24.2,7.8 38.5,10.7 6.1,1.3 18.1,4.8 25.1,2.2l-0.9,0c-9.2,-10.7 -24.3,-17.9 -33.6,-29.4 -30.7,-38.1 -59.4,-96.7 -41.2,-166.6 4.6,-17.7 11.9,-33.3 19.7,-47.8 0.3,0.1 0.6,0.3 0.9,0.4 3.6,7.5 11.5,12.9 16.6,19.2 15.7,19.4 35,36.9 54.6,52.2 67,52.4 127.4,84.6 224.4,108.5 24.6,6.1 53,10.7 82.4,10.7 -8.2,-24 -5.6,-62.9 0.9,-86.2 16.4,-58.5 51.8,-100.6 103.9,-123.2 12.4,-5.4 26.3,-9.3 40.7,-12.5C657.4,139.7 664.8,138.8 672.3,137.9"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="36dp" | ||
android:height="36dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#ffffff" | ||
android:pathData="M716.8,369.7h163.8v41H716.8zM676.9,492.5H880.6v41H676.9zM716.8,615.4h163.8v41H716.8z"/> | ||
<path | ||
android:fillColor="#ffffff" | ||
android:pathData="M554,602.1c-8.2,-4.1 -13.3,-12.3 -13.3,-22.5v-10.2c0,-7.2 3.1,-14.3 9.2,-19.5 45.1,-34.8 73.7,-94.2 73.7,-161.8 0,-106.5 -72.7,-192.5 -162.8,-192.5S298,282.6 298,389.1c0,66.6 28.7,124.9 71.7,159.7 6.1,4.1 9.2,11.3 9.2,19.5v13.3c0,9.2 -5.1,18.4 -13.3,22.5C268.3,652.3 143.4,721.9 143.4,775.2v52.2h634.9v-52.2c0,-53.2 -126,-123.9 -224.3,-173.1z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="28dp" | ||
android:height="28dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#ffffff" | ||
android:pathData="M512,118.5c36.9,0 73.3,12.3 102.4,34.7 14.4,11.1 26.4,24.2 35.6,38.9 9.5,15.2 15.8,31.7 18.7,49.3l0,0 0,0c5.7,33.8 10.8,85.6 3.2,140.6 -6.9,49.9 -22.7,90.2 -46.9,119.7l-0,0 -0,0c-31.6,38.7 -48.5,74.5 -50.1,106.5 -1.4,27.9 9,45.2 14.4,52.2 53.8,71.1 124.8,86.9 187.4,100.8 12.2,2.7 23.6,5.2 34.8,8.1 20,5.4 42.7,12.6 60.5,25.2l0,0 0,0c22.6,16 36.7,43.7 42,82.5 1.3,9.3 1.9,18.2 2.1,26.3L589.9,903.5l-77.9,0L436.2,903.5 107.8,903.5c0.2,-7.5 0.7,-15.8 1.8,-24.4 2.4,-18.3 6.8,-34.5 13.2,-48.2 7.3,-15.6 16.8,-27.4 29.1,-36.1l0,-0 0,-0c18.4,-13.1 41.5,-20.3 61.7,-25.7 10.7,-2.7 21.6,-5.2 33.2,-7.7 62.8,-13.9 133.9,-29.6 187.8,-100.7 5.4,-7 15.9,-24.3 14.4,-52.2 -1.6,-32 -18.5,-67.9 -50.1,-106.6l-0,-0 -0,-0c-24.2,-29.5 -40,-69.8 -46.9,-119.7 -7.6,-55 -2.5,-106.8 3.2,-140.6l0,-0 0,-0c2.9,-17.5 9.2,-34.1 18.7,-49.3 9.2,-14.7 21.2,-27.8 35.6,-38.9C438.8,130.8 475.2,118.5 512,118.5M512,77.6c-92.3,0 -181.3,62.9 -196.9,157.1 -15.8,94.2 -10.7,216.1 52.4,293.1 62.6,76.6 34.9,108 34.9,108 -53.8,71.1 -130.7,76.3 -198.8,93.7 -27,7.1 -52.9,16.1 -75.1,31.9C49.5,817.2 69,944.4 69,944.4l8.7,0L436.2,944.4l75.8,0 77.9,0 358.2,0 7,0c0,0 19.4,-127.2 -59.4,-183.1 -21.9,-15.6 -47.2,-24.3 -73.7,-31.4 -68.4,-17.8 -146,-22.5 -200.2,-94.2 0,0 -27.7,-31.4 34.9,-108 63,-76.9 68.2,-198.8 52.4,-293.1C693.5,140.4 604.5,77.6 512,77.6L512,77.6z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="32dp" | ||
android:height="32dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#09bb07" | ||
android:pathData="M654.1,383c9.2,0 18.3,0.7 27.3,1.7 -24.5,-114.4 -146.5,-199.4 -285.7,-199.4C240,185.3 112.5,291.7 112.5,426.8c0,78 42.4,142 113.3,191.6l-28.3,85.4 99,-49.8c35.4,7 63.8,14.3 99.2,14.3 8.9,0 17.7,-0.4 26.4,-1.1 -5.5,-19 -8.7,-38.9 -8.7,-59.5C413.3,483.7 519.6,383 654.1,383L654.1,383zM501.8,306c21.3,0 35.4,14.1 35.4,35.4 0,21.3 -14.1,35.5 -35.4,35.5 -21.2,0 -42.5,-14.3 -42.5,-35.5C459.3,320.1 480.6,306 501.8,306L501.8,306zM303.7,377c-21.2,0 -42.6,-14.3 -42.6,-35.5 0,-21.4 21.4,-35.4 42.6,-35.4 21.2,0 35.4,14.1 35.4,35.4C339,362.7 324.9,377 303.7,377L303.7,377zM912.5,604.3c0,-113.5 -113.3,-206 -240.5,-206 -134.7,0 -240.8,92.5 -240.8,206 0,113.7 106.1,206 240.8,206 28.2,0 56.6,-7.1 85,-14.2l77.7,42.6 -21.3,-70.9C870.2,725 912.5,668.3 912.5,604.3L912.5,604.3zM593.9,568.7c-14.1,0 -28.3,-14.1 -28.3,-28.4 0,-14.2 14.2,-28.4 28.3,-28.4 21.4,0 35.4,14.2 35.4,28.4C629.3,554.7 615.3,568.7 593.9,568.7L593.9,568.7zM749.6,568.7c-14,0 -28.1,-14.1 -28.1,-28.4 0,-14.2 14.1,-28.4 28.1,-28.4 21.2,0 35.4,14.2 35.4,28.4C785.1,554.7 770.9,568.7 749.6,568.7L749.6,568.7zM749.6,568.7"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#FFFFFF" | ||
android:pathData="M382.5,698.7c-8.7,0.3 -16.3,7.8 -17.5,16.9 -1.1,9.1 4.8,16.4 13.5,16.3 8.9,-0.1 16.9,-7.9 18,-17.2 0.9,-9.3 -5.4,-16.5 -14.1,-16zM323.5,709.1c-26.7,1.3 -50.8,24.5 -54.3,52.6 -3.6,28.2 15.2,50.9 42,50.4 27.2,-0.4 52.4,-24.3 55.7,-53.1 3,-28.9 -16.4,-51 -43.4,-49.9z"/> | ||
<path | ||
android:fillColor="#FFFFFF" | ||
android:pathData="M766.5,673.7c-12.2,-127.6 -183.9,-215.5 -383.4,-196.4 -199.6,19.1 -351.4,138 -339.2,265.6 12.2,127.6 183.9,215.6 383.4,196.5 199.6,-19.1 351.4,-138 339.2,-265.6zM515.3,723.1c-9.1,83 -89.2,151.3 -175.9,151 -83.6,-0.3 -139.6,-65 -127.8,-143 11.5,-76.5 84.5,-140.9 165.7,-145.2 84.1,-4.7 147,56 137.9,137.3z"/> | ||
<path | ||
android:fillColor="#E79014" | ||
android:pathData="M1022.1,313.9c-33.7,-188.2 -183.3,-263.8 -287,-271 -19.5,-1.9 -37.6,9.9 -40.3,28.7 -2.6,18.3 10.5,36.6 28.7,40.3 67.8,15 196.2,34.7 230.2,225.7 3,19.4 18.9,40 43.1,34.8 17.7,-3.9 33.5,-13.7 25.4,-58.5zM720.4,261.3a24.4,24.4 0,0 0,-27.5 17.5c-3.9,13.1 3.3,28.2 16.7,31 28.4,5.9 42.3,25.5 46.4,46.4 0,0 3.6,14.1 17.3,18 13.3,3.8 37.4,-6 30.5,-32.3 -6.9,-35.7 -42.4,-74.1 -83.3,-80.5z"/> | ||
<path | ||
android:fillColor="#E79014" | ||
android:pathData="M737.6,160.4c-29.8,-5.1 -43.4,16.2 -43.4,33.3 0,17 12.2,29.3 34.6,35.6 59.6,16.5 97.9,42.7 108.4,111.7 3.1,20 21.4,30.7 34.6,30.7 17.9,0 32.5,-14.5 32.5,-32.5 0,-0.7 -0.1,-1.3 -0.1,-2l0.2,-0c-11.3,-88.5 -77.7,-161.4 -166.7,-176.7z"/> | ||
<path | ||
android:fillColor="#D62629" | ||
android:pathData="M731.6,697.5c-12,124.1 -188.8,223.4 -380.7,218.5 -177.7,-4.4 -296.2,-98 -276.6,-206.6 19.1,-105.5 164.4,-196.6 335.3,-206.7 183.6,-10.8 333.6,74.6 321.9,194.8zM703.6,498.7c-7.1,0.2 -10.1,1 -11.1,-1.5 -0.9,-2.1 0.2,-4.3 4,-14 10.6,-26.9 27.6,-82.1 -7.2,-112.9 -23,-20.3 -120.1,-35.8 -222.6,35.2 -5.1,3.5 -13.4,11.1 -17.6,9.7 -4.6,-1.6 -5.6,-6.5 -6.2,-15.9 -3.3,-50.6 39.2,-191.2 -70.6,-179.6 -116.7,19.8 -274.1,204.2 -319.1,293.4 -159.7,316.5 71.2,445.4 297.1,452.1 245.1,7.2 493.3,-131.9 526,-318 21.8,-124.2 -124.5,-149.6 -172.7,-148.5z"/> | ||
<path | ||
android:fillColor="#030000" | ||
android:pathData="M377.4,585.9c-81.2,4.4 -154.2,68.7 -165.7,145.2 -11.7,78 44.2,142.7 127.8,143 86.6,0.4 166.8,-67.9 175.9,-151 9.1,-81.3 -53.9,-142 -137.9,-137.3zM366.9,759c-3.3,28.8 -28.4,52.7 -55.7,53.1 -26.9,0.5 -45.7,-22.2 -42,-50.4 3.5,-28.1 27.6,-51.3 54.3,-52.6 27.1,-1.1 46.4,21 43.4,49.9zM378.5,731.9c-8.7,0.1 -14.6,-7.2 -13.5,-16.3 1.2,-9.1 8.9,-16.7 17.5,-16.9 8.6,-0.5 15,6.7 14.1,16 -1.1,9.3 -9.2,17 -18,17.2z"/> | ||
</vector> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="32dp" | ||
android:height="32dp" | ||
android:viewportHeight="1024.0" | ||
android:viewportWidth="1024.0"> | ||
<path | ||
android:fillColor="#ffffff" | ||
android:pathData="M523.9,166.5c-194.3,0 -352.3,142.2 -352.3,317.1 0,63.4 20.8,124.4 60.3,177l-41.9,170.9c-1.6,6.5 0.7,13.5 5.8,17.7 3.2,2.7 7.2,4.1 11.3,4.1 2.5,0 4.9,-0.5 7.2,-1.5l170.9,-77c44.3,17.1 90.9,25.8 138.6,25.8 194.3,0 352.3,-142.3 352.3,-317.1 0,-174.8 -158,-317.1 -352.3,-317.1zM523.9,765.4c-45.7,0 -90.3,-8.8 -132.4,-26 -4.4,-1.8 -9.5,-1.7 -13.9,0.3l-144.8,65.2 35.3,-144.1c1.3,-5.3 0.1,-10.9 -3.3,-15.1 -37.9,-47.8 -58,-103.9 -58,-162 0,-155.4 142.2,-281.8 317.1,-281.8s317.1,126.4 317.1,281.8c0,155.4 -142.2,281.8 -317.1,281.8z"/> | ||
</vector> |
Oops, something went wrong.