├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── assets └── xposed_init ├── ic_launcher-web.png ├── proguard-project.txt ├── project.properties ├── res ├── anim │ ├── animcontrol_grow_fade_in_center_ribbon.xml │ ├── animcontrol_grow_fade_in_from_bottom_ribbon.xml │ ├── animcontrol_grow_fade_in_left_ribbon.xml │ ├── animcontrol_grow_fade_in_ribbon.xml │ ├── animcontrol_grow_fade_in_right_ribbon.xml │ ├── animcontrol_shrink_fade_out_center_ribbon.xml │ ├── animcontrol_shrink_fade_out_from_bottom_ribbon.xml │ ├── animcontrol_shrink_fade_out_left_ribbon.xml │ ├── animcontrol_shrink_fade_out_ribbon.xml │ ├── animcontrol_shrink_fade_out_right_ribbon.xml │ ├── animcontrol_slide_in_down.xml │ ├── animcontrol_slide_in_left_no_fade.xml │ ├── animcontrol_slide_in_left_ribbon.xml │ ├── animcontrol_slide_in_right_no_fade.xml │ ├── animcontrol_slide_in_right_ribbon.xml │ ├── animcontrol_slide_in_up_ribbon.xml │ ├── animcontrol_slide_out_down_ribbon.xml │ ├── animcontrol_slide_out_left_no_fade.xml │ ├── animcontrol_slide_out_left_ribbon.xml │ ├── animcontrol_slide_out_right_no_fade.xml │ ├── animcontrol_slide_out_right_ribbon.xml │ ├── animcontrol_slide_out_up.xml │ ├── animcontrol_slow_fade_in.xml │ ├── animcontrol_slow_fade_out.xml │ ├── animcontrol_translucent_enter_ribbon.xml │ ├── animcontrol_translucent_exit_ribbon.xml │ ├── honami_activity_close_enter.xml │ ├── honami_activity_close_exit.xml │ ├── honami_activity_open_enter.xml │ ├── honami_activity_open_exit.xml │ ├── honami_app_starting_exit.xml │ ├── honami_dialog_enter.xml │ ├── honami_dialog_exit.xml │ ├── honami_lock_screen_exit.xml │ ├── honami_options_panel_enter.xml │ ├── honami_options_panel_exit.xml │ ├── honami_recent_enter.xml │ ├── honami_recent_exit.xml │ ├── honami_recents_fade_in.xml │ ├── honami_recents_fade_out.xml │ ├── honami_submenu_enter.xml │ ├── honami_submenu_exit.xml │ ├── honami_task_close_enter.xml │ ├── honami_task_close_exit.xml │ ├── honami_task_open_enter.xml │ ├── honami_task_open_exit.xml │ ├── honami_toast_enter.xml │ ├── honami_toast_exit.xml │ ├── honami_window_move_from_decor.xml │ ├── tn_activity_close_enter.xml │ ├── tn_activity_close_exit.xml │ ├── tn_activity_open_enter.xml │ ├── tn_activity_open_exit.xml │ ├── tn_app_starting_exit.xml │ ├── tn_dialog_enter.xml │ ├── tn_dialog_exit.xml │ ├── tn_input_method_enter.xml │ ├── tn_input_method_exit.xml │ ├── tn_input_method_extract_enter.xml │ ├── tn_input_method_extract_exit.xml │ ├── tn_input_method_fancy_enter.xml │ ├── tn_input_method_fancy_exit.xml │ ├── tn_lock_screen_exit.xml │ ├── tn_options_panel_enter.xml │ ├── tn_options_panel_exit.xml │ ├── tn_recent_enter.xml │ ├── tn_recent_exit.xml │ ├── tn_recents_fade_in.xml │ ├── tn_recents_fade_out.xml │ ├── tn_submenu_enter.xml │ ├── tn_submenu_exit.xml │ ├── tn_task_close_enter.xml │ ├── tn_task_close_exit.xml │ ├── tn_task_open_enter.xml │ ├── tn_task_open_exit.xml │ ├── tn_toast_enter.xml │ ├── tn_toast_exit.xml │ ├── tn_window_move_from_decor.xml │ ├── toko_activity_close_enter.xml │ ├── toko_activity_close_exit.xml │ ├── toko_activity_open_enter.xml │ ├── toko_activity_open_exit.xml │ ├── toko_app_starting_exit.xml │ ├── toko_dialog_enter.xml │ ├── toko_dialog_exit.xml │ ├── toko_lock_screen_exit.xml │ ├── toko_options_panel_enter.xml │ ├── toko_options_panel_exit.xml │ ├── toko_recent_enter.xml │ ├── toko_recent_exit.xml │ ├── toko_recents_fade_in.xml │ ├── toko_recents_fade_out.xml │ ├── toko_submenu_enter.xml │ ├── toko_submenu_exit.xml │ ├── toko_task_close_enter.xml │ ├── toko_task_close_exit.xml │ ├── toko_task_open_enter.xml │ ├── toko_task_open_exit.xml │ ├── toko_toast_enter.xml │ ├── toko_toast_exit.xml │ ├── toko_window_move_from_decor.xml │ ├── xylon_activity_close_enter.xml │ ├── xylon_activity_close_exit.xml │ ├── xylon_activity_open_enter.xml │ ├── xylon_activity_open_exit.xml │ ├── xylon_app_starting_exit.xml │ ├── xylon_dialog_enter.xml │ ├── xylon_dialog_exit.xml │ ├── xylon_input_method_enter.xml │ ├── xylon_input_method_exit.xml │ ├── xylon_input_method_extract_enter.xml │ ├── xylon_input_method_extract_exit.xml │ ├── xylon_input_method_fancy_enter.xml │ ├── xylon_input_method_fancy_exit.xml │ ├── xylon_lock_screen_exit.xml │ ├── xylon_options_panel_enter.xml │ ├── xylon_options_panel_exit.xml │ ├── xylon_recent_enter.xml │ ├── xylon_recent_exit.xml │ ├── xylon_recents_fade_in.xml │ ├── xylon_recents_fade_out.xml │ ├── xylon_submenu_enter.xml │ ├── xylon_submenu_exit.xml │ ├── xylon_task_close_enter.xml │ ├── xylon_task_close_exit.xml │ ├── xylon_task_open_enter.xml │ ├── xylon_task_open_exit.xml │ ├── xylon_toast_enter.xml │ ├── xylon_toast_exit.xml │ └── xylon_window_move_from_decor.xml ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-mdpi │ └── ic_launcher.png ├── drawable-xhdpi │ └── ic_launcher.png ├── layout │ ├── pref_app_picker.xml │ ├── pref_bar_height.xml │ ├── pref_seekbar.xml │ ├── view_app_dialog.xml │ └── view_dialog_colorpicker.xml ├── values-de │ └── strings.xml ├── values-es │ └── strings.xml ├── values-fr │ └── strings.xml ├── values-hu │ └── strings.xml ├── values-ja │ └── strings.xml ├── values-ko │ └── strings.xml ├── values-pl │ └── strings.xml ├── values-pt │ └── strings.xml ├── values-ru │ └── strings.xml ├── values-tr │ └── strings.xml ├── values-zh-rCN │ └── strings.xml ├── values-zh-rHK │ └── strings.xml ├── values-zh-rTW │ └── strings.xml ├── values │ ├── arrays_anim_control.xml │ ├── arrays_anim_ime.xml │ ├── arrays_anim_ticker.xml │ ├── arrays_anim_toast.xml │ ├── arrays_batterybar_color_mode.xml │ ├── arrays_listview.xml │ ├── arrays_seconds_lettercase.xml │ ├── arrays_system_anim.xml │ ├── arrays_torch.xml │ ├── strings.xml │ └── styles.xml └── xml │ ├── pref_anim_control.xml │ ├── pref_batterybar_color.xml │ ├── pref_random_color.xml │ └── pref_setting.xml └── src └── com └── zst └── xposed └── xuimod ├── Common.java ├── SettingActivity.java ├── XuiMod.java ├── mods ├── AnimationControlsMod.java ├── BatteryBarMod.java ├── ClassicRecentsMod.java ├── EdgeEffectMod.java ├── InputMethodAnimationMod.java ├── ListViewAnimationMod.java ├── LockscreenTorchMod.java ├── LockscreenVolumeMod.java ├── RandomQuickSettingsColorMod.java ├── ScrollerMod.java ├── SecondsClockMod.java ├── SystemAnimationMod.java ├── TickerAnimation.java ├── ToastAnimationMod.java ├── VolumePanelMod.java ├── animation │ ├── AppTransitionConstants.java │ ├── AwesomeAnimationHelper.java │ ├── InputMethodAnimationHelper.java │ └── ToastAnimationHelper.java └── batterybar │ ├── BatteryBarController.java │ └── BatteryBarView.java └── preference ├── ApplicationsDialog.java ├── BarHeight.java ├── ColorPicker.java ├── SeekBarDialog.java ├── TestKeyboard.java ├── TestListView.java ├── VolumePanelAlpha.java ├── activity ├── AnimControlPreference.java ├── BatteryBarColor.java ├── ChooseRandomColor.java └── ListViewBlacklist.java └── colorpicker ├── AlphaPatternDrawable.java ├── ColorPanelView.java ├── ColorPickerView.java └── ColorSettingsDialog.java /.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /bin 2 | /temp 3 | /gen 4 | .classpath 5 | .project 6 | proguard-project.txt 7 | project.properties 8 | .DS_Store -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | XuiMod 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 9 | 12 | 13 | 18 | 21 | 24 | 27 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 51 | 52 | 55 | 56 | 59 | 60 | 63 | 64 | 65 | 66 | 67 | -------------------------------------------------------------------------------- /assets/xposed_init: -------------------------------------------------------------------------------- 1 | com.zst.xposed.xuimod.XuiMod -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst123/XuiMod/3c794ac576835ec53a9d365fcb5892c7677b22f9/ic_launcher-web.png -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-14 15 | -------------------------------------------------------------------------------- /res/anim/animcontrol_grow_fade_in_center_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_grow_fade_in_from_bottom_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_grow_fade_in_left_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_grow_fade_in_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_grow_fade_in_right_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_shrink_fade_out_center_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_shrink_fade_out_from_bottom_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_shrink_fade_out_left_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_shrink_fade_out_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_shrink_fade_out_right_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_in_down.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_in_left_no_fade.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_in_left_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_in_right_no_fade.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_in_right_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_in_up_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_out_down_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_out_left_no_fade.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_out_left_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_out_right_no_fade.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_out_right_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slide_out_up.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slow_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/animcontrol_slow_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/animcontrol_translucent_enter_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/animcontrol_translucent_exit_ribbon.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_activity_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/honami_activity_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_activity_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_activity_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/honami_app_starting_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/honami_dialog_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/honami_dialog_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/honami_lock_screen_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_options_panel_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_options_panel_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_recent_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_recent_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_recents_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/honami_recents_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/honami_submenu_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_submenu_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_task_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_task_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_task_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_task_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/honami_toast_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/honami_toast_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/honami_window_move_from_decor.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/tn_activity_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_activity_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_activity_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_activity_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_app_starting_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_dialog_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/tn_dialog_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/anim/tn_input_method_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/tn_input_method_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/anim/tn_input_method_extract_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /res/anim/tn_input_method_extract_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | -------------------------------------------------------------------------------- /res/anim/tn_input_method_fancy_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/tn_input_method_fancy_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /res/anim/tn_lock_screen_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_options_panel_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/tn_options_panel_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/tn_recent_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_recent_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_recents_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/tn_recents_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/tn_submenu_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/tn_submenu_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/tn_task_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_task_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_task_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_task_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_toast_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_toast_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/tn_window_move_from_decor.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/toko_activity_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_activity_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_activity_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_activity_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_app_starting_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/toko_dialog_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/toko_dialog_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_lock_screen_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/toko_options_panel_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/toko_options_panel_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_recent_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_recent_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_recents_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/toko_recents_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/toko_submenu_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_submenu_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/toko_task_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/toko_task_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/toko_task_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/anim/toko_task_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /res/anim/toko_toast_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/toko_toast_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/toko_window_move_from_decor.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_activity_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_activity_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_activity_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_activity_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_app_starting_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/xylon_dialog_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_dialog_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_input_method_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /res/anim/xylon_input_method_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /res/anim/xylon_input_method_extract_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_input_method_extract_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_input_method_fancy_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_input_method_fancy_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_lock_screen_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_options_panel_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_options_panel_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_recent_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_recent_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_recents_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_recents_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_submenu_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_submenu_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_task_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/xylon_task_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/xylon_task_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/xylon_task_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | -------------------------------------------------------------------------------- /res/anim/xylon_toast_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /res/anim/xylon_toast_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/anim/xylon_window_move_from_decor.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst123/XuiMod/3c794ac576835ec53a9d365fcb5892c7677b22f9/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst123/XuiMod/3c794ac576835ec53a9d365fcb5892c7677b22f9/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zst123/XuiMod/3c794ac576835ec53a9d365fcb5892c7677b22f9/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/layout/pref_app_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 7 | 8 | 11 | 12 | 23 | 24 | 25 | 26 | 27 |