Change-Id: Idcba49c5e8389314412457269f9b2577469d29d2 Signed-off-by: Hưng Phan <phandinhhungvp2001@gmail.com>
57 lines
2.4 KiB
XML
57 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!--
|
|
Copyright (C) 2012-2014 The TeamEos 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.
|
|
-->
|
|
|
|
<PreferenceScreen
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:title="@string/animations_title"
|
|
xmlns:settings="http://schemas.android.com/apk/res/com.android.settings" >
|
|
|
|
<PreferenceCategory
|
|
android:key="quick_settings_animations"
|
|
android:title="@string/qs_tile_animation_title">
|
|
|
|
<ListPreference
|
|
android:key="qs_tile_animation_style"
|
|
android:title="@string/qs_tile_animation_style_title"
|
|
android:entries="@array/qs_tile_animation_style_entries"
|
|
android:entryValues="@array/qs_tile_animation_style_values"
|
|
android:persistent="false" />
|
|
|
|
<ListPreference
|
|
android:key="qs_tile_animation_duration"
|
|
android:title="@string/qs_tile_animation_duration_title"
|
|
android:entries="@array/qs_tile_animation_duration_entries"
|
|
android:entryValues="@array/qs_tile_animation_duration_values"
|
|
android:persistent="false" />
|
|
|
|
<ListPreference
|
|
android:key="qs_tile_animation_interpolator"
|
|
android:title="@string/qs_tile_animation_interpolator_title"
|
|
android:entries="@array/qs_tile_animation_interpolator_entries"
|
|
android:entryValues="@array/qs_tile_animation_interpolator_values"
|
|
android:persistent="false" />
|
|
</PreferenceCategory>
|
|
|
|
<com.cherish.settings.preferences.SystemSettingListPreference
|
|
android:key="screen_off_animation"
|
|
android:title="@string/screen_off_animation_title"
|
|
android:entries="@array/screen_off_animation_entries"
|
|
android:entryValues="@array/screen_off_animation_values"
|
|
android:summary="%s"
|
|
android:defaultValue="0" />
|
|
</PreferenceScreen>
|