comet: overlay: Import selected framework-res/Settings product RRO overlays
Change-Id: I375809d68a093be9b0a17d761bda0b41e1e4cac4
This commit is contained in:
parent
85877a3669
commit
6ab4cd8d2b
22 changed files with 991 additions and 0 deletions
|
@ -0,0 +1,36 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2009, The Android Open Source 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.
|
||||
*/
|
||||
-->
|
||||
|
||||
<!-- These resources are around just to allow their values to be customized
|
||||
for different hardware and product builds. -->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- If true, the screen can be rotated via the accelerometer in all 4
|
||||
rotations as the default behavior. -->
|
||||
<bool name="config_allowAllRotations">false</bool>
|
||||
|
||||
<!-- If false and config_allowAllRotations is false, the screen will rotate to the natural
|
||||
orientation of the device when the auto-rotate policy is toggled. -->
|
||||
<bool name="config_useCurrentRotationOnRotationLockChange">true</bool>
|
||||
|
||||
<!-- Set to true to enable the user switcher on the keyguard. -->
|
||||
<bool name="config_keyguardUserSwitcher">false</bool>
|
||||
|
||||
<!-- If true, show multiuser switcher by default unless the user specifically disables it. -->
|
||||
<bool name="config_showUserSwitcherByDefault">false</bool>
|
||||
</resources>
|
|
@ -26,4 +26,216 @@
|
|||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<!-- IWLAN-->
|
||||
<string name="config_qualified_networks_service_package">com.android.qns</string>
|
||||
|
||||
<!-- If true, allows rotation resolver service to help resolve screen rotation. -->
|
||||
<bool name="config_allowRotationResolver">false</bool>
|
||||
|
||||
<!-- The device states (supplied by DeviceStateManager) that should be treated as open by the
|
||||
device fold controller. Default is empty. -->
|
||||
<integer-array name="config_openDeviceStates">
|
||||
<item>2</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- The device states (supplied by DeviceStateManager) that should be treated as folded by the
|
||||
display fold controller. Default is empty. -->
|
||||
<integer-array name="config_foldedDeviceStates">
|
||||
<item>0</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- The device states (supplied by DeviceStateManager) that should be treated as half-folded by
|
||||
the display fold controller. Default is empty. -->
|
||||
<integer-array name="config_halfFoldedDeviceStates">
|
||||
<item>1</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- The device states (supplied by DeviceStateManager) that should be treated as a rear display
|
||||
state. Default is empty. -->
|
||||
<integer-array name="config_rearDisplayDeviceStates">
|
||||
<item>3</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- The device states (supplied by DeviceStateManager) that should be treated as concurrent
|
||||
display state. Default is empty. -->
|
||||
<integer-array name="config_concurrentDisplayDeviceStates">
|
||||
<item>4</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Indicates whether the window manager pauses autorotation when folding or unfolding
|
||||
a foldable device based on hinge angle sensor events and physical display switch events. -->
|
||||
<bool name="config_windowManagerPauseRotationWhenUnfolding">true</bool>
|
||||
|
||||
<!-- Amount of time during which autorotation will be disabled since last hinge angle event -->
|
||||
<integer name="config_pauseRotationWhenUnfolding_maxHingeAngle">165</integer>
|
||||
|
||||
<!-- Maximum hinge angle event to be considered to disable autorotation when folding or
|
||||
unfolding -->
|
||||
<integer name="config_pauseRotationWhenUnfolding_hingeEventTimeout">400</integer>
|
||||
|
||||
<!-- Amount of time during which autorotation will be disabled since last display switch -->
|
||||
<integer name="config_pauseRotationWhenUnfolding_displaySwitchTimeout">1000</integer>
|
||||
|
||||
<!-- When a device enters any of these states, it should be woken up. States are defined in
|
||||
device_state_configuration.xml. -->
|
||||
<integer-array name="config_deviceStatesOnWhichToWakeUp">
|
||||
<item>1</item>
|
||||
<item>2</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- When a device enters any of these states, it should go to sleep. States are defined in
|
||||
device_state_configuration.xml. -->
|
||||
<integer-array name="config_deviceStatesOnWhichToSleep">
|
||||
<item>0</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Map of device posture to rotation lock setting. Each entry must be in the format
|
||||
"key:value", or "key:value:fallback_key" for example: "0:1" or "2:0:1". The keys are one of
|
||||
Settings.Secure.DeviceStateRotationLockKey, and the values are one of
|
||||
Settings.Secure.DeviceStateRotationLockSetting.
|
||||
The fallback is a key to a device posture that can be specified when the value is
|
||||
Settings.Secure.DEVICE_STATE_ROTATION_LOCK_IGNORED.
|
||||
-->
|
||||
<string-array name="config_perDeviceStateRotationLockDefaults">
|
||||
<item>0:1</item>
|
||||
<item>1:0:2</item>
|
||||
<item>2:2</item>
|
||||
<item>3:0:0</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Device states where the sensor based rotation values should be reversed around the Z axis
|
||||
for the default display.
|
||||
TODO(b/265312193): Remove this workaround when this bug is fixed.-->
|
||||
<integer-array name="config_deviceStatesToReverseDefaultDisplayRotationAroundZAxis">
|
||||
<item>3</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Boolean indicating whether secondary built-in displays should have their orientation
|
||||
match the active default display. This config assumes that the secondary display only
|
||||
requires swapping ROTATION_90 and ROTATION_270.
|
||||
TODO(b/265991392): This should eventually be configured and parsed in
|
||||
display_settings.xml -->
|
||||
<bool name="config_matchSecondaryInternalDisplaysOrientationToReverseDefaultDisplay">true</bool>
|
||||
|
||||
<!-- Class name of the device specific implementation of DeviceStatePolicy.Provider
|
||||
or empty if the default should be used. -->
|
||||
<string translatable="false" name="config_deviceSpecificDeviceStatePolicyProvider">com.google.android.server.policy.CometDeviceStatePolicyProvider</string>
|
||||
|
||||
<!-- Set to true to offset the wallpaper when using multiple displays so that it's centered
|
||||
at the same position as in the largest display.-->
|
||||
<bool name="config_offsetWallpaperToCenterOfLargestDisplay">true</bool>
|
||||
|
||||
<!-- WindowsManager JetPack display features -->
|
||||
<string name="config_display_features" translatable="false">fold-[1038,0,1038,2152]</string>
|
||||
|
||||
<!-- Map of System DeviceState supplied by DeviceStateManager to WM Jetpack posture. Must be in
|
||||
the format [System DeviceState]:[WM Jetpack Posture], for example: "0:1". -->
|
||||
<string-array name="config_device_state_postures">
|
||||
<item>0:1</item>
|
||||
<item>1:2</item>
|
||||
<item>2:3</item>
|
||||
<item>3:1</item>
|
||||
<item>4:1000</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Which Surface rotations are considered as tabletop posture (horizontal hinge) when the
|
||||
device is half-folded. Other half-folded postures will be assumed to be book (vertical
|
||||
hinge) mode. Units: degrees; valid values: 0, 90, 180, 270. -->
|
||||
<integer-array name="config_deviceTabletopRotations">
|
||||
<item>90</item>
|
||||
<item>270</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Whether enabling rotation compat policy for immersive apps that prevents auto rotation
|
||||
into non-optimal screen orientation while in fullscreen. This is needed because immersive
|
||||
apps, such as games, are often not optimized for all orientations and can have a poor UX
|
||||
when rotated. Additionally, some games rely on sensors for the gameplay so users can
|
||||
trigger such rotations accidentally when auto rotation is on.
|
||||
Applicable only if ignoreOrientationRequest is enabled. -->
|
||||
<bool name="config_letterboxIsDisplayRotationImmersiveAppCompatPolicyEnabled">true</bool>
|
||||
|
||||
<!-- Aspect ratio of letterboxing for fixed orientation. Values <= 1.0 will be ignored.
|
||||
Note: Activity min/max aspect ratio restrictions will still be respected.
|
||||
Therefore this override can control the maximum screen area that can be occupied by
|
||||
the app in the letterbox mode. -->
|
||||
<item name="config_fixedOrientationLetterboxAspectRatio" format="float" type="dimen">1.001</item>
|
||||
|
||||
<!-- Corners radius for activity presented the letterbox mode. Values < 0 enable rounded
|
||||
corners with radius equal to min between device bottom corner radii. Default 0 value turns
|
||||
off rounded corners logic in LetterboxUiController. -->
|
||||
<integer name="config_letterboxActivityCornersRadius">-1</integer>
|
||||
|
||||
<!-- Vertical position of a center of the letterboxed app window.
|
||||
0 corresponds to the upper side of the screen and 1 to the lower side. If given value < 0
|
||||
or > 1 it is ignored and for non-tabletop mode central position is used (0.5); for
|
||||
tabletop mode top (0.0) is used. -->
|
||||
<item type="dimen" name="config_letterboxVerticalPositionMultiplier">0.5</item>
|
||||
|
||||
<!-- Whether horizontal reachability repositioning is allowed for letterboxed fullscreen apps.
|
||||
-->
|
||||
<bool name="config_letterboxIsHorizontalReachabilityEnabled">true</bool>
|
||||
|
||||
<!-- Whether vertical reachability repositioning is allowed for letterboxed fullscreen apps. -->
|
||||
<bool name="config_letterboxIsVerticalReachabilityEnabled">true</bool>
|
||||
|
||||
<!-- Whether should ignore app requested orientation in response to an app
|
||||
calling Activity#setRequestedOrientation. See
|
||||
LetterboxUiController#shouldIgnoreRequestedOrientation for details. -->
|
||||
<bool name="config_letterboxIsPolicyForIgnoringRequestedOrientationEnabled">true</bool>
|
||||
|
||||
<!-- Whether displaying letterbox education is enabled for letterboxed fullscreen apps. -->
|
||||
<bool name="config_letterboxIsEducationEnabled">true</bool>
|
||||
|
||||
<!-- Whether the specific behaviour for translucent activities letterboxing is enabled.
|
||||
TODO(b/255532890) Enable when ignoreOrientationRequest is set -->
|
||||
<bool name="config_letterboxIsEnabledForTranslucentActivities">true</bool>
|
||||
|
||||
<!-- Whether per-app user aspect ratio override settings is enabled -->
|
||||
<bool name="config_appCompatUserAppAspectRatioSettingsIsEnabled">true</bool>
|
||||
|
||||
<!-- Whether per-app fullscreen override option is allowed in user aspect ratio settings -->
|
||||
<bool name="config_appCompatUserAppAspectRatioFullscreenIsEnabled">true</bool>
|
||||
|
||||
<!-- Whether sending compat fake focus for split screen resumed activities is enabled.
|
||||
Needed because some game engines wait to get focus before drawing the content of
|
||||
the app which isn't guaranteed by default in multi-window modes. -->
|
||||
<bool name="config_isCompatFakeFocusEnabled">true</bool>
|
||||
|
||||
<!-- Whether camera compat treatment is enabled for issues caused by orientation mismatch
|
||||
between camera buffers and an app window. This includes force rotation of fixed
|
||||
orientation activities connected to the camera in fullscreen and showing a tooltip in
|
||||
split screen. -->
|
||||
<bool name="config_isWindowManagerCameraCompatTreatmentEnabled">true</bool>
|
||||
|
||||
<!-- Whether a camera compat controller is enabled to allow the user to apply or revert
|
||||
treatment for stretched issues in camera viewfinder. -->
|
||||
<bool name="config_isCameraCompatControlForStretchedIssuesEnabled">true</bool>
|
||||
|
||||
<!-- List of the labels of requestable device state config values -->
|
||||
<string-array name="config_deviceStatesAvailableForAppRequests">
|
||||
<item>config_deviceStateRearDisplay</item>
|
||||
<item>config_deviceStateConcurrentRearDisplay</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Device state that corresponds to rear display mode, feature provided
|
||||
through Jetpack WindowManager
|
||||
TODO(b/236022708) Move rear display state to device state config file
|
||||
-->
|
||||
<integer name="config_deviceStateRearDisplay">3</integer>
|
||||
|
||||
<!-- Device state that corresponds to concurrent display mode where the default display
|
||||
is the internal display. Public API for the feature is provided through Jetpack
|
||||
WindowManager.
|
||||
TODO(b/236022708) Move concurrent display state to device state config file
|
||||
-->
|
||||
<integer name="config_deviceStateConcurrentRearDisplay">4</integer>
|
||||
|
||||
<!-- Physical display address that corresponds to the rear display in rear display mode
|
||||
and concurrent display mode. Used to get information about the display before
|
||||
entering the corresponding modes -->
|
||||
<string name="config_rearDisplayPhysicalAddress" translatable="false">4619827677550801153</string>
|
||||
|
||||
<!-- Whether to enable left-right split in portrait on this device -->
|
||||
<bool name="config_leftRightSplitInPortrait">true</bool>
|
||||
|
||||
<!-- Whether to allow split screen ratios to flexibly calculate based on available space -->
|
||||
<bool name="config_flexibleSplitRatios">true</bool>
|
||||
</resources>
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/**
|
||||
* Copyright (c) 2009, The Android Open Source 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.
|
||||
*/
|
||||
-->
|
||||
<resources>
|
||||
<bool name="def_accelerometer_rotation">true</bool>
|
||||
</resources>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#80868B"/>
|
||||
<path
|
||||
android:pathData="M154,53L258,53A4,4 0,0 1,262 57L262,243A4,4 0,0 1,258 247L154,247A4,4 0,0 1,150 243L150,57A4,4 0,0 1,154 53z"
|
||||
android:fillColor="#669DF6"/>
|
||||
<path
|
||||
android:pathData="M156,57L256,57A2,2 0,0 1,258 59L258,241A2,2 0,0 1,256 243L156,243A2,2 0,0 1,154 241L154,59A2,2 0,0 1,156 57z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M170.48,237H160V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M160,237L175,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M241.52,63L252,63L252,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M252,63L237,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#80868B"/>
|
||||
<path
|
||||
android:pathData="M144,53L268,53A4,4 0,0 1,272 57L272,243A4,4 0,0 1,268 247L144,247A4,4 0,0 1,140 243L140,57A4,4 0,0 1,144 53z"
|
||||
android:fillColor="#669DF6"/>
|
||||
<path
|
||||
android:pathData="M146,57L266,57A2,2 0,0 1,268 59L268,241A2,2 0,0 1,266 243L146,243A2,2 0,0 1,144 241L144,59A2,2 0,0 1,146 57z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M160.48,237H150V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M150,237L165,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M251.52,63L262,63L262,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M262,63L247,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#80868B"/>
|
||||
<path
|
||||
android:pathData="M136,53L276,53A4,4 0,0 1,280 57L280,243A4,4 0,0 1,276 247L136,247A4,4 0,0 1,132 243L132,57A4,4 0,0 1,136 53z"
|
||||
android:fillColor="#669DF6"/>
|
||||
<path
|
||||
android:pathData="M138,57L274,57A2,2 0,0 1,276 59L276,241A2,2 0,0 1,274 243L138,243A2,2 0,0 1,136 241L136,59A2,2 0,0 1,138 57z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M152.48,237H142V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M142,237L157,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M259.52,63L270,63L270,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M270,63L255,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#80868B"/>
|
||||
<path
|
||||
android:pathData="M116,53L296,53A4,4 0,0 1,300 57L300,243A4,4 0,0 1,296 247L116,247A4,4 0,0 1,112 243L112,57A4,4 0,0 1,116 53z"
|
||||
android:fillColor="#669DF6"/>
|
||||
<path
|
||||
android:pathData="M118,57L294,57A2,2 0,0 1,296 59L296,241A2,2 0,0 1,294 243L118,243A2,2 0,0 1,116 241L116,59A2,2 0,0 1,118 57z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M132.48,237H122V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M122,237L137,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M279.52,63L290,63L290,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M290,63L275,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#80868B"/>
|
||||
<path
|
||||
android:pathData="M161,53L251,53A4,4 0,0 1,255 57L255,243A4,4 0,0 1,251 247L161,247A4,4 0,0 1,157 243L157,57A4,4 0,0 1,161 53z"
|
||||
android:fillColor="#669DF6"/>
|
||||
<path
|
||||
android:pathData="M163,57L249,57A2,2 0,0 1,251 59L251,241A2,2 0,0 1,249 243L163,243A2,2 0,0 1,161 241L161,59A2,2 0,0 1,163 57z"
|
||||
android:fillColor="#000000"/>
|
||||
<path
|
||||
android:pathData="M177.48,237H167V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M167,237L182,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M234.52,63L245,63L245,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M245,63L230,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#669DF6"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#DADCE0"/>
|
||||
<path
|
||||
android:pathData="M154,53L258,53A4,4 0,0 1,262 57L262,243A4,4 0,0 1,258 247L154,247A4,4 0,0 1,150 243L150,57A4,4 0,0 1,154 53z"
|
||||
android:fillColor="#1A73E8"/>
|
||||
<path
|
||||
android:pathData="M156,57L256,57A2,2 0,0 1,258 59L258,241A2,2 0,0 1,256 243L156,243A2,2 0,0 1,154 241L154,59A2,2 0,0 1,156 57z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M170.48,237H160V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M160,237L175,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M241.52,63L252,63L252,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M252,63L237,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#DADCE0"/>
|
||||
<path
|
||||
android:pathData="M144,53L268,53A4,4 0,0 1,272 57L272,243A4,4 0,0 1,268 247L144,247A4,4 0,0 1,140 243L140,57A4,4 0,0 1,144 53z"
|
||||
android:fillColor="#1A73E8"/>
|
||||
<path
|
||||
android:pathData="M146,57L266,57A2,2 0,0 1,268 59L268,241A2,2 0,0 1,266 243L146,243A2,2 0,0 1,144 241L144,59A2,2 0,0 1,146 57z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M160.48,237H150V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M150,237L165,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M251.52,63L262,63L262,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M262,63L247,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#DADCE0"/>
|
||||
<path
|
||||
android:pathData="M136,53L276,53A4,4 0,0 1,280 57L280,243A4,4 0,0 1,276 247L136,247A4,4 0,0 1,132 243L132,57A4,4 0,0 1,136 53z"
|
||||
android:fillColor="#1A73E8"/>
|
||||
<path
|
||||
android:pathData="M138,57L274,57A2,2 0,0 1,276 59L276,241A2,2 0,0 1,274 243L138,243A2,2 0,0 1,136 241L136,59A2,2 0,0 1,138 57z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M152.48,237H142V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M142,237L157,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M259.52,63L270,63L270,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M270,63L255,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#DADCE0"/>
|
||||
<path
|
||||
android:pathData="M116,53L296,53A4,4 0,0 1,300 57L300,243A4,4 0,0 1,296 247L116,247A4,4 0,0 1,112 243L112,57A4,4 0,0 1,116 53z"
|
||||
android:fillColor="#1A73E8"/>
|
||||
<path
|
||||
android:pathData="M118,57L294,57A2,2 0,0 1,296 59L296,241A2,2 0,0 1,294 243L118,243A2,2 0,0 1,116 241L116,59A2,2 0,0 1,118 57z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M132.48,237H122V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M122,237L137,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M279.52,63L290,63L290,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M290,63L275,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
|
@ -0,0 +1,66 @@
|
|||
<!--
|
||||
~ Copyright (C) 2023 The Android Open Source 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="412dp"
|
||||
android:height="300dp"
|
||||
android:viewportWidth="412"
|
||||
android:viewportHeight="300">
|
||||
<group>
|
||||
<clip-path
|
||||
android:pathData="M0,0h412v300h-412z"/>
|
||||
<path
|
||||
android:pathData="M384.18,300H27.82C12.53,300 0,287.17 0,271.52V28.48C0,12.83 12.53,0 27.82,0H384.29C399.47,0 412,12.83 412,28.48V271.63C412,287.17 399.47,300 384.18,300Z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M305.94,134.54V133.78C307.07,133.74 307.98,132.56 307.98,131.1V116.64C307.98,115.18 307.07,114 305.94,113.96V58.33C305.94,52.62 301.31,48 295.61,48H213.91C211.74,48 209.61,48.55 207.72,49.6C206.84,49.95 205.85,49.96 204.97,49.61H204.94C203.05,48.55 200.92,48 198.75,48H117.33C111.62,48 107,52.63 107,58.33V241.83C107,247.54 111.63,252.16 117.33,252.16H198.95C201.12,252.16 203.25,251.61 205.14,250.56C205.97,250.23 206.89,250.21 207.74,250.5L207.84,250.56C209.73,251.61 213.15,252.16 215.32,252.16H295.61C301.32,252.16 305.94,247.53 305.94,241.83V181.46C307.07,181.42 307.98,180.24 307.98,178.78V151.88C307.98,150.42 307.07,149.24 305.94,149.2V134.54ZM303.56,242.21C303.56,246.39 299.78,249.79 295.61,249.79H117.33C113.15,249.79 109.38,246.39 109.38,242.21V58.33C109.38,54.15 113.16,50.37 117.33,50.37H295.61C299.79,50.37 303.56,54.15 303.56,58.33V242.21Z"
|
||||
android:fillColor="#DADCE0"/>
|
||||
<path
|
||||
android:pathData="M161,53L251,53A4,4 0,0 1,255 57L255,243A4,4 0,0 1,251 247L161,247A4,4 0,0 1,157 243L157,57A4,4 0,0 1,161 53z"
|
||||
android:fillColor="#1A73E8"/>
|
||||
<path
|
||||
android:pathData="M163,57L249,57A2,2 0,0 1,251 59L251,241A2,2 0,0 1,249 243L163,243A2,2 0,0 1,161 241L161,59A2,2 0,0 1,163 57z"
|
||||
android:fillColor="#ffffff"/>
|
||||
<path
|
||||
android:pathData="M177.48,237H167V226.42"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M167,237L182,222"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M234.52,63L245,63L245,73.58"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
<path
|
||||
android:pathData="M245,63L230,78"
|
||||
android:strokeLineJoin="round"
|
||||
android:strokeWidth="4"
|
||||
android:fillColor="#00000000"
|
||||
android:strokeColor="#1A73E8"
|
||||
android:strokeLineCap="round"/>
|
||||
</group>
|
||||
</vector>
|
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
|
@ -17,4 +17,40 @@
|
|||
<resources>
|
||||
<!-- Whether to show Smooth Display feature in Settings Options -->
|
||||
<bool name="config_show_smooth_display">true</bool>
|
||||
|
||||
<!-- App aspect ratio settings screen, user aspect ratio override options. Must be the same
|
||||
length and order as config_userAspectRatioOverrideValues below. -->
|
||||
<string-array name="config_userAspectRatioOverrideEntries" translatable="false">
|
||||
<item>@null</item>
|
||||
<item>@null</item>
|
||||
<item>@null</item>
|
||||
<item>@null</item>
|
||||
</string-array>
|
||||
|
||||
<!-- App aspect ratio settings screen, user aspect ratio override options. Must be the same
|
||||
length and order as config_userAspectRatioOverrideEntries above. The values must
|
||||
correspond to PackageManager.UserMinAspectRatio -->
|
||||
<integer-array name="config_userAspectRatioOverrideValues" translatable="false">
|
||||
<item>0</item> <!-- USER_MIN_ASPECT_RATIO_UNSET -->
|
||||
<item>6</item> <!-- USER_MIN_ASPECT_RATIO_FULLSCREEN -->
|
||||
<item>5</item> <!-- USER_MIN_ASPECT_RATIO_3_2 -->
|
||||
<item>1</item> <!-- USER_MIN_ASPECT_RATIO_SPLIT_SCREEN -->
|
||||
</integer-array>
|
||||
|
||||
<!-- The settings/preference description for each settable device state defined in the array
|
||||
"config_perDeviceStateRotationLockDefaults".
|
||||
The item in position "i" describes the auto-rotation setting for the device state also in
|
||||
position "i" in the array "config_perDeviceStateRotationLockDefaults". -->
|
||||
<string-array name="config_settableAutoRotationDeviceStatesDescriptions">
|
||||
<item>@string/setting_auto_rotate_folded</item>
|
||||
<item>@null</item>
|
||||
<item>@string/setting_auto_rotate_unfolded</item>
|
||||
<item>@null</item>
|
||||
</string-array>
|
||||
|
||||
<!-- The ratio to use when using the two-pane settings layout -->
|
||||
<item name="config_activity_embed_split_ratio" format="float" type="dimen">0.5</item>
|
||||
|
||||
<!-- The smallest value of current width of the window when the split should be used. -->
|
||||
<integer name="config_activity_embed_split_min_cur_dp">600</integer>
|
||||
</resources>
|
||||
|
|
|
@ -0,0 +1,19 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!-- Copyright (C) 2007 The Android Open Source 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.
|
||||
-->
|
||||
<resources xmlns:xliff="urn:oasis:names:tc:xliff:document:1.2">
|
||||
<string name="setting_auto_rotate_folded">Auto-rotate when folded</string>
|
||||
<string name="setting_auto_rotate_unfolded">Auto-rotate when unfolded</string>
|
||||
</resources>
|
Loading…
Add table
Add a link
Reference in a new issue