dre: overlay: Decommonize and restore from DE2117_11.C.15
Change-Id: Ib311d07854c7168668bd5d22d8c78eab74ac5af5
This commit is contained in:
parent
cd0b7722b2
commit
da0d89af57
25 changed files with 858 additions and 155 deletions
|
@ -35,8 +35,10 @@ PRODUCT_ENFORCE_RRO_TARGETS := *
|
|||
PRODUCT_PACKAGES += \
|
||||
CarrierConfigResCommon \
|
||||
FrameworksResTarget \
|
||||
OPlusFrameworksResCommon \
|
||||
OPlusSettingsResCommon \
|
||||
OPlusFrameworksResTarget \
|
||||
OPlusSettingsProviderResTarget \
|
||||
OPlusSettingsResTarget \
|
||||
OPlusSystemUIResTarget \
|
||||
WifiResTarget
|
||||
|
||||
# AAPT
|
||||
|
|
|
@ -1,151 +0,0 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources>
|
||||
|
||||
<!-- Indicate whether closing the lid causes the device to go to sleep and opening
|
||||
it causes the device to wake up.
|
||||
The default is false. -->
|
||||
<bool name="config_lidControlsSleep">true</bool>
|
||||
|
||||
<!-- True if camera app should be pinned via Pinner Service -->
|
||||
<bool name="config_pinnerCameraApp">true</bool>
|
||||
|
||||
<!-- True if home app should be pinned via Pinner Service -->
|
||||
<bool name="config_pinnerHomeApp">true</bool>
|
||||
|
||||
<!-- Indicate whether to allow the device to suspend when the screen is off
|
||||
due to the proximity sensor. This resource should only be set to true
|
||||
if the sensor HAL correctly handles the proximity sensor as a wake-up source.
|
||||
Otherwise, the device may fail to wake out of suspend reliably.
|
||||
The default is false. -->
|
||||
<bool name="config_suspendWhenScreenOffDueToProximity">true</bool>
|
||||
|
||||
<!-- Whether device supports double tap to wake -->
|
||||
<bool name="config_supportDoubleTapWake">true</bool>
|
||||
|
||||
<!-- True if the device supports Sustained Performance Mode-->
|
||||
<bool name="config_sustainedPerformanceModeSupported">true</bool>
|
||||
|
||||
<!-- The default refresh rate for a given device. Change this value to set a higher default
|
||||
refresh rate. If the hardware composer on the device supports display modes with a higher
|
||||
refresh rate than the default value specified here, the framework may use those higher
|
||||
refresh rate modes if an app chooses one by setting preferredDisplayModeId or calling
|
||||
setFrameRate().
|
||||
If a non-zero value is set for config_defaultPeakRefreshRate, then
|
||||
config_defaultRefreshRate may be set to 0, in which case the value set for
|
||||
config_defaultPeakRefreshRate will act as the default frame rate. -->
|
||||
<integer name="config_defaultRefreshRate">0</integer>
|
||||
|
||||
<!-- The default peak refresh rate for a given device. Change this value if you want to prevent
|
||||
the framework from using higher refresh rates, even if display modes with higher refresh
|
||||
rates are available from hardware composer. Only has an effect if the value is
|
||||
non-zero. -->
|
||||
<integer name="config_defaultPeakRefreshRate">90</integer>
|
||||
|
||||
<!-- Vibrator pattern for feedback about a long screen/key press -->
|
||||
<integer-array name="config_longPressVibePattern">
|
||||
<item>0</item>
|
||||
<item>80</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Vibrator pattern for feedback about touching a virtual key -->
|
||||
<integer-array name="config_virtualKeyVibePattern">
|
||||
<item>0</item>
|
||||
<item>80</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Vibrator pattern for a very short but reliable vibration for soft keyboard tap -->
|
||||
<integer-array name="config_keyboardTapVibePattern">
|
||||
<item>80</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- List of biometric sensors on the device, in decreasing strength. Consumed by AuthService
|
||||
when registering authenticators with BiometricService. Format must be ID:Modality:Strength,
|
||||
where: IDs are unique per device, Modality as defined in BiometricAuthenticator.java,
|
||||
and Strength as defined in Authenticators.java -->
|
||||
<string-array name="config_biometric_sensors" translatable="false" >
|
||||
<item>0:2:15</item> <!-- ID0:Fingerprint:Strong -->
|
||||
</string-array>
|
||||
|
||||
<!-- Indicates whether device has a power button fingerprint sensor. -->
|
||||
<bool name="config_is_powerbutton_fps" translatable="false">true</bool>
|
||||
|
||||
<!-- An array of arrays of side fingerprint sensor properties relative to each display.
|
||||
Note: this value is temporary and is expected to be queried directly
|
||||
from the HAL in the future. -->
|
||||
<array name="config_sfps_sensor_props" translatable="false">
|
||||
<item>@array/config_sfps_sensor_props_0</item>
|
||||
</array>
|
||||
|
||||
<array name="config_sfps_sensor_props_0" translatable="false">
|
||||
<item>local:4630946945666696833</item>
|
||||
<item>1080</item>
|
||||
<item>815</item>
|
||||
<item>115</item>
|
||||
</array>
|
||||
|
||||
<!-- Default list of files pinned by the Pinner Service -->
|
||||
<string-array translatable="false" name="config_defaultPinnerServiceFiles">
|
||||
<item>"/system/framework/framework.jar"</item>
|
||||
<item>"/system/framework/services.jar"</item>
|
||||
<item>"/apex/com.android.art/javalib/core-oj.jar"</item>
|
||||
<item>"/apex/com.android.art/javalib/core-libart.jar"</item>
|
||||
<item>"/system_ext/priv-app/SystemUI/SystemUI.apk"</item>
|
||||
<item>"/system/bin/surfaceflinger"</item>
|
||||
<item>"/vendor/lib64/libcamxexternalformatutils.so"</item>
|
||||
<item>"/vendor/lib64/libipebpsstriping.so"</item>
|
||||
<item>"/vendor/lib64/libCB.so"</item>
|
||||
<item>"/vendor/lib64/libgsl.so"</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Control whether the always on display mode is enabled by default. This value will be used
|
||||
during initialization when the setting is still null. -->
|
||||
<bool name="config_dozeAlwaysOnEnabled">false</bool>
|
||||
|
||||
<!-- Flag specifying whether WFC over IMS should be available for carrier: independent of
|
||||
carrier provisioning. If false: hard disabled. If true: then depends on carrier
|
||||
provisioning, availability etc -->
|
||||
<bool name="config_carrier_wfc_ims_available">true</bool>
|
||||
|
||||
<!-- Whether the new Auto Selection Network UI should be shown -->
|
||||
<bool name="config_enableNewAutoSelectNetworkUI">true</bool>
|
||||
|
||||
<!-- An array of device capabilities defined by GSMA SGP.22 v2.0.
|
||||
The first item is the capability name that the device supports. The second item is the
|
||||
major version. The minor and revision versions are default to 0s.
|
||||
The device capabilities and their definition in the spec are:
|
||||
gsm : gsmSupportedRelease
|
||||
utran : utranSupportedRelease
|
||||
cdma1x : cdma2000onexSupportedRelease
|
||||
hrpd : cdma2000hrpdSupportedRelease
|
||||
ehrpd : cdma2000ehrpdSupportedRelease
|
||||
eutran : eutranSupportedRelease
|
||||
nfc : contactlessSupportedRelease
|
||||
crl : rspCrlSupportedVersion
|
||||
nrepc : nrEpcSupportedRelease
|
||||
nr5gc : nr5gcSupportedRelease
|
||||
eutran5gc : eutran5gcSupportedRelease
|
||||
-->
|
||||
<string-array name="config_telephonyEuiccDeviceCapabilities">
|
||||
<item>gsm,11</item>
|
||||
<item>utran,11</item>
|
||||
<item>cdma1x,1</item>
|
||||
<item>hrpd,3</item>
|
||||
<item>ehrpd,12</item>
|
||||
<item>eutran,11</item>
|
||||
<item>nfc,1</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Safe headphone volume index. When music stream volume is below this index
|
||||
the SPL on headphone output is compliant to EN 60950 requirements for portable music
|
||||
players. -->
|
||||
<integer name="config_safe_media_volume_index">18</integer>
|
||||
|
||||
<!-- Safe USB headset gain. This value is used to ensure that the SPL on the USB
|
||||
headset output is compliant to EN 60950 requirements for portable music players. -->
|
||||
<integer name="config_safe_media_volume_usb_mB">-1650</integer>
|
||||
|
||||
</resources>
|
|
@ -4,6 +4,6 @@
|
|||
//
|
||||
|
||||
runtime_resource_overlay {
|
||||
name: "OPlusFrameworksResCommon",
|
||||
name: "OPlusFrameworksResTarget",
|
||||
device_specific: true,
|
||||
}
|
521
overlay/OPlusFrameworksResTarget/res/values/config.xml
Normal file
521
overlay/OPlusFrameworksResTarget/res/values/config.xml
Normal file
|
@ -0,0 +1,521 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources>
|
||||
|
||||
<!-- Flag indicating whether the we should enable the automatic brightness in Settings.
|
||||
Software implementation will be used if config_hardware_auto_brightness_available is not set -->
|
||||
<bool name="config_automatic_brightness_available">true</bool>
|
||||
|
||||
<!-- Array of hysteresis constraint values for brightening, represented as tenths of a
|
||||
percent. The length of this array is assumed to be one greater than
|
||||
config_ambientThresholdLevels. The brightening threshold is calculated as
|
||||
lux * (1.0f + CONSTRAINT_VALUE). When the current lux is higher than this threshold,
|
||||
the screen brightness is recalculated. See the config_ambientThresholdLevels
|
||||
description for how the constraint value is chosen. -->
|
||||
<integer-array name="config_ambientBrighteningThresholds">
|
||||
<item>600</item>
|
||||
<item>300</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Array of hysteresis constraint values for darkening, represented as tenths of a
|
||||
percent. The length of this array is assumed to be one greater than
|
||||
config_ambientThresholdLevels. The darkening threshold is calculated as
|
||||
lux * (1.0f - CONSTRAINT_VALUE). When the current lux is lower than this threshold,
|
||||
the screen brightness is recalculated. See the config_ambientThresholdLevels
|
||||
description for how the constraint value is chosen. -->
|
||||
<integer-array name="config_ambientDarkeningThresholds">
|
||||
<item>600</item>
|
||||
<item>300</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Array of screen brightness threshold values. This is used for determining hysteresis
|
||||
constraint values by calculating the index to use for lookup and then setting the
|
||||
constraint value to the corresponding value of the array. The new brightening hysteresis
|
||||
constraint value is the n-th element of config_screenBrighteningThresholds, and the new
|
||||
darkening hysteresis constraint value is the n-th element of
|
||||
config_screenDarkeningThresholds.
|
||||
The (zero-based) index is calculated as follows: (MAX is the largest index of the array)
|
||||
condition calculated index
|
||||
value < level[0] 0
|
||||
level[n] <= value < level[n+1] n+1
|
||||
level[MAX] <= value MAX+1 -->
|
||||
<integer-array name="config_ambientThresholdLevels">
|
||||
<item>10</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Array of hysteresis constraint values for brightening, represented as tenths of a
|
||||
percent. The length of this array is assumed to be one greater than
|
||||
config_screenThresholdLevels. The brightening threshold is calculated as
|
||||
screenBrightness * (1.0f + CONSTRAINT_VALUE). When the new screen brightness is higher
|
||||
than this threshold, it is applied. See the config_screenThresholdLevels description for
|
||||
how the constraint value is chosen. -->
|
||||
<integer-array name="config_screenBrighteningThresholds">
|
||||
<item>0</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Array of hysteresis constraint values for darkening, represented as tenths of a
|
||||
percent. The length of this array is assumed to be one greater than
|
||||
config_screenThresholdLevels. The darkening threshold is calculated as
|
||||
screenBrightness * (1.0f - CONSTRAINT_VALUE). When the new screen brightness is lower than
|
||||
this threshold, it is applied. See the config_screenThresholdLevels description for how
|
||||
the constraint value is chosen. -->
|
||||
<array name="config_screenDarkeningThresholds">
|
||||
<item>0</item>
|
||||
</array>
|
||||
|
||||
<!-- Array of light sensor lux values to define our levels for auto backlight brightness support.
|
||||
The N entries of this array define N + 1 control points as follows:
|
||||
(1-based arrays)
|
||||
Point 1: (0, value[1]): lux <= 0
|
||||
Point 2: (level[1], value[2]): 0 < lux <= level[1]
|
||||
Point 3: (level[2], value[3]): level[2] < lux <= level[3]
|
||||
...
|
||||
Point N+1: (level[N], value[N+1]): level[N] < lux
|
||||
The control points must be strictly increasing. Each control point
|
||||
corresponds to an entry in the brightness backlight values arrays.
|
||||
For example, if lux == level[1] (first element of the levels array)
|
||||
then the brightness will be determined by value[2] (second element
|
||||
of the brightness values array).
|
||||
Spline interpolation is used to determine the auto-brightness
|
||||
backlight values for lux levels between these control points.
|
||||
Must be overridden in platform specific overlays -->
|
||||
<integer-array name="config_autoBrightnessLevels">
|
||||
<item>1</item>
|
||||
<item>4</item>
|
||||
<item>12</item>
|
||||
<item>20</item>
|
||||
<item>28</item>
|
||||
<item>47</item>
|
||||
<item>63</item>
|
||||
<item>86</item>
|
||||
<item>150</item>
|
||||
<item>160</item>
|
||||
<item>220</item>
|
||||
<item>270</item>
|
||||
<item>360</item>
|
||||
<item>420</item>
|
||||
<item>510</item>
|
||||
<item>620</item>
|
||||
<item>1000</item>
|
||||
<item>2000</item>
|
||||
<item>3100</item>
|
||||
<item>5000</item>
|
||||
<item>8000</item>
|
||||
<item>12000</item>
|
||||
<item>16000</item>
|
||||
<item>20000</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Array of desired screen brightness in nits corresponding to the lux values
|
||||
in the config_autoBrightnessLevels array. As with config_screenBrightnessMinimumNits and
|
||||
config_screenBrightnessMaximumNits, the display brightness is defined as the measured
|
||||
brightness of an all-white image.
|
||||
If this is defined then:
|
||||
- config_autoBrightnessLcdBacklightValues should not be defined
|
||||
- config_screenBrightnessNits must be defined
|
||||
- config_screenBrightnessBacklight must be defined
|
||||
This array should have size one greater than the size of the config_autoBrightnessLevels
|
||||
array. The brightness values must be non-negative and non-decreasing. This must be
|
||||
overridden in platform specific overlays -->
|
||||
<array name="config_autoBrightnessDisplayValuesNits">
|
||||
<item>0.8487</item>
|
||||
<item>3.0394</item>
|
||||
<item>15.2619</item>
|
||||
<item>30.2619</item>
|
||||
<item>46.671</item>
|
||||
<item>65.95</item>
|
||||
<item>80.46</item>
|
||||
<item>84.38</item>
|
||||
<item>89.51</item>
|
||||
<item>100.34</item>
|
||||
<item>102.21</item>
|
||||
<item>109.48</item>
|
||||
<item>114.19</item>
|
||||
<item>123.86</item>
|
||||
<item>129.18</item>
|
||||
<item>138.07</item>
|
||||
<item>145.62</item>
|
||||
<item>168.84</item>
|
||||
<item>234.9</item>
|
||||
<item>280</item>
|
||||
<item>320</item>
|
||||
<item>360</item>
|
||||
<item>405</item>
|
||||
<item>450</item>
|
||||
<item>500</item>
|
||||
</array>
|
||||
|
||||
<!-- An array of floats describing the screen brightness in nits corresponding to the backlight
|
||||
values in the config_screenBrightnessBacklight array. On OLED displays these values
|
||||
should be measured with an all white image while the display is in the fully on state.
|
||||
Note that this value should *not* reflect the maximum brightness value for any high
|
||||
brightness modes but only the maximum brightness value obtainable in a sustainable manner.
|
||||
This array should be equal in size to config_screenBrightnessBacklight -->
|
||||
<array name="config_screenBrightnessNits">
|
||||
<item>0.0307</item>
|
||||
<item>7.037</item>
|
||||
<item>15.379</item>
|
||||
<item>23.5493</item>
|
||||
<item>31.7799</item>
|
||||
<item>39.8811</item>
|
||||
<item>48.2243</item>
|
||||
<item>56.2296</item>
|
||||
<item>64.2022</item>
|
||||
<item>71.9943</item>
|
||||
<item>80.5941</item>
|
||||
<item>88.7333</item>
|
||||
<item>96.9831</item>
|
||||
<item>105.0798</item>
|
||||
<item>113.1635</item>
|
||||
<item>121.1973</item>
|
||||
<item>129.2246</item>
|
||||
<item>137.3341</item>
|
||||
<item>145.32</item>
|
||||
<item>153.267</item>
|
||||
<item>161.1661</item>
|
||||
<item>169.0299</item>
|
||||
<item>177.0172</item>
|
||||
<item>184.8931</item>
|
||||
<item>192.6803</item>
|
||||
<item>200.4254</item>
|
||||
<item>208.2067</item>
|
||||
<item>216.0382</item>
|
||||
<item>223.7154</item>
|
||||
<item>231.3969</item>
|
||||
<item>239.0252</item>
|
||||
<item>244.7239</item>
|
||||
<item>252.3076</item>
|
||||
<item>260.0522</item>
|
||||
<item>267.6324</item>
|
||||
<item>275.1667</item>
|
||||
<item>282.6581</item>
|
||||
<item>290.3193</item>
|
||||
<item>297.9373</item>
|
||||
<item>305.571</item>
|
||||
<item>313.0667</item>
|
||||
<item>320.6049</item>
|
||||
<item>328.6051</item>
|
||||
<item>335.7412</item>
|
||||
<item>343.1922</item>
|
||||
<item>350.6566</item>
|
||||
<item>358.1323</item>
|
||||
<item>365.529</item>
|
||||
<item>373.0114</item>
|
||||
<item>380.4509</item>
|
||||
<item>387.8658</item>
|
||||
<item>395.3285</item>
|
||||
<item>402.6951</item>
|
||||
<item>410.0712</item>
|
||||
<item>417.4442</item>
|
||||
<item>424.8042</item>
|
||||
<item>432.0771</item>
|
||||
<item>439.3496</item>
|
||||
<item>446.6545</item>
|
||||
<item>454.0463</item>
|
||||
<item>461.4097</item>
|
||||
<item>468.5552</item>
|
||||
<item>473.9042</item>
|
||||
<item>482.879</item>
|
||||
<item>490.2271</item>
|
||||
</array>
|
||||
|
||||
<!-- An array describing the screen's backlight values corresponding to the brightness
|
||||
values in the config_screenBrightnessNits array.
|
||||
This array should be equal in size to config_screenBrightnessBacklight. -->
|
||||
<integer-array name="config_screenBrightnessBacklight">
|
||||
<item>@null</item>
|
||||
<item>4</item>
|
||||
<item>8</item>
|
||||
<item>12</item>
|
||||
<item>16</item>
|
||||
<item>20</item>
|
||||
<item>24</item>
|
||||
<item>28</item>
|
||||
<item>32</item>
|
||||
<item>36</item>
|
||||
<item>40</item>
|
||||
<item>44</item>
|
||||
<item>48</item>
|
||||
<item>52</item>
|
||||
<item>56</item>
|
||||
<item>60</item>
|
||||
<item>64</item>
|
||||
<item>68</item>
|
||||
<item>72</item>
|
||||
<item>76</item>
|
||||
<item>80</item>
|
||||
<item>84</item>
|
||||
<item>88</item>
|
||||
<item>92</item>
|
||||
<item>96</item>
|
||||
<item>100</item>
|
||||
<item>104</item>
|
||||
<item>108</item>
|
||||
<item>112</item>
|
||||
<item>116</item>
|
||||
<item>120</item>
|
||||
<item>123</item>
|
||||
<item>127</item>
|
||||
<item>131</item>
|
||||
<item>135</item>
|
||||
<item>139</item>
|
||||
<item>143</item>
|
||||
<item>147</item>
|
||||
<item>151</item>
|
||||
<item>155</item>
|
||||
<item>159</item>
|
||||
<item>163</item>
|
||||
<item>167</item>
|
||||
<item>171</item>
|
||||
<item>175</item>
|
||||
<item>179</item>
|
||||
<item>183</item>
|
||||
<item>187</item>
|
||||
<item>191</item>
|
||||
<item>195</item>
|
||||
<item>199</item>
|
||||
<item>203</item>
|
||||
<item>207</item>
|
||||
<item>211</item>
|
||||
<item>215</item>
|
||||
<item>219</item>
|
||||
<item>223</item>
|
||||
<item>227</item>
|
||||
<item>231</item>
|
||||
<item>235</item>
|
||||
<item>239</item>
|
||||
<item>243</item>
|
||||
<item>246</item>
|
||||
<item>251</item>
|
||||
<item>255</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Screen brightness used to dim the screen when the user activity
|
||||
timeout expires. May be less than the minimum allowed brightness setting
|
||||
that can be set by the user. -->
|
||||
<integer name="config_screenBrightnessDim">6</integer>
|
||||
|
||||
<!-- Default screen brightness setting set.
|
||||
-2 is invalid so setting will resort to int value specified above.
|
||||
Must be in the range specified by minimum and maximum. -->
|
||||
<item type="dimen" name="config_screenBrightnessSettingDefaultFloat">0.45882353</item>
|
||||
|
||||
<!-- Maximum screen brightness allowed by the power manager.
|
||||
-2 is invalid so setting will resort to int value specified above.
|
||||
Set this to 1.0 for maximum brightness range.
|
||||
The user is forbidden from setting the brightness above this level. -->
|
||||
<item type="dimen" name="config_screenBrightnessSettingMaximumFloat">1.0</item>
|
||||
|
||||
<!-- Minimum screen brightness setting allowed by power manager.
|
||||
-2 is invalid so setting will resort to int value specified above.
|
||||
Set this to 0.0 to allow screen to go to minimal brightness.
|
||||
The user is forbidden from setting the brightness below this level. -->
|
||||
<item type="dimen" name="config_screenBrightnessSettingMinimumFloat">0.001954079</item>
|
||||
|
||||
<!-- Stability requirements in milliseconds for accepting a new brightness level. This is used
|
||||
for debouncing the light sensor. Different constants are used to debounce the light sensor
|
||||
when adapting to brighter or darker environments. This parameter controls how quickly
|
||||
brightness changes occur in response to an observed change in light level that exceeds the
|
||||
hysteresis threshold. -->
|
||||
<integer name="config_autoBrightnessBrighteningLightDebounce">1500</integer>
|
||||
<integer name="config_autoBrightnessDarkeningLightDebounce">1500</integer>
|
||||
|
||||
<!-- Light sensor event rate in milliseconds for automatic brightness control. -->
|
||||
<integer name="config_autoBrightnessLightSensorRate">200</integer>
|
||||
|
||||
<!-- The bounding path of the cutout region of the main built-in display.
|
||||
Must either be empty if there is no cutout region, or a string that is parsable by
|
||||
{@link android.util.PathParser}.
|
||||
The path is assumed to be specified in display coordinates with pixel units and in
|
||||
the display's native orientation, with the origin of the coordinate system at the
|
||||
center top of the display.
|
||||
To facilitate writing device-independent emulation overlays, the marker `@dp` can be
|
||||
appended after the path string to interpret coordinates in dp instead of px units.
|
||||
Note that a physical cutout should be configured in pixels for the best results.
|
||||
-->
|
||||
<string translatable="false" name="config_mainBuiltInDisplayCutout">
|
||||
M 99,68.5
|
||||
M 65,68.5
|
||||
A 34,34 0 1,0 133,68.5
|
||||
A 34,34 0 1,0 65,68.5
|
||||
Z
|
||||
@left
|
||||
</string>
|
||||
|
||||
<!-- Like config_mainBuiltInDisplayCutout, but this path is used to report the
|
||||
one single bounding rect per device edge to the app via
|
||||
{@link DisplayCutout#getBoundingRect}. Note that this path should try to match the visual
|
||||
appearance of the cutout as much as possible, and may be smaller than
|
||||
config_mainBuiltInDisplayCutout
|
||||
-->
|
||||
<string translatable="false" name="config_mainBuiltInDisplayCutoutRectApproximation">
|
||||
M 0,0
|
||||
H 164
|
||||
V 127
|
||||
H 0
|
||||
Z
|
||||
@left
|
||||
</string>
|
||||
|
||||
<!-- Whether the display cutout region of the main built-in display should be forced to
|
||||
black in software (to avoid aliasing or emulate a cutout that is not physically existent).
|
||||
-->
|
||||
<bool name="config_fillMainBuiltInDisplayCutout">true</bool>
|
||||
|
||||
<!-- Set to true to add links to Cell Broadcast app from Settings and MMS app. -->
|
||||
<bool name="config_cellBroadcastAppLinks">true</bool>
|
||||
|
||||
<!-- Indicate whether closing the lid causes the device to go to sleep and opening
|
||||
it causes the device to wake up.
|
||||
The default is false. -->
|
||||
<bool name="config_lidControlsSleep">true</bool>
|
||||
|
||||
<!-- True if camera app should be pinned via Pinner Service -->
|
||||
<bool name="config_pinnerCameraApp">true</bool>
|
||||
|
||||
<!-- True if home app should be pinned via Pinner Service -->
|
||||
<bool name="config_pinnerHomeApp">true</bool>
|
||||
|
||||
<!-- Indicate whether to allow the device to suspend when the screen is off
|
||||
due to the proximity sensor. This resource should only be set to true
|
||||
if the sensor HAL correctly handles the proximity sensor as a wake-up source.
|
||||
Otherwise, the device may fail to wake out of suspend reliably.
|
||||
The default is false. -->
|
||||
<bool name="config_suspendWhenScreenOffDueToProximity">true</bool>
|
||||
|
||||
<!-- Whether device supports double tap to wake -->
|
||||
<bool name="config_supportDoubleTapWake">true</bool>
|
||||
|
||||
<!-- True if the device supports Sustained Performance Mode-->
|
||||
<bool name="config_sustainedPerformanceModeSupported">true</bool>
|
||||
|
||||
<!-- Power Management: Specifies whether to decouple the interactive state of the
|
||||
device from the display on/off state.
|
||||
When false, setInteractive(..., true) will be called before the display is turned on
|
||||
and setInteractive(..., false) will be called after the display is turned off.
|
||||
This mode provides best compatibility for devices that expect the interactive
|
||||
state to be tied to the display state.
|
||||
When true, setInteractive(...) will be called independently of whether the display
|
||||
is being turned on or off. This mode enables the power manager to reduce
|
||||
clocks and disable the touch controller while the display is on.
|
||||
This resource should be set to "true" when a doze component has been specified
|
||||
to maximize power savings but not all devices support it.
|
||||
Refer to power.h for details.
|
||||
-->
|
||||
<bool name="config_powerDecoupleInteractiveModeFromDisplay">false</bool>
|
||||
|
||||
<!-- The default refresh rate for a given device. Change this value to set a higher default
|
||||
refresh rate. If the hardware composer on the device supports display modes with a higher
|
||||
refresh rate than the default value specified here, the framework may use those higher
|
||||
refresh rate modes if an app chooses one by setting preferredDisplayModeId or calling
|
||||
setFrameRate().
|
||||
If a non-zero value is set for config_defaultPeakRefreshRate, then
|
||||
config_defaultRefreshRate may be set to 0, in which case the value set for
|
||||
config_defaultPeakRefreshRate will act as the default frame rate. -->
|
||||
<integer name="config_defaultRefreshRate">0</integer>
|
||||
|
||||
<!-- The default peak refresh rate for a given device. Change this value if you want to prevent
|
||||
the framework from using higher refresh rates, even if display modes with higher refresh
|
||||
rates are available from hardware composer. Only has an effect if the value is
|
||||
non-zero. -->
|
||||
<integer name="config_defaultPeakRefreshRate">90</integer>
|
||||
|
||||
<!-- Vibrator pattern for feedback about a long screen/key press -->
|
||||
<integer-array name="config_longPressVibePattern">
|
||||
<item>0</item>
|
||||
<item>80</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Vibrator pattern for feedback about touching a virtual key -->
|
||||
<integer-array name="config_virtualKeyVibePattern">
|
||||
<item>0</item>
|
||||
<item>80</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Vibrator pattern for a very short but reliable vibration for soft keyboard tap -->
|
||||
<integer-array name="config_keyboardTapVibePattern">
|
||||
<item>80</item>
|
||||
</integer-array>
|
||||
|
||||
<!-- Indicates whether device has a power button fingerprint sensor. -->
|
||||
<bool name="config_is_powerbutton_fps" translatable="false">true</bool>
|
||||
|
||||
<!-- An array of arrays of side fingerprint sensor properties relative to each display.
|
||||
Note: this value is temporary and is expected to be queried directly
|
||||
from the HAL in the future. -->
|
||||
<array name="config_sfps_sensor_props" translatable="false">
|
||||
<item>@array/config_sfps_sensor_props_0</item>
|
||||
</array>
|
||||
|
||||
<array name="config_sfps_sensor_props_0" translatable="false">
|
||||
<item>local:4630946945666696833</item>
|
||||
<item>1080</item>
|
||||
<item>815</item>
|
||||
<item>115</item>
|
||||
</array>
|
||||
|
||||
<!-- Default list of files pinned by the Pinner Service -->
|
||||
<string-array translatable="false" name="config_defaultPinnerServiceFiles">
|
||||
<item>"/system/framework/framework.jar"</item>
|
||||
<item>"/system/framework/services.jar"</item>
|
||||
<item>"/apex/com.android.art/javalib/core-oj.jar"</item>
|
||||
<item>"/apex/com.android.art/javalib/core-libart.jar"</item>
|
||||
<item>"/system_ext/priv-app/SystemUI/SystemUI.apk"</item>
|
||||
<item>"/system/bin/surfaceflinger"</item>
|
||||
<item>"/vendor/lib64/libcamxexternalformatutils.so"</item>
|
||||
<item>"/vendor/lib64/libipebpsstriping.so"</item>
|
||||
<item>"/vendor/lib64/libCB.so"</item>
|
||||
<item>"/vendor/lib64/libgsl.so"</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Control whether the always on display mode is enabled by default. This value will be used
|
||||
during initialization when the setting is still null. -->
|
||||
<bool name="config_dozeAlwaysOnEnabled">false</bool>
|
||||
|
||||
<!-- Flag specifying whether WFC over IMS should be available for carrier: independent of
|
||||
carrier provisioning. If false: hard disabled. If true: then depends on carrier
|
||||
provisioning, availability etc -->
|
||||
<bool name="config_carrier_wfc_ims_available">true</bool>
|
||||
|
||||
<!-- Whether the new Auto Selection Network UI should be shown -->
|
||||
<bool name="config_enableNewAutoSelectNetworkUI">true</bool>
|
||||
|
||||
<!-- An array of device capabilities defined by GSMA SGP.22 v2.0.
|
||||
The first item is the capability name that the device supports. The second item is the
|
||||
major version. The minor and revision versions are default to 0s.
|
||||
The device capabilities and their definition in the spec are:
|
||||
gsm : gsmSupportedRelease
|
||||
utran : utranSupportedRelease
|
||||
cdma1x : cdma2000onexSupportedRelease
|
||||
hrpd : cdma2000hrpdSupportedRelease
|
||||
ehrpd : cdma2000ehrpdSupportedRelease
|
||||
eutran : eutranSupportedRelease
|
||||
nfc : contactlessSupportedRelease
|
||||
crl : rspCrlSupportedVersion
|
||||
nrepc : nrEpcSupportedRelease
|
||||
nr5gc : nr5gcSupportedRelease
|
||||
eutran5gc : eutran5gcSupportedRelease
|
||||
-->
|
||||
<string-array name="config_telephonyEuiccDeviceCapabilities">
|
||||
<item>gsm,11</item>
|
||||
<item>utran,11</item>
|
||||
<item>cdma1x,1</item>
|
||||
<item>hrpd,3</item>
|
||||
<item>ehrpd,12</item>
|
||||
<item>eutran,11</item>
|
||||
<item>nfc,1</item>
|
||||
</string-array>
|
||||
|
||||
<!-- Safe headphone volume index. When music stream volume is below this index
|
||||
the SPL on headphone output is compliant to EN 60950 requirements for portable music
|
||||
players. -->
|
||||
<integer name="config_safe_media_volume_index">18</integer>
|
||||
|
||||
<!-- Safe USB headset gain. This value is used to ensure that the SPL on the USB
|
||||
headset output is compliant to EN 60950 requirements for portable music players. -->
|
||||
<integer name="config_safe_media_volume_usb_mB">-1650</integer>
|
||||
|
||||
</resources>
|
28
overlay/OPlusFrameworksResTarget/res/values/dimens.xml
Normal file
28
overlay/OPlusFrameworksResTarget/res/values/dimens.xml
Normal file
|
@ -0,0 +1,28 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/* //device/apps/common/assets/res/any/dimens.xml
|
||||
**
|
||||
** Copyright 2006, 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>
|
||||
<!-- Height of the status bar.
|
||||
Do not read this dimen directly. Use {@link SystemBarUtils#getStatusBarHeight} instead.
|
||||
-->
|
||||
<dimen name="status_bar_height">127px</dimen>
|
||||
|
||||
<!-- Default radius of the software rounded corners. -->
|
||||
<dimen name="rounded_corner_radius">20dp</dimen>
|
||||
</resources>
|
110
overlay/OPlusFrameworksResTarget/res/xml/power_profile.xml
Normal file
110
overlay/OPlusFrameworksResTarget/res/xml/power_profile.xml
Normal file
|
@ -0,0 +1,110 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<device name="Android">
|
||||
<item name="none">0</item>
|
||||
<item name="ambient on">35</item>
|
||||
<item name="screen.on">100</item>
|
||||
<item name="screen.full">330</item>
|
||||
<item name="bluetooth.active">25.6</item>
|
||||
<item name="bluetooth.on">1.7</item>
|
||||
<item name="wifi.on">1.8</item>
|
||||
<item name="wifi.active">115</item>
|
||||
<item name="wifi.scan">70</item>
|
||||
<item name="audio">0</item>
|
||||
<item name="video">0</item>
|
||||
<item name="camera.flashlight">90</item>
|
||||
<item name="camera.avg">532</item>
|
||||
<item name="gps.on">75</item>
|
||||
<item name="dsp.audio">16</item>
|
||||
<item name="dsp.video">41</item>
|
||||
<item name="bluetooth.controller.idle">1.7</item>
|
||||
<item name="bluetooth.controller.rx">76</item>
|
||||
<item name="bluetooth.controller.tx">176</item>
|
||||
<item name="bluetooth.controller.voltage">3300</item>
|
||||
<item name="radio.active">191.5</item>
|
||||
<item name="radio.scanning">143.5</item>
|
||||
<array name="radio.on">
|
||||
<value>1</value>
|
||||
</array>
|
||||
<item name="modem.controller.idle">1</item>
|
||||
<item name="modem.controller.rx">200.8</item>
|
||||
<array name="modem.controller.tx">
|
||||
<value>176.4</value>
|
||||
<value>246.8</value>
|
||||
<value>323.3</value>
|
||||
<value>484.6</value>
|
||||
<value>646.8</value>
|
||||
</array>
|
||||
<item name="modem.controller.voltage">800
|
||||
</item>
|
||||
<array name="cpu.clusters.cores">
|
||||
<value>4</value>
|
||||
<value>2</value>
|
||||
</array>
|
||||
<array name="cpu.core_speeds.cluster0">
|
||||
<value>300000</value>
|
||||
<value>576000</value>
|
||||
<value>710400</value>
|
||||
<value>940800</value>
|
||||
<value>1190400</value>
|
||||
<value>1324800</value>
|
||||
<value>1478400</value>
|
||||
<value>1574400</value>
|
||||
<value>1708800</value>
|
||||
<value>1804800</value>
|
||||
</array>
|
||||
<array name="cpu.core_speeds.cluster1">
|
||||
<value>768000</value>
|
||||
<value>979200</value>
|
||||
<value>1017600</value>
|
||||
<value>1248000</value>
|
||||
<value>1401600</value>
|
||||
<value>1536000</value>
|
||||
<value>1651200</value>
|
||||
<value>1804800</value>
|
||||
<value>2035200</value>
|
||||
</array>
|
||||
<array name="cpu.core_power.cluster0">
|
||||
<value>30</value>
|
||||
<value>32</value>
|
||||
<value>34</value>
|
||||
<value>40</value>
|
||||
<value>47</value>
|
||||
<value>56</value>
|
||||
<value>60</value>
|
||||
<value>62</value>
|
||||
<value>67</value>
|
||||
<value>72</value>
|
||||
</array>
|
||||
<array name="cpu.core_power.cluster1">
|
||||
<value>62</value>
|
||||
<value>79</value>
|
||||
<value>87</value>
|
||||
<value>100</value>
|
||||
<value>114</value>
|
||||
<value>136</value>
|
||||
<value>151</value>
|
||||
<value>180</value>
|
||||
<value>234</value>
|
||||
</array>
|
||||
<item name="cpu.awake">15.68</item>
|
||||
<item name="cpu.idle">6.5</item>
|
||||
<array name="memory.bandwidths">
|
||||
<value>22.7</value>
|
||||
</array>
|
||||
<item name="battery.capacity">5000</item>
|
||||
<item name="wifi.controller.idle">1.4</item>
|
||||
<item name="wifi.controller.rx">177</item>
|
||||
<item name="wifi.controller.tx">269</item>
|
||||
<array name="wifi.controller.tx_levels"/>
|
||||
<item name="wifi.controller.voltage">3300</item>
|
||||
<array name="wifi.batchedscan">
|
||||
<value>.0002</value>
|
||||
<value>.002</value>
|
||||
<value>.02</value>
|
||||
<value>.2</value>
|
||||
<value>2</value>
|
||||
</array>
|
||||
<allow-in-power-save package="com.google.android.gms"/>
|
||||
<allow-in-power-save package="com.oppo.market"/>
|
||||
<allow-in-data-usage-save package="com.google.android.gms"/>
|
||||
</device>
|
9
overlay/OPlusSettingsProviderResTarget/Android.bp
Normal file
9
overlay/OPlusSettingsProviderResTarget/Android.bp
Normal file
|
@ -0,0 +1,9 @@
|
|||
//
|
||||
// Copyright (C) 2022 The LineageOS Project
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
runtime_resource_overlay {
|
||||
name: "OPlusSettingsProviderResTarget",
|
||||
device_specific: true,
|
||||
}
|
13
overlay/OPlusSettingsProviderResTarget/AndroidManifest.xml
Normal file
13
overlay/OPlusSettingsProviderResTarget/AndroidManifest.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.providers.settings.overlay.oplus.target">
|
||||
|
||||
<overlay
|
||||
android:isStatic="true"
|
||||
android:priority="350"
|
||||
android:targetPackage="com.android.providers.settings" />
|
||||
</manifest>
|
|
@ -0,0 +1,11 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<resources>
|
||||
|
||||
<!-- Default for Settings.Global.DEVICE_NAME $1=MODEL-->
|
||||
<string name="def_device_name_simple" translatable="false">OnePlus Nord N200</string>
|
||||
|
||||
</resources>
|
|
@ -4,6 +4,6 @@
|
|||
//
|
||||
|
||||
runtime_resource_overlay {
|
||||
name: "OPlusSettingsResCommon",
|
||||
name: "OPlusSettingsResTarget",
|
||||
device_specific: true,
|
||||
}
|
9
overlay/OPlusSystemUIResTarget/Android.bp
Normal file
9
overlay/OPlusSystemUIResTarget/Android.bp
Normal file
|
@ -0,0 +1,9 @@
|
|||
//
|
||||
// Copyright (C) 2022 The LineageOS Project
|
||||
// SPDX-License-Identifier: Apache-2.0
|
||||
//
|
||||
|
||||
runtime_resource_overlay {
|
||||
name: "OPlusSystemUIResTarget",
|
||||
device_specific: true,
|
||||
}
|
13
overlay/OPlusSystemUIResTarget/AndroidManifest.xml
Normal file
13
overlay/OPlusSystemUIResTarget/AndroidManifest.xml
Normal file
|
@ -0,0 +1,13 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
Copyright (C) 2022 The LineageOS Project
|
||||
SPDX-License-Identifier: Apache-2.0
|
||||
-->
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="com.android.systemui.overlay.oplus.target">
|
||||
|
||||
<overlay
|
||||
android:isStatic="true"
|
||||
android:priority="350"
|
||||
android:targetPackage="com.android.systemui" />
|
||||
</manifest>
|
|
@ -0,0 +1,14 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="166px"
|
||||
android:height="166px"
|
||||
android:viewportWidth="166"
|
||||
android:viewportHeight="166">
|
||||
|
||||
<path
|
||||
android:fillColor="#ff000000"
|
||||
android:pathData="M115,0c-8.78.67-17.59,1-26.32,2.08C68.09,4.59,48.58,10,32.35,23.92,14.87,39,6.72,58.77,3.14,80.81,1.78,89.16,1.56,97.69.79,106.13.58,108.43.27,110.71,0,113V0Z"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1.0"
|
||||
android:fillType="evenOdd" />
|
||||
|
||||
</vector>
|
|
@ -0,0 +1,14 @@
|
|||
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
android:width="170px"
|
||||
android:height="170px"
|
||||
android:viewportWidth="170"
|
||||
android:viewportHeight="170">
|
||||
|
||||
<path
|
||||
android:fillColor="#ff000000"
|
||||
android:pathData="M113,0c-8.27.67-16.58,1.06-24.81,2.06-24.74,3-47.31,10.69-64.29,30.32C11.68,46.49,6,63.35,3.15,81.31,1.82,89.67,1.58,98.19.82,106.64.6,109.1.28,111.55,0,114V0Z"
|
||||
android:strokeColor="#00000000"
|
||||
android:strokeWidth="1.0"
|
||||
android:fillType="evenOdd" />
|
||||
|
||||
</vector>
|
27
overlay/OPlusSystemUIResTarget/res/values-land/dimens.xml
Normal file
27
overlay/OPlusSystemUIResTarget/res/values-land/dimens.xml
Normal file
|
@ -0,0 +1,27 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
* Copyright (c) 2011, 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>
|
||||
<!-- the padding on the start of the statusbar -->
|
||||
<dimen name="status_bar_padding_start">48px</dimen>
|
||||
|
||||
<!-- the padding on the end of the statusbar -->
|
||||
<dimen name="status_bar_padding_end">65px</dimen>
|
||||
|
||||
<!-- the padding on the top of the statusbar (usually 0) -->
|
||||
<dimen name="status_bar_padding_top">0px</dimen>
|
||||
</resources>
|
25
overlay/OPlusSystemUIResTarget/res/values/config.xml
Normal file
25
overlay/OPlusSystemUIResTarget/res/values/config.xml
Normal file
|
@ -0,0 +1,25 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
/*
|
||||
** Copyright 2015, 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>
|
||||
<!-- Respect drawable/rounded.xml intrinsic size for multiple radius corner path customization -->
|
||||
<bool name="config_roundedCornerMultipleRadius">true</bool>
|
||||
</resources>
|
58
overlay/OPlusSystemUIResTarget/res/values/dimens.xml
Normal file
58
overlay/OPlusSystemUIResTarget/res/values/dimens.xml
Normal file
|
@ -0,0 +1,58 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
* Copyright (c) 2006, 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>
|
||||
<!-- Allow CornerHandleView and PathSpecCornerPathRenderer to decouple from corner-radius -->
|
||||
<dimen name="config_rounded_mask_size">97px</dimen>
|
||||
|
||||
<!-- the padding on the start of the statusbar -->
|
||||
<dimen name="status_bar_padding_start">0px</dimen>
|
||||
|
||||
<!-- the padding on the end of the statusbar -->
|
||||
<dimen name="status_bar_padding_end">28px</dimen>
|
||||
|
||||
<!-- the padding on the top of the statusbar (usually 0) -->
|
||||
<dimen name="status_bar_padding_top">11px</dimen>
|
||||
|
||||
<!-- Height of the status bar header bar when on Keyguard -->
|
||||
<dimen name="status_bar_header_height_keyguard">@*android:dimen/status_bar_height</dimen>
|
||||
|
||||
<!-- Margin on the left side of the carrier text on Keyguard -->
|
||||
<dimen name="keyguard_carrier_text_margin">@dimen/status_bar_padding_start</dimen>
|
||||
|
||||
<!-- Margin on the right side of the system icon group on Keyguard. -->
|
||||
<dimen name="system_icons_keyguard_padding_end">@dimen/status_bar_padding_end</dimen>
|
||||
|
||||
<dimen name="keyguard_indication_margin_bottom">300px</dimen>
|
||||
|
||||
<!-- Location on the screen of the center of the fingerprint sensor. For devices with under
|
||||
display fingerprint sensors, this directly corresponds to the fingerprint sensor's location.
|
||||
For devices with sensors on the back of the device, this corresponds to the location on the
|
||||
screen directly in front of the sensor.
|
||||
By default, this is set to @null to use the horizontal center of the screen. -->
|
||||
<dimen name="physical_fingerprint_sensor_center_screen_location_x">1080px</dimen>
|
||||
|
||||
<!-- Location on the screen of the center of the fingerprint sensor. For devices with under
|
||||
display fingerprint sensors, this directly corresponds to the fingerprint sensor's location.
|
||||
For devices with sensors on the back of the device, this corresponds to the location on the
|
||||
screen directly in front of the sensor. -->
|
||||
<dimen name="physical_fingerprint_sensor_center_screen_location_y">930px</dimen>
|
||||
|
||||
<!-- Location on the screen of the center of the physical power button. This is a reasonable
|
||||
default that should be overridden by device-specific overlays. -->
|
||||
<dimen name="physical_power_button_center_screen_location_y">930px</dimen>
|
||||
</resources>
|
Loading…
Reference in a new issue