Advertisement
wojtekojtek

Untitled

Oct 6th, 2024
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.23 KB | Source Code | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2018 The Dirty Unicorns Project
  3.  
  4.     Licensed under the Apache License, Version 2.0 (the "License");
  5.     you may not use this file except in compliance with the License.
  6.     You may obtain a copy of the License at
  7.  
  8.          http://www.apache.org/licenses/LICENSE-2.0
  9.  
  10.     Unless required by applicable law or agreed to in writing, software
  11.     distributed under the License is distributed on an "AS IS" BASIS,
  12.     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.     See the License for the specific language governing permissions and
  14.     limitations under the License.
  15. -->
  16. <resources>
  17.     <!-- CardView -->
  18.     <declare-styleable name="CardViewPerf">
  19.         <attr name="cardBackgroundColor" format="color" />
  20.         <attr name="cardCornerRadius" format="dimension" />
  21.         <attr name="cardElevation" format="dimension" />
  22.     </declare-styleable>
  23.  
  24.     <!-- Base attributes available to CustomSeekBarPreference. -->
  25.     <declare-styleable name="CustomSeekBarPreference">
  26.         <attr name="interval" format="integer" />
  27.         <attr name="units" format="string|reference" />
  28.         <attr name="allowEditText" format="boolean" />
  29.     </declare-styleable>
  30.  
  31.     <!-- Value to pass to callback when restore button is pressed -->
  32.     <declare-styleable name="ColorPickerPreference">
  33.         <attr name="alphaSlider" format="boolean" />
  34.         <attr name="showPreview" format="boolean" />
  35.         <attr name="showReset" format="boolean" />
  36.         <attr name="dividerAbove" format="boolean" />
  37.         <attr name="dividerBelow" format="boolean" />
  38.     </declare-styleable>
  39.  
  40.     <!-- Base attributes available to CircularImageView -->
  41.     <declare-styleable name="CircularImageView">
  42.         <attr name="civ_border" format="boolean"/>
  43.         <attr name="civ_border_width" format="dimension"/>
  44.         <attr name="civ_border_color" format="color"/>
  45.     </declare-styleable>
  46.  
  47.     <!-- LineageOS -->
  48.     <declare-styleable name="lineage_SelfRemovingPreference">
  49.         <attr name="requiresPackage" format="string" />
  50.         <attr name="requiresFeature" format="string" />
  51.         <attr name="requiresConfig" format="string" />
  52.         <attr name="requiresConfigMask" format="integer" />
  53.         <attr name="requiresProperty" format="string" />
  54.         <attr name="requiresOwner" format="boolean" />
  55.         <attr name="requiresAction" format="string" />
  56.         <attr name="requiresService" format="string" />
  57.         <attr name="replacesKey" format="string" />
  58.         <attr name="minSummaryLines" format="integer" />
  59.     </declare-styleable>
  60.  
  61.     <!-- Base attributes available to RowLayout -->
  62.     <declare-styleable name="RowLayout">
  63.         <attr name="android:verticalSpacing" />
  64.         <attr name="android:horizontalSpacing" />
  65.     </declare-styleable>
  66.  
  67.     <!-- Base attributes available to ProperSeekBarPreference. -->
  68.     <declare-styleable name="ProperSeekBarPreference">
  69.         <attr name="interval" format="integer" />
  70.         <attr name="showSign" format="boolean" />
  71.         <attr name="units" format="string|reference" />
  72.         <attr name="continuousUpdates" format="boolean" />
  73.     </declare-styleable>
  74. </resources>
  75.  
Tags: derpfest
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement