Advertisement
Freshbloodb

Untitled

Nov 3rd, 2024
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.79 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <touch-sensitivity xmlns:android="http://schemas.android.com/apk/res/android">
  3.     <!-- Configuración principal de sensibilidad táctil -->
  4.     <sensitivity-value>1.5</sensitivity-value>
  5.    
  6.     <!-- Configuraciones avanzadas de tacto -->
  7.     <advanced-settings>
  8.         <palm-rejection enabled="true">
  9.             <threshold>2.0</threshold>
  10.             <delay-ms>50</delay-ms>
  11.         </palm-rejection>
  12.        
  13.         <multi-touch>
  14.             <max-points>10</max-points>
  15.             <tracking-speed>1.2</tracking-speed>
  16.             <gesture-sensitivity>1.8</gesture-sensitivity>
  17.         </multi-touch>
  18.        
  19.         <pressure-sensitivity>
  20.             <levels>256</levels>
  21.             <minimum-threshold>0.1</minimum-threshold>
  22.             <maximum-threshold>1.0</maximum-threshold>
  23.         </pressure-sensitivity>
  24.        
  25.         <response-curve>
  26.             <point x="0.0" y="0.0"/>
  27.             <point x="0.2" y="0.15"/>
  28.             <point x="0.4" y="0.35"/>
  29.             <point x="0.6" y="0.65"/>
  30.             <point x="0.8" y="0.85"/>
  31.             <point x="1.0" y="1.0"/>
  32.         </response-curve>
  33.     </advanced-settings>
  34.    
  35.     <!-- Perfiles predefinidos -->
  36.     <profiles>
  37.         <profile name="gaming">
  38.             <sensitivity-value>2.0</sensitivity-value>
  39.             <tracking-speed>1.5</tracking-speed>
  40.             <palm-rejection-threshold>2.5</palm-rejection-threshold>
  41.         </profile>
  42.        
  43.         <profile name="normal">
  44.             <sensitivity-value>1.5</sensitivity-value>
  45.             <tracking-speed>1.0</tracking-speed>
  46.             <palm-rejection-threshold>2.0</palm-rejection-threshold>
  47.         </profile>
  48.        
  49.         <profile name="precision">
  50.             <sensitivity-value>1.2</sensitivity-value>
  51.             <tracking-speed>0.8</tracking-speed>
  52.             <palm-rejection-threshold>1.8</palm-rejection-threshold>
  53.         </profile>
  54.     </profiles>
  55.    
  56.    
  57.     <!-- Ajustes de calibración -->
  58.     <calibration>
  59.         <corner-sensitivity>1.2</corner-sensitivity>
  60.         <edge-sensitivity>1.3</edge-sensitivity>
  61.         <center-sensitivity>1.5</center-sensitivity>
  62.     </calibration>
  63.    
  64.     <!-- Configuraciones de gestos -->
  65.     <gesture-settings>
  66.         <swipe>
  67.             <minimum-distance>50</minimum-distance>
  68.             <maximum-time>300</maximum-time>
  69.             <sensitivity>1.4</sensitivity>
  70.         </swipe>
  71.        
  72.         <pinch>
  73.             <minimum-scale>0.5</minimum-scale>
  74.             <maximum-scale>2.0</maximum-scale>
  75.             <sensitivity>1.3</sensitivity>
  76.         </pinch>
  77.        
  78.         <rotation>
  79.             <minimum-angle>5</minimum-angle>
  80.             <sensitivity>1.2</sensitivity>
  81.         </rotation>
  82.     </gesture-settings>
  83. </touch-sensitivity>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement