Advertisement
letmedanz

Untitled

Jan 17th, 2015
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 4.58 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!-- Copyright (C) 2014 Slimroms
  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.  
  17.  
  18. <PreferenceScreen
  19.     xmlns:android="http://schemas.android.com/apk/res/android"
  20.     android:title="@string/twisted_settings_title"
  21.     xmlns:settings="http://schemas.android.com/apk/res/com.android.settings">
  22.  
  23.  
  24. <!-- Audio -->
  25.     <PreferenceCategory
  26.             android:id="@+id/Audio_section"
  27.             android:title="@string/header_category_Audio" >
  28.     <Preference
  29.         android:id="@+id/equalizer_settings"
  30.         android:title="@string/equalizer_settings_title"
  31.         android:icon="@drawable/ic_liquid_equalizer" >
  32.         <intent
  33.         android:action="android.intent.action.MAIN"
  34.         android:targetClass="com.vipercn.viper4android_v2.activity.ViPER4Android"
  35.         android:targetPackage="com.vipercn.viper4android_v2" />
  36.     </Preference>
  37.    
  38.     </PreferenceCategory>
  39.  
  40.     <PreferenceCategory
  41.             android:id="@+id/QS_section"
  42.             android:title="@string/header_category_QS" >
  43. <!-- QS Tiles -->
  44.         <PreferenceScreen
  45.             android:key="qs_order"
  46.             android:title="@string/qs_order"
  47.             android:summary="@string/qs_order_summary"
  48.             android:fragment="com.android.settings.slim.qs.QSTiles" />
  49.  
  50.         <SwitchPreference
  51.             android:key="qs_main_tiles"
  52.             android:title="@string/qs_main_tiles_title"
  53.             android:summaryOn="@string/qs_main_tiles_summary_on"
  54.             android:summaryOff="@string/qs_main_tiles_summary_off"
  55.             android:defaultValue="true" />
  56.    
  57.     </PreferenceCategory>
  58.    
  59.     <PreferenceCategory
  60.             android:id="@+id/statusbar_section"
  61.             android:title="@string/header_category_StatusBar" >
  62.  
  63. <!-- Batt Icon -->
  64.     <PreferenceCategory
  65.             android:title="@string/battery_icon_options_title">
  66.  
  67.         <ListPreference
  68.             android:key="status_bar_battery_style"
  69.             android:title="@string/status_bar_battery_style_title"
  70.             android:dialogTitle="@string/status_bar_battery_style_title"
  71.             android:entries="@array/status_bar_battery_style_entries"
  72.             android:entryValues="@array/status_bar_battery_style_values" />
  73.    
  74. <!-- Batt Percent -->
  75.         <ListPreference
  76.             android:key="status_bar_show_battery_percent"
  77.             android:title="@string/status_bar_battery_percentage_title"
  78.             android:dialogTitle="@string/status_bar_battery_percentage_dialog_title"
  79.             android:entries="@array/status_bar_battery_percentage_entries"
  80.             android:entryValues="@array/status_bar_battery_percentage_values" />
  81.  
  82. <!-- Net Speed Indicator -->
  83.     </PreferenceCategory>
  84.  
  85.         <PreferenceScreen
  86.             android:key="network_traffic_state"
  87.             android:fragment="com.android.settings.chameleonos.NetworkTraffic"
  88.             android:summary="@string/network_traffic_summary"
  89.             android:title="@string/network_traffic_title" />
  90.        
  91.     </PreferenceCategory>  
  92.        
  93. <!-- Misc -->
  94.     <PreferenceCategory
  95.             android:id="@+id/misc_section"
  96.             android:title="@string/header_category_Misc" >
  97.  
  98. <!--Recents Search Bar-->
  99.       <com.android.settings.slim.SystemSettingSwitchPreference
  100.         android:key="recents_show_hide_search_bar"
  101.         android:title="@string/recents_show_searchbar"
  102.         android:summary="@string/recents_show_searchbar_summary"
  103.         android:defaultValue="false" />
  104.  
  105. <!--Long Press to kill-->
  106.       <SwitchPreference
  107.          android:key="kill_app_longpress_back"
  108.          android:title="@string/kill_app_longpress_back"
  109.          android:summary="@string/kill_app_longpress_back_summary"/>
  110.  
  111.  
  112. <!-- Partition info -->
  113.         <Preference
  114.             android:title="@string/partition_info_title"
  115.             android:summary="@string/partition_info_summary">
  116.         <intent
  117.             android:action="com.android.action.MAIN"
  118.             android:targetPackage="com.android.settings"
  119.             android:targetClass="com.android.settings.PartitionInfo" />
  120.         </Preference>
  121.    
  122. </PreferenceCategory>
  123.  
  124. </PreferenceScreen>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement