-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[SQUASHED] sdm660-common: Import ZenfoneParts v2
Mostly imported from https://github.com/xiaomi-sdm660/android_device_xiaomi_sdm660-common Gesture stuff's taken from https://github.com/SagarMakhar/device_asus_X00TD All credit's belong to them * overlays added * node permissions added Danish1999 - * Add permissions to separate rc file * Remove Zenmotion Co-authored-by: Fikri <[email protected]> Signed-off-by: Rizky Benggolo <[email protected]> Change-Id: I4f943138f6a3e7b421669253073cec187440f8bf
- Loading branch information
1 parent
51f2b55
commit d4ef761
Showing
60 changed files
with
3,249 additions
and
2 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,31 @@ | ||
LOCAL_PATH := $(call my-dir) | ||
include $(CLEAR_VARS) | ||
|
||
LOCAL_MODULE_TAGS := optional | ||
LOCAL_STATIC_ANDROID_LIBRARIES := \ | ||
androidx.preference_preference | ||
|
||
LOCAL_SRC_FILES := $(call all-java-files-under, src) | ||
LOCAL_PACKAGE_NAME := ZenParts | ||
LOCAL_CERTIFICATE := platform | ||
LOCAL_PRIVILEGED_MODULE := true | ||
LOCAL_PRIVATE_PLATFORM_APIS := true | ||
LOCAL_RESOURCE_DIR := $(LOCAL_PATH)/res | ||
LOCAL_USE_AAPT2 := true | ||
|
||
package_resource_overlays := $(strip \ | ||
$(wildcard $(foreach dir, $(PRODUCT_PACKAGE_OVERLAYS), \ | ||
$(addprefix $(dir)/, packages/apps/ZenParts/res))) \ | ||
$(wildcard $(foreach dir, $(DEVICE_PACKAGE_OVERLAYS), \ | ||
$(addprefix $(dir)/, packages/apps/ZenParts/res)))) | ||
|
||
LOCAL_RESOURCE_DIR := $(package_resource_overlays) $(LOCAL_RESOURCE_DIR) | ||
|
||
LOCAL_PROGUARD_ENABLED := disabled | ||
LOCAL_DEX_PREOPT := false | ||
|
||
include frameworks/base/packages/SettingsLib/common.mk | ||
|
||
include $(BUILD_PACKAGE) | ||
|
||
include $(call all-makefiles-under,$(LOCAL_PATH)) |
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,112 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- Copyright (C) 2014 SlimRoms Project | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<manifest xmlns:android="http://schemas.android.com/apk/res/android" | ||
package="com.asus.zenparts" | ||
android:sharedUserId="android.uid.system"> | ||
|
||
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" /> | ||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> | ||
<uses-permission android:name="android.permission.VIBRATE" /> | ||
<uses-permission android:name="android.permission.WRITE_SETTINGS" /> | ||
|
||
<uses-sdk android:minSdkVersion="27" /> | ||
|
||
<application | ||
android:label="@string/advanced_settings" | ||
android:supportsRtl="true" | ||
android:theme="@style/CustomOptionsTheme"> | ||
<receiver | ||
android:name=".BootReceiver" | ||
android:defaultToDeviceProtectedStorage="true" | ||
android:directBootAware="true" | ||
android:enabled="true" | ||
android:exported="false"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.BOOT_COMPLETED" /> | ||
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<action android:name="com.android.settings.action.EXTRA_SETTINGS" /> | ||
</intent-filter> | ||
</receiver> | ||
<activity | ||
android:name="com.asus.zenparts.DeviceSettingsActivity" | ||
android:exported="false" | ||
android:label="@string/advanced_settings" | ||
android:launchMode="singleTask"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
<action android:name="com.android.settings.action.EXTRA_SETTINGS" /> | ||
</intent-filter> | ||
<meta-data | ||
android:name="com.android.settings.dismiss" | ||
android:value="9,13,30" /> | ||
<meta-data | ||
android:name="com.android.settings.summary" | ||
android:resource="@string/advanced_settings_summary" /> | ||
</activity> | ||
<activity-alias | ||
android:name="com.asus.zenparts.DeviceSettings" | ||
android:exported="true" | ||
android:enabled="true" | ||
android:label="@string/advanced_settings" | ||
android:targetActivity="DeviceSettingsActivity" > | ||
<intent-filter> | ||
<action android:name="com.android.settings.action.EXTRA_SETTINGS" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
<meta-data | ||
android:name="com.android.settings.category" | ||
android:value="com.android.settings.category.ia.homepage" /> | ||
<meta-data | ||
android:name="com.android.settings.icon" | ||
android:resource="@drawable/ic_asus" /> | ||
<meta-data | ||
android:name="com.android.settings.summary" | ||
android:resource="@string/advanced_settings_summary" /> | ||
</activity-alias> | ||
<activity | ||
android:name=".kcal.KCalSettingsActivity" | ||
android:exported="false" | ||
android:theme="@style/CustomOptionsTheme" | ||
android:label="@string/advanced_settings_kcal"> | ||
<intent-filter> | ||
<action android:name="android.intent.action.MAIN" /> | ||
<category android:name="android.intent.category.DEFAULT" /> | ||
</intent-filter> | ||
</activity> | ||
<service | ||
android:name=".ZenpartsTile" | ||
android:enabled="true" | ||
android:icon="@drawable/qs_asus" | ||
android:label="@string/advanced_settings" | ||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> | ||
<intent-filter> | ||
<action android:name="android.service.quicksettings.action.QS_TILE"/> | ||
</intent-filter> | ||
</service> | ||
<service | ||
android:name="com.asus.zenparts.DimmerTile" | ||
android:icon="@drawable/ic_backlight" | ||
android:label="@string/backlight_dimmer" | ||
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"> | ||
<intent-filter> | ||
<action | ||
android:name="android.service.quicksettings.action.QS_TILE"/> | ||
</intent-filter> | ||
</service> | ||
</application> | ||
</manifest> |
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:viewportWidth="24" | ||
android:viewportHeight="24"> | ||
<path | ||
android:fillColor="?android:attr/colorAccent" | ||
android:pathData="M12,3c-4.97,0 -9,4.03 -9,9s4.03,9 9,9c0.83,0 1.5,-0.67 1.5,-1.5 0,-0.39 -0.15,-0.74 -0.39,-1.01 -0.23,-0.26 -0.38,-0.61 -0.38,-0.99 0,-0.83 0.67,-1.5 1.5,-1.5L16,16c2.76,0 5,-2.24 5,-5 0,-4.42 -4.03,-8 -9,-8zM6.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S5.67,9 6.5,9 8,9.67 8,10.5 7.33,12 6.5,12zM9.5,8C8.67,8 8,7.33 8,6.5S8.67,5 9.5,5s1.5,0.67 1.5,1.5S10.33,8 9.5,8zM14.5,8c-0.83,0 -1.5,-0.67 -1.5,-1.5S13.67,5 14.5,5s1.5,0.67 1.5,1.5S15.33,8 14.5,8zM17.5,12c-0.83,0 -1.5,-0.67 -1.5,-1.5S16.67,9 17.5,9s1.5,0.67 1.5,1.5 -0.67,1.5 -1.5,1.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:viewportWidth="24" | ||
android:viewportHeight="24"> | ||
<path | ||
android:fillColor="?android:attr/colorAccent" | ||
android:pathData="M12.5,8C9.85,8 7.45,9 5.6,10.6L2,7V16H11L7.38,12.38C8.77,11.22 10.54,10.5 12.5,10.5C16.04,10.5 19.05,12.81 20.1,16L22.47,15.22C21.08,11.03 17.15,8 12.5,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,11 @@ | ||
<!-- drawable/cellphone_settings_variant.xml --> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:height="24dp" | ||
android:width="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?attr/colorControlNormal"> | ||
<path | ||
android:fillColor="@android:color/white" | ||
android:pathData="m12.2288,14.09807c1.41135,-0.69402 2.8227,-1.73505 4.23404,-2.42907c2.11702,-1.04103 3.8812,-2.08206 5.29255,-2.77608c2.11702,-0.69402 3.52837,-1.38804 3.8812,-1.38804c0,0 0,0 0,0l0,0c0,0.34701 -0.35283,1.04103 -1.05851,1.38804c-3.17553,1.38804 -10.93794,5.55216 -14.11346,7.98123c0.35283,0.34701 2.46985,0.69402 4.93972,1.04103c1.05851,0 1.41135,-0.34701 2.11702,-0.34701c0.35283,-0.34701 1.05851,-1.04103 1.76418,-1.73505c0.70567,-1.38804 1.41135,-2.77608 1.41135,-2.77608l-8.46808,3.4701c0,0 7.40957,-4.51113 11.99644,-6.59319c0,0.34701 -0.70567,2.08206 -1.41135,3.81711c-0.35283,1.04103 -1.05851,2.08206 -1.76418,3.12309c-1.41135,1.73505 -2.46985,2.42907 -2.8227,2.42907c-0.35283,0 -2.11702,0 -3.52837,0c-2.8227,-0.69402 -5.64539,-1.38804 -6.70389,-2.08206c0,-0.34701 2.11702,-1.73505 4.23404,-3.12309l0,0zm11.29077,-8.32824l-0.35283,0c-3.52837,0 -6.70389,1.04103 -6.70389,1.38804c-0.70567,0 -1.76418,1.04103 -2.11702,1.38804c-0.35283,0.34701 -1.76418,1.73505 -3.17553,3.12309c-1.41135,1.38804 -2.8227,2.77608 -3.52837,3.4701c-0.70567,0 -2.8227,-1.73505 -3.8812,-1.73505c0.35283,0 0.35283,0.69402 1.05851,1.73505c0.35283,1.04103 1.05851,2.08206 1.76418,3.12309c0.70567,0.69402 2.11702,1.73505 3.17553,2.08206c-1.05851,-0.69402 -2.46985,-2.42907 -2.46985,-3.12309c0,-1.04103 2.46985,-2.42907 4.93972,-4.16412c1.41135,-1.04103 7.40957,-5.89917 13.05496,-7.28721c-0.70567,0 -1.41135,0 -1.76418,0l-0.00002,-0.00001zm-20.11168,10.06329c-1.05851,-0.34701 -1.76418,-0.69402 -1.76418,-1.04103c-0.35283,-0.34701 -0.35283,-0.69402 -0.70567,-1.38804c-0.35283,-1.04103 -0.70567,-2.08206 -0.70567,-2.08206c0,0 1.41135,1.73505 2.46985,3.12309c1.41135,1.38804 2.46985,2.42907 2.46985,2.42907c0,0 -1.05851,-0.34701 -1.76418,-1.04103l0,0l0,0.00001z" /> | ||
</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,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?android:attr/colorControlNormal"> | ||
|
||
<path | ||
android:pathData="M0 0h24v24H0V0z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M20 8.69V4h-4.69L12 0.69 8.69 4H4v4.69L0.69 12 4 15.31V20h4.69L12 23.31 15.31 20H20v-4.69L23.31 12 20 8.69zm-2 5.79V18h-3.52L12 20.48 9.52 18H6v-3.52L3.52 12 6 9.52V6h3.52L12 3.52 14.48 6H18v3.52L20.48 12 18 14.48zM12 6.5c-3.03 0-5.5 2.47-5.5 5.5s2.47 5.5 5.5 5.5 5.5-2.47 5.5-5.5-2.47-5.5-5.5-5.5zm0 9c-1.93 0-3.5-1.57-3.5-3.5s1.57-3.5 3.5-3.5 3.5 1.57 3.5 3.5-1.57 3.5-3.5 3.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,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2018 crDroid Android Project | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24.0dp" | ||
android:height="24.0dp" | ||
android:viewportWidth="24.0" | ||
android:viewportHeight="24.0" > | ||
<path | ||
android:fillColor="?android:attr/colorControlNormal" | ||
android:pathData="M14.102040767669678,13 H0.10204076766967773 V11 H14.102040767669678 V13 z" /> | ||
</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,22 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2018 crDroid Android Project | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24.0dp" | ||
android:height="24.0dp" | ||
android:viewportWidth="48.0" | ||
android:viewportHeight="48.0" > | ||
<path | ||
android:fillColor="?android:attr/colorControlNormal" | ||
android:pathData="M38.0,26.0L26.0,26.0l0.0,12.0l-4.0,0.0L22.0,26.0L10.0,26.0l0.0,-4.0l12.0,0.0L22.0,10.0l4.0,0.0l0.0,12.0l12.0,0.0l0.0,4.0z" /> | ||
</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 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<!-- | ||
Copyright (C) 2019 Havoc-OS | ||
Licensed under the Apache License, Version 2.0 (the "License"); | ||
you may not use this file except in compliance with the License. | ||
You may obtain a copy of the License at | ||
http://www.apache.org/licenses/LICENSE-2.0 | ||
Unless required by applicable law or agreed to in writing, software | ||
distributed under the License is distributed on an "AS IS" BASIS, | ||
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
--> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24.0" | ||
android:viewportHeight="24.0" | ||
android:tint="?android:attr/colorControlNormal" > | ||
|
||
<path | ||
android:fillColor="#FFFFFFFF" | ||
android:pathData="M14.123456746339798,12.042328000068665 c0,-0.7430335164070133 -0.6079365134239197,-1.3509700298309326 -1.3509700298309326,-1.3509700298309326 s-1.3509700298309326,0.6079365134239197 -1.3509700298309326,1.3509700298309326 s0.6079365134239197,1.3509700298309326 1.3509700298309326,1.3509700298309326 s1.3509700298309326,-0.6079365134239197 1.3509700298309326,-1.3509700298309326 zM12.772486716508865,5.962962865829468 c-3.3571605241298674,0 -6.079365134239197,2.7222046101093293 -6.079365134239197,6.079365134239197 L4.66666653752327,12.042328000068665 l2.7019400596618652,2.7019400596618652 l2.7019400596618652,-2.7019400596618652 L8.044091612100601,12.042328000068665 c0,-2.6141270077228547 2.1142680966854095,-4.728395104408264 4.728395104408264,-4.728395104408264 s4.728395104408264,2.1142680966854095 4.728395104408264,4.728395104408264 s-2.1142680966854095,4.728395104408264 -4.728395104408264,4.728395104408264 c-1.0199823725223542,0 -1.965661393404007,-0.3309876573085789 -2.742469160556793,-0.8781305193901066 l-0.9591887211799618,0.9726984214782719 C10.097566057443618,17.648853623867033 11.380987585783004,18.12169313430786 12.772486716508865,18.12169313430786 c3.3571605241298674,0 6.079365134239197,-2.7222046101093293 6.079365134239197,-6.079365134239197 s-2.7222046101093293,-6.079365134239197 -6.079365134239197,-6.079365134239197 z" /> | ||
</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 @@ | ||
<!-- drawable/phone_text.xml --> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:height="24dp" | ||
android:width="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?android:attr/colorControlNormal"> | ||
<path android:fillColor="#000" android:pathData="M17,19V5H7V19H17M17,1A2,2 0 0,1 19,3V21A2,2 0 0,1 17,23H7C5.89,23 5,22.1 5,21V3C5,1.89 5.89,1 7,1H17M9,7H15V9H9V7M9,11H13V13H9V11Z" /> | ||
</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,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?android:attr/colorControlNormal"> | ||
|
||
<path | ||
android:pathData="M0 0h24v24H0V0z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M19 14v3c0 0.55-0.45 1-1 1h-1v-4h2M7 14v4H6c-0.55 0-1-0.45-1-1v-3h2m5-13c-4.97 0-9 4.03-9 9v7c0 1.66 1.34 3 3 3h3v-8H5v-2c0-3.87 3.13-7 7-7s7 3.13 7 7v2h-4v8h3c1.66 0 3-1.34 3-3v-7c0-4.97-4.03-9-9-9z" /> | ||
</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,26 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?android:attr/colorControlNormal"> | ||
|
||
<path | ||
android:pathData="M0 0h24v24H0z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M12 22C6.49 22 2 17.51 2 12S6.49 2 12 2s10 4.04 10 9c0 3.31-2.69 6-6 6h-1.77c-0.28 0-0.5 0.22 -0.5 0.5 0 0.12 0.05 0.23 0.13 0.33 0.41 0.47 0.64 1.06 0.64 1.67 0 1.38-1.12 2.5-2.5 2.5zm0-18c-4.41 0-8 3.59-8 8s3.59 8 8 8c0.28 0 0.5-0.22 0.5 -0.5 0-0.16-0.08-0.28-0.14-0.35-0.41-0.46-0.63-1.05-0.63-1.65 0-1.38 1.12-2.5 2.5-2.5H16c2.21 0 4-1.79 4-4 0-3.86-3.59-7-8-7z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M 6.5 10 C 7.32842712475 10 8 10.6715728753 8 11.5 C 8 12.3284271247 7.32842712475 13 6.5 13 C 5.67157287525 13 5 12.3284271247 5 11.5 C 5 10.6715728753 5.67157287525 10 6.5 10 Z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M 9.5 6 C 10.3284271247 6 11 6.67157287525 11 7.5 C 11 8.32842712475 10.3284271247 9 9.5 9 C 8.67157287525 9 8 8.32842712475 8 7.5 C 8 6.67157287525 8.67157287525 6 9.5 6 Z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M 14.5 6 C 15.3284271247 6 16 6.67157287525 16 7.5 C 16 8.32842712475 15.3284271247 9 14.5 9 C 13.6715728753 9 13 8.32842712475 13 7.5 C 13 6.67157287525 13.6715728753 6 14.5 6 Z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M 17.5 10 C 18.3284271247 10 19 10.6715728753 19 11.5 C 19 12.3284271247 18.3284271247 13 17.5 13 C 16.6715728753 13 16 12.3284271247 16 11.5 C 16 10.6715728753 16.6715728753 10 17.5 10 Z" /> | ||
</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,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?android:attr/colorControlNormal"> | ||
|
||
<path | ||
android:pathData="M0 0h24v24H0V0z" /> | ||
<path | ||
android:fillColor="#000000" | ||
android:pathData="M12 14c1.66 0 3-1.34 3-3V5c0-1.66-1.34-3-3-3S9 3.34 9 5v6c0 1.66 1.34 3 3 3zm-1-9c0-0.55 0.45 -1 1-1s1 0.45 1 1v6c0 0.55-0.45 1-1 1s-1-0.45-1-1V5zm6 6c0 2.76-2.24 5-5 5s-5-2.24-5-5H5c0 3.53 2.61 6.43 6 6.92V21h2v-3.08c3.39-0.49 6-3.39 6-6.92h-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 @@ | ||
<!-- drawable/equalizer.xml --> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:height="24dp" | ||
android:width="24dp" | ||
android:viewportWidth="24" | ||
android:viewportHeight="24" | ||
android:tint="?android:attr/colorControlNormal"> | ||
<path android:fillColor="#000" android:pathData="M10,20H14V4H10V20M4,20H8V12H4V20M16,9V20H20V9H16Z" /> | ||
</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,11 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<vector xmlns:android="http://schemas.android.com/apk/res/android" | ||
android:width="24dp" | ||
android:height="24dp" | ||
android:viewportWidth="24.0" | ||
android:viewportHeight="24.0" | ||
android:tint="?android:attr/colorControlNormal"> | ||
<path | ||
android:pathData="M14 12c0-1.1-.9-2-2-2s-2 .9-2 2 .9 2 2 2 2-.9 2-2zm-2-9c-4.97 0-9 4.03-9 9H0l4 4 4-4H5c0-3.87 3.13-7 7-7s7 3.13 7 7-3.13 7-7 7c-1.51 0-2.91-.49-4.06-1.3l-1.42 1.44C8.04 20.3 9.94 21 12 21c4.97 0 9-4.03 9-9s-4.03-9-9-9z" | ||
android:fillColor="#ffffff"/> | ||
</vector> |
Oops, something went wrong.