├── .gitignore ├── Android.mk ├── AndroidManifest.xml ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── README.md ├── lint.xml ├── project.properties ├── res ├── anim │ ├── all_apps_fade_in.xml │ ├── all_apps_fade_out.xml │ ├── all_apps_zoom_in.xml │ ├── all_apps_zoom_out.xml │ ├── fade_in_fast.xml │ ├── fade_out_fast.xml │ ├── fade_out_slow.xml │ ├── previews_fade_in.xml │ ├── quickaction_above_enter.xml │ ├── quickaction_above_exit.xml │ ├── quickaction_below_enter.xml │ ├── quickaction_below_exit.xml │ └── slide_in_right.xml ├── color │ └── bright_text_dark_focused.xml ├── drawable-finger │ └── quickaction_slider_btn.xml ├── drawable-hdpi-finger │ ├── ic_grabber.png │ ├── quickaction_arrow_down.png │ ├── quickaction_arrow_up.png │ ├── quickaction_bottom_frame.9.png │ ├── quickaction_slider_background.png │ ├── quickaction_slider_btn_normal.9.png │ ├── quickaction_slider_btn_pressed.9.png │ ├── quickaction_slider_btn_selected.9.png │ ├── quickaction_slider_grip_left.png │ ├── quickaction_slider_grip_right.png │ └── quickaction_top_frame.9.png ├── drawable-hdpi │ ├── ab_empty.png │ ├── all_apps_button.png │ ├── arrow_left.png │ ├── arrow_right.png │ ├── bg_appwidget_error.9.png │ ├── box_launcher_bottom.9.png │ ├── box_launcher_top_normal.9.png │ ├── box_launcher_top_pressed.9.png │ ├── box_launcher_top_selected.9.png │ ├── btn_add_item.png │ ├── btn_delete_item.png │ ├── btn_pin_item.png │ ├── btn_swap_item.png │ ├── camera_crop_height.png │ ├── camera_crop_width.png │ ├── delete_handle.9.png │ ├── delete_handle_normal.9.png │ ├── focused_application_background.9.png │ ├── ic_allapps.png │ ├── ic_allappsadw.png │ ├── ic_delete.png │ ├── ic_details.png │ ├── ic_launcher_add_folder.png │ ├── ic_launcher_application.png │ ├── ic_launcher_appwidget.png │ ├── ic_launcher_custom_shortcut.png │ ├── ic_launcher_folder.png │ ├── ic_launcher_folder_open.png │ ├── ic_launcher_home.png │ ├── ic_launcher_shortcut.png │ ├── ic_launcher_wallpaper.png │ ├── ic_menu_block.png │ ├── ic_menu_grabber.png │ ├── ic_menu_launcher_settings.png │ ├── ic_menu_resize.png │ ├── ic_menu_unblock.png │ ├── ic_search_widget.png │ ├── ic_transparent.png │ ├── indicator_autocrop.png │ ├── list_section_divider_holo_dark.9.png │ ├── movetodefault_button.png │ ├── openclosenotifications_button.png │ ├── pager_dot_normal.png │ ├── pager_dot_selected.png │ ├── pressed_application_background.9.png │ ├── preview_bg.9.png │ ├── preview_bg_focus.9.png │ ├── preview_bg_press.9.png │ ├── screen_guide_1.jpg │ ├── screen_guide_2.jpg │ ├── screen_guide_3.jpg │ ├── screen_guide_4.jpg │ ├── screen_guide_5.jpg │ ├── screen_guide_6.jpg │ ├── screen_guide_7.jpg │ ├── showhidestatusbar_button.png │ ├── showpreviews_button.png │ ├── timepicker_down_disabled.9.png │ ├── timepicker_down_disabled_focused.9.png │ ├── timepicker_down_normal.9.png │ ├── timepicker_down_pressed.9.png │ ├── timepicker_down_selected.9.png │ ├── timepicker_input_disabled.9.png │ ├── timepicker_input_normal.9.png │ ├── timepicker_input_pressed.9.png │ ├── timepicker_input_selected.9.png │ ├── timepicker_up_disabled.9.png │ ├── timepicker_up_disabled_focused.9.png │ ├── timepicker_up_normal.9.png │ ├── timepicker_up_pressed.9.png │ └── timepicker_up_selected.9.png ├── drawable-land-hdpi │ ├── hotseat_bg_center.9.png │ ├── hotseat_bg_center_focus.9.png │ ├── hotseat_bg_left.9.png │ ├── hotseat_bg_left_focus.9.png │ ├── hotseat_bg_right.9.png │ ├── hotseat_bg_right_focus.9.png │ ├── ic_home_arrows_0.png │ ├── ic_home_arrows_1_normal.png │ ├── ic_home_arrows_1_normal_right.png │ ├── ic_home_arrows_1_press.png │ ├── ic_home_arrows_1_press_right.png │ ├── ic_home_arrows_2_normal.png │ ├── ic_home_arrows_2_normal_right.png │ ├── ic_home_arrows_2_press.png │ ├── ic_home_arrows_2_press_right.png │ ├── ic_home_arrows_3_normal.png │ ├── ic_home_arrows_3_normal_right.png │ ├── ic_home_arrows_3_press.png │ ├── ic_home_arrows_3_press_right.png │ ├── ic_home_arrows_4_normal.png │ ├── ic_home_arrows_4_normal_right.png │ ├── ic_home_arrows_4_press.png │ ├── ic_home_arrows_4_press_right.png │ ├── ic_home_arrows_5_normal.png │ ├── ic_home_arrows_5_normal_right.png │ ├── ic_home_arrows_5_press.png │ ├── ic_home_arrows_5_press_right.png │ ├── ic_home_arrows_6_normal.png │ ├── ic_home_arrows_6_normal_right.png │ ├── ic_home_arrows_6_press.png │ ├── ic_home_arrows_6_press_right.png │ └── lab_rab_empty_bg.png ├── drawable-land-ldpi │ ├── hotseat_bg_center.9.png │ ├── hotseat_bg_center_focus.9.png │ ├── hotseat_bg_left.9.png │ ├── hotseat_bg_left_focus.9.png │ ├── hotseat_bg_right.9.png │ ├── hotseat_bg_right_focus.9.png │ ├── ic_home_arrows_0.png │ ├── ic_home_arrows_1_normal.png │ ├── ic_home_arrows_1_normal_right.png │ ├── ic_home_arrows_1_press.png │ ├── ic_home_arrows_1_press_right.png │ ├── ic_home_arrows_2_normal.png │ ├── ic_home_arrows_2_normal_right.png │ ├── ic_home_arrows_2_press.png │ ├── ic_home_arrows_2_press_right.png │ ├── ic_home_arrows_3_normal.png │ ├── ic_home_arrows_3_normal_right.png │ ├── ic_home_arrows_3_press.png │ ├── ic_home_arrows_3_press_right.png │ ├── ic_home_arrows_4_normal.png │ ├── ic_home_arrows_4_normal_right.png │ ├── ic_home_arrows_4_press.png │ ├── ic_home_arrows_4_press_right.png │ ├── ic_home_arrows_5_normal.png │ ├── ic_home_arrows_5_normal_right.png │ ├── ic_home_arrows_5_press.png │ ├── ic_home_arrows_5_press_right.png │ ├── ic_home_arrows_6_normal.png │ ├── ic_home_arrows_6_normal_right.png │ ├── ic_home_arrows_6_press.png │ ├── ic_home_arrows_6_press_right.png │ └── lab_rab_empty_bg.png ├── drawable-land-mdpi │ ├── hotseat_bg_center.9.png │ ├── hotseat_bg_center_focus.9.png │ ├── hotseat_bg_left.9.png │ ├── hotseat_bg_left_focus.9.png │ ├── hotseat_bg_right.9.png │ ├── hotseat_bg_right_focus.9.png │ ├── ic_home_arrows_0.png │ ├── ic_home_arrows_1_normal.png │ ├── ic_home_arrows_1_normal_right.png │ ├── ic_home_arrows_1_press.png │ ├── ic_home_arrows_1_press_right.png │ ├── ic_home_arrows_2_normal.png │ ├── ic_home_arrows_2_normal_right.png │ ├── ic_home_arrows_2_press.png │ ├── ic_home_arrows_2_press_right.png │ ├── ic_home_arrows_3_normal.png │ ├── ic_home_arrows_3_normal_right.png │ ├── ic_home_arrows_3_press.png │ ├── ic_home_arrows_3_press_right.png │ ├── ic_home_arrows_4_normal.png │ ├── ic_home_arrows_4_normal_right.png │ ├── ic_home_arrows_4_press.png │ ├── ic_home_arrows_4_press_right.png │ ├── ic_home_arrows_5_normal.png │ ├── ic_home_arrows_5_normal_right.png │ ├── ic_home_arrows_5_press.png │ ├── ic_home_arrows_5_press_right.png │ ├── ic_home_arrows_6_normal.png │ ├── ic_home_arrows_6_normal_right.png │ ├── ic_home_arrows_6_press.png │ ├── ic_home_arrows_6_press_right.png │ └── lab_rab_empty_bg.png ├── drawable-ldpi-finger │ ├── ic_grabber.png │ ├── quickaction_arrow_down.png │ ├── quickaction_arrow_up.png │ ├── quickaction_slider_background.png │ ├── quickaction_slider_btn_normal.9.png │ ├── quickaction_slider_btn_pressed.9.png │ ├── quickaction_slider_btn_selected.9.png │ ├── quickaction_slider_grip_left.png │ └── quickaction_slider_grip_right.png ├── drawable-ldpi │ ├── ab_empty.png │ ├── all_apps_button.png │ ├── arrow_left.png │ ├── arrow_right.png │ ├── bg_appwidget_error.9.png │ ├── box_launcher_bottom.9.png │ ├── box_launcher_top_normal.9.png │ ├── box_launcher_top_pressed.9.png │ ├── box_launcher_top_selected.9.png │ ├── btn_add_item.png │ ├── btn_delete_item.png │ ├── btn_pin_item.png │ ├── btn_swap_item.png │ ├── camera_crop_height.png │ ├── camera_crop_width.png │ ├── delete_handle.9.png │ ├── delete_handle_normal.9.png │ ├── focused_application_background.9.png │ ├── ic_allapps.png │ ├── ic_allappsadw.png │ ├── ic_delete.png │ ├── ic_details.png │ ├── ic_launcher_add_folder.png │ ├── ic_launcher_application.png │ ├── ic_launcher_appwidget.png │ ├── ic_launcher_custom_shortcut.png │ ├── ic_launcher_folder.png │ ├── ic_launcher_folder_open.png │ ├── ic_launcher_home.png │ ├── ic_launcher_shortcut.png │ ├── ic_launcher_wallpaper.png │ ├── ic_menu_block.png │ ├── ic_menu_grabber.png │ ├── ic_menu_launcher_settings.png │ ├── ic_menu_resize.png │ ├── ic_menu_unblock.png │ ├── ic_search_widget.png │ ├── ic_transparent.png │ ├── indicator_autocrop.png │ ├── list_section_divider_holo_dark.9.png │ ├── movetodefault_button.png │ ├── openclosenotifications_button.png │ ├── pager_dot_normal.png │ ├── pager_dot_selected.png │ ├── pressed_application_background.9.png │ ├── preview_bg.9.png │ ├── preview_bg_focus.9.png │ ├── preview_bg_press.9.png │ ├── showhidestatusbar_button.png │ ├── showpreviews_button.png │ ├── timepicker_down_disabled.9.png │ ├── timepicker_down_disabled_focused.9.png │ ├── timepicker_down_normal.9.png │ ├── timepicker_down_pressed.9.png │ ├── timepicker_down_selected.9.png │ ├── timepicker_input_disabled.9.png │ ├── timepicker_input_normal.9.png │ ├── timepicker_input_pressed.9.png │ ├── timepicker_input_selected.9.png │ ├── timepicker_up_disabled.9.png │ ├── timepicker_up_disabled_focused.9.png │ ├── timepicker_up_normal.9.png │ ├── timepicker_up_pressed.9.png │ └── timepicker_up_selected.9.png ├── drawable-mdpi-finger │ ├── ic_grabber.png │ ├── quickaction_arrow_down.png │ ├── quickaction_arrow_up.png │ ├── quickaction_bottom_frame.9.png │ ├── quickaction_slider_background.png │ ├── quickaction_slider_btn_normal.9.png │ ├── quickaction_slider_btn_pressed.9.png │ ├── quickaction_slider_btn_selected.9.png │ ├── quickaction_slider_grip_left.png │ ├── quickaction_slider_grip_right.png │ └── quickaction_top_frame.9.png ├── drawable-mdpi │ ├── ab_empty.png │ ├── all_apps_button.png │ ├── arrow_left.png │ ├── arrow_right.png │ ├── bg_appwidget_error.9.png │ ├── box_launcher_bottom.9.png │ ├── box_launcher_top_normal.9.png │ ├── box_launcher_top_pressed.9.png │ ├── box_launcher_top_selected.9.png │ ├── btn_add_item.png │ ├── btn_delete_item.png │ ├── btn_pin_item.png │ ├── btn_swap_item.png │ ├── camera_crop_height.png │ ├── camera_crop_width.png │ ├── delete_handle.9.png │ ├── delete_handle_normal.9.png │ ├── focused_application_background.9.png │ ├── ic_allapps.png │ ├── ic_allappsadw.png │ ├── ic_delete.png │ ├── ic_details.png │ ├── ic_launcher_add_folder.png │ ├── ic_launcher_application.png │ ├── ic_launcher_appwidget.png │ ├── ic_launcher_custom_shortcut.png │ ├── ic_launcher_folder.png │ ├── ic_launcher_folder_open.png │ ├── ic_launcher_home.png │ ├── ic_launcher_shortcut.png │ ├── ic_launcher_wallpaper.png │ ├── ic_menu_block.png │ ├── ic_menu_grabber.png │ ├── ic_menu_launcher_settings.png │ ├── ic_menu_resize.png │ ├── ic_menu_unblock.png │ ├── ic_search_widget.png │ ├── ic_transparent.png │ ├── indicator_autocrop.png │ ├── list_section_divider_holo_dark.9.png │ ├── movetodefault_button.png │ ├── openclosenotifications_button.png │ ├── pager_dot_normal.png │ ├── pager_dot_selected.png │ ├── pressed_application_background.9.png │ ├── preview_bg.9.png │ ├── preview_bg_focus.9.png │ ├── preview_bg_press.9.png │ ├── showhidestatusbar_button.png │ ├── showpreviews_button.png │ ├── timepicker_down_disabled.9.png │ ├── timepicker_down_disabled_focused.9.png │ ├── timepicker_down_normal.9.png │ ├── timepicker_down_pressed.9.png │ ├── timepicker_down_selected.9.png │ ├── timepicker_input_disabled.9.png │ ├── timepicker_input_normal.9.png │ ├── timepicker_input_pressed.9.png │ ├── timepicker_input_selected.9.png │ ├── timepicker_up_disabled.9.png │ ├── timepicker_up_disabled_focused.9.png │ ├── timepicker_up_normal.9.png │ ├── timepicker_up_pressed.9.png │ └── timepicker_up_selected.9.png ├── drawable-port-hdpi │ ├── hotseat_bg_center.9.png │ ├── hotseat_bg_center_focus.9.png │ ├── hotseat_bg_left.9.png │ ├── hotseat_bg_left_focus.9.png │ ├── hotseat_bg_right.9.png │ ├── hotseat_bg_right_focus.9.png │ ├── ic_home_arrows_0.png │ ├── ic_home_arrows_1_normal.png │ ├── ic_home_arrows_1_normal_right.png │ ├── ic_home_arrows_1_press.png │ ├── ic_home_arrows_1_press_right.png │ ├── ic_home_arrows_2_normal.png │ ├── ic_home_arrows_2_normal_right.png │ ├── ic_home_arrows_2_press.png │ ├── ic_home_arrows_2_press_right.png │ ├── ic_home_arrows_3_normal.png │ ├── ic_home_arrows_3_normal_right.png │ ├── ic_home_arrows_3_press.png │ ├── ic_home_arrows_3_press_right.png │ ├── ic_home_arrows_4_normal.png │ ├── ic_home_arrows_4_normal_right.png │ ├── ic_home_arrows_4_press.png │ ├── ic_home_arrows_4_press_right.png │ ├── ic_home_arrows_5_normal.png │ ├── ic_home_arrows_5_normal_right.png │ ├── ic_home_arrows_5_press.png │ ├── ic_home_arrows_5_press_right.png │ ├── ic_home_arrows_6_normal.png │ ├── ic_home_arrows_6_normal_right.png │ ├── ic_home_arrows_6_press.png │ ├── ic_home_arrows_6_press_right.png │ └── lab_rab_empty_bg.png ├── drawable-port-ldpi │ ├── hotseat_bg_center.9.png │ ├── hotseat_bg_center_focus.9.png │ ├── hotseat_bg_left.9.png │ ├── hotseat_bg_left_focus.9.png │ ├── hotseat_bg_right.9.png │ ├── hotseat_bg_right_focus.9.png │ ├── ic_home_arrows_0.png │ ├── ic_home_arrows_1_normal.png │ ├── ic_home_arrows_1_normal_right.png │ ├── ic_home_arrows_1_press.png │ ├── ic_home_arrows_1_press_right.png │ ├── ic_home_arrows_2_normal.png │ ├── ic_home_arrows_2_normal_right.png │ ├── ic_home_arrows_2_press.png │ ├── ic_home_arrows_2_press_right.png │ ├── ic_home_arrows_3_normal.png │ ├── ic_home_arrows_3_normal_right.png │ ├── ic_home_arrows_3_press.png │ ├── ic_home_arrows_3_press_right.png │ ├── ic_home_arrows_4_normal.png │ ├── ic_home_arrows_4_normal_right.png │ ├── ic_home_arrows_4_press.png │ ├── ic_home_arrows_4_press_right.png │ ├── ic_home_arrows_5_normal.png │ ├── ic_home_arrows_5_normal_right.png │ ├── ic_home_arrows_5_press.png │ ├── ic_home_arrows_5_press_right.png │ ├── ic_home_arrows_6_normal.png │ ├── ic_home_arrows_6_normal_right.png │ ├── ic_home_arrows_6_press.png │ ├── ic_home_arrows_6_press_right.png │ └── lab_rab_empty_bg.png ├── drawable-port-mdpi │ ├── hotseat_bg_center.9.png │ ├── hotseat_bg_center_focus.9.png │ ├── hotseat_bg_left.9.png │ ├── hotseat_bg_left_focus.9.png │ ├── hotseat_bg_right.9.png │ ├── hotseat_bg_right_focus.9.png │ ├── ic_home_arrows_0.png │ ├── ic_home_arrows_1_normal.png │ ├── ic_home_arrows_1_normal_right.png │ ├── ic_home_arrows_1_press.png │ ├── ic_home_arrows_1_press_right.png │ ├── ic_home_arrows_2_normal.png │ ├── ic_home_arrows_2_normal_right.png │ ├── ic_home_arrows_2_press.png │ ├── ic_home_arrows_2_press_right.png │ ├── ic_home_arrows_3_normal.png │ ├── ic_home_arrows_3_normal_right.png │ ├── ic_home_arrows_3_press.png │ ├── ic_home_arrows_3_press_right.png │ ├── ic_home_arrows_4_normal.png │ ├── ic_home_arrows_4_normal_right.png │ ├── ic_home_arrows_4_press.png │ ├── ic_home_arrows_4_press_right.png │ ├── ic_home_arrows_5_normal.png │ ├── ic_home_arrows_5_normal_right.png │ ├── ic_home_arrows_5_press.png │ ├── ic_home_arrows_5_press_right.png │ ├── ic_home_arrows_6_normal.png │ ├── ic_home_arrows_6_normal_right.png │ ├── ic_home_arrows_6_press.png │ ├── ic_home_arrows_6_press_right.png │ └── lab_rab_empty_bg.png ├── drawable │ ├── box_launcher_top.xml │ ├── delete_zone_selector.xml │ ├── grid_selector.xml │ ├── home_arrows_left.xml │ ├── home_arrows_left_0.xml │ ├── home_arrows_left_1.xml │ ├── home_arrows_left_2.xml │ ├── home_arrows_left_3.xml │ ├── home_arrows_left_4.xml │ ├── home_arrows_left_5.xml │ ├── home_arrows_left_6.xml │ ├── home_arrows_right.xml │ ├── home_arrows_right_0.xml │ ├── home_arrows_right_1.xml │ ├── home_arrows_right_2.xml │ ├── home_arrows_right_3.xml │ ├── home_arrows_right_4.xml │ ├── home_arrows_right_5.xml │ ├── home_arrows_right_6.xml │ ├── lab2_bg.xml │ ├── lab_bg.xml │ ├── mab_bg.xml │ ├── pager_dots.xml │ ├── preview_background.xml │ ├── rab2_bg.xml │ ├── rab_bg.xml │ ├── shortcut_selector.xml │ ├── timepicker_down_btn.xml │ ├── timepicker_input.xml │ ├── timepicker_up_btn.xml │ └── togglebutton_arrows_up_down.xml ├── layout-finger │ ├── order_folder_icon_activity.xml │ └── order_folder_icon_list_item.xml ├── layout-land │ ├── application.xml │ ├── application_boxed.xml │ ├── dialog_color_picker.xml │ ├── folder_icon.xml │ ├── launcher.xml │ ├── live_folder_grid.xml │ ├── live_folder_icon.xml │ ├── new_drawer.xml │ ├── old_drawer.xml │ ├── user_folder.xml │ └── workspace_screen.xml ├── layout-port │ ├── application.xml │ ├── application_boxed.xml │ ├── folder_icon.xml │ ├── launcher.xml │ ├── live_folder_grid.xml │ ├── live_folder_icon.xml │ ├── new_drawer.xml │ ├── old_drawer.xml │ ├── user_folder.xml │ └── workspace_screen.xml ├── layout │ ├── activity_list.xml │ ├── add_list_item.xml │ ├── app_group_conf_list.xml │ ├── application_list.xml │ ├── appwidget_error.xml │ ├── custom_shortcuts.xml │ ├── custom_title1.xml │ ├── dialog_color_picker.xml │ ├── guide.xml │ ├── icon_picker.xml │ ├── list_item_icon_text.xml │ ├── live_folder_list.xml │ ├── number_picker.xml │ ├── preference_seekbar_dialog.xml │ ├── quickaction.xml │ ├── quickaction_item.xml │ ├── rename_folder.xml │ ├── rename_grp.xml │ ├── screens_editor.xml │ ├── theme_preview.xml │ └── widget_span_setup.xml ├── menu │ └── appinfo_menu.xml ├── values-land │ └── dimens.xml ├── values-zh-rCN │ ├── arrays.xml │ ├── changelog.xml │ ├── guide.xml │ └── strings.xml ├── values-zh │ ├── arrays.xml │ ├── changelog.xml │ ├── guide.xml │ └── strings.xml ├── values │ ├── arrays.xml │ ├── attrs.xml │ ├── changelog.xml │ ├── colors.xml │ ├── config.xml │ ├── dimens.xml │ ├── guide.xml │ ├── icon_pack.xml │ ├── ids.xml │ ├── qadimens.xml │ ├── qastyles.xml │ ├── strings.xml │ └── styles.xml └── xml │ ├── counter_filter.xml │ ├── debugging_settings.xml │ ├── default_workspace.xml │ ├── default_workspace2.xml │ ├── default_workspace_sense.xml │ ├── default_workspace_sense2.xml │ ├── default_workspace_touchwiz.xml │ ├── default_workspace_xperia.xml │ └── launcher_settings.xml └── src ├── com ├── devoteam │ └── quickaction │ │ ├── QuickActionItem.java │ │ └── QuickActionWindow.java └── wordpress │ └── chislonchow │ └── legacylauncher │ ├── ActionButton.java │ ├── ActivityPickerActivity.java │ ├── AddAdapter.java │ ├── AllAppsGridView.java │ ├── AllAppsSlidingView.java │ ├── AllAppsSlidingViewHolderLayout.java │ ├── ApplicationInfo.java │ ├── ApplicationsAdapter.java │ ├── BubbleTextView.java │ ├── CellLayout.java │ ├── CounterImageView.java │ ├── CounterReceiver.java │ ├── CounterTextView.java │ ├── CustomScroller.java │ ├── CustomShortcutActivity.java │ ├── DeleteZone.java │ ├── DesktopIndicator.java │ ├── DragController.java │ ├── DragLayer.java │ ├── DragScroller.java │ ├── DragSource.java │ ├── Drawer.java │ ├── DropTarget.java │ ├── ElasticInterpolator.java │ ├── FastBitmapDrawable.java │ ├── FlingGesture.java │ ├── Folder.java │ ├── FolderIcon.java │ ├── FolderIconReorderActivity.java │ ├── FolderInfo.java │ ├── GuideActivity.java │ ├── HandleView.java │ ├── IconHighlights.java │ ├── IconPicker.java │ ├── IconShader.java │ ├── InstallShortcutReceiver.java │ ├── ItemInfo.java │ ├── Launcher.java │ ├── LauncherActions.java │ ├── LauncherAppWidgetHost.java │ ├── LauncherAppWidgetHostView.java │ ├── LauncherAppWidgetInfo.java │ ├── LauncherApplication.java │ ├── LauncherModel.java │ ├── LauncherProvider.java │ ├── LauncherSettings.java │ ├── LiveFolder.java │ ├── LiveFolderAdapter.java │ ├── LiveFolderIcon.java │ ├── LiveFolderInfo.java │ ├── MyLauncherSettings.java │ ├── MyLauncherSettingsHelper.java │ ├── ObscuredSharedPreferences.java │ ├── PreviewPager.java │ ├── PreviewPreference.java │ ├── PreviewsHolder.java │ ├── ResizeViewHandler.java │ ├── ScreensAdapter.java │ ├── UninstallShortcutReceiver.java │ ├── UserFolder.java │ ├── UserFolderInfo.java │ ├── Utilities.java │ ├── ViewTagger.java │ ├── Workspace.java │ ├── catalogue │ ├── AppCatalogueFilter.java │ ├── AppCatalogueFilters.java │ ├── AppGroupAdapter.java │ ├── AppInfoListActivity.java │ ├── AppListInfo.java │ └── ApplicationListAdapter.java │ ├── ui │ ├── DialogSeekBarPreference.java │ ├── NumberPicker.java │ └── NumberPickerButton.java │ ├── util │ ├── Base64.java │ ├── FastXmlSerializer.java │ └── XmlUtils.java │ └── widgets │ └── DraggableListView.java ├── mobi └── intuitit │ └── android │ ├── content │ ├── LauncherIntent.java │ └── LauncherMetadata.java │ └── widget │ ├── BoundRemoteViews.java │ ├── ListViewImageManager.java │ ├── ScrollableBaseAdapter.java │ ├── SimpleRemoteViews.java │ ├── WidgetCellLayout.java │ ├── WidgetContentObserver.java │ ├── WidgetCursorAdapter.java │ ├── WidgetDataChangeListener.java │ ├── WidgetListAdapter.java │ ├── WidgetRemoteViewsListAdapter.java │ └── WidgetSpace.java ├── net └── margaritov │ └── preference │ └── colorpicker │ ├── AlphaPatternDrawable.java │ ├── ColorPickerDialog.java │ ├── ColorPickerPanelView.java │ ├── ColorPickerPreference.java │ └── ColorPickerView.java └── org └── metalev └── multitouch └── controller └── MultiTouchController.java /.gitignore: -------------------------------------------------------------------------------- 1 | .classpath 2 | .project 3 | bin/ 4 | gen/ 5 | 6 | -------------------------------------------------------------------------------- /Android.mk: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright (C) 2008 The Android Open Source 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 | 17 | LOCAL_PATH := $(call my-dir) 18 | include $(CLEAR_VARS) 19 | 20 | LOCAL_MODULE_TAGS := optional 21 | 22 | LOCAL_SRC_FILES := $(call all-subdir-java-files) 23 | 24 | LOCAL_PACKAGE_NAME := LegacyLauncher 25 | LOCAL_CERTIFICATE := shared 26 | 27 | LOCAL_OVERRIDES_PACKAGES := Home Launcher Launcher2 28 | 29 | include $(BUILD_PACKAGE) 30 | -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/MODULE_LICENSE_APACHE2 -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /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 use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android--10 12 | -------------------------------------------------------------------------------- /res/anim/all_apps_fade_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /res/anim/all_apps_fade_out.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /res/anim/all_apps_zoom_in.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 22 | 28 | -------------------------------------------------------------------------------- /res/anim/fade_in_fast.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /res/anim/fade_out_fast.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 24 | -------------------------------------------------------------------------------- /res/anim/fade_out_slow.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 23 | -------------------------------------------------------------------------------- /res/anim/quickaction_above_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 13 | 18 | 19 | -------------------------------------------------------------------------------- /res/anim/quickaction_above_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 12 | 13 | 18 | 19 | -------------------------------------------------------------------------------- /res/anim/quickaction_below_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /res/anim/quickaction_below_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /res/anim/slide_in_right.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 27 | 28 | -------------------------------------------------------------------------------- /res/color/bright_text_dark_focused.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /res/drawable-finger/quickaction_slider_btn.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | 20 | 22 | 24 | 26 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/ic_grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/ic_grabber.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_arrow_down.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_arrow_up.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_bottom_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_bottom_frame.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_slider_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_slider_background.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_slider_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_slider_btn_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_slider_btn_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_slider_btn_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_slider_btn_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_slider_btn_selected.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_slider_grip_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_slider_grip_left.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_slider_grip_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_slider_grip_right.png -------------------------------------------------------------------------------- /res/drawable-hdpi-finger/quickaction_top_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi-finger/quickaction_top_frame.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ab_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ab_empty.png -------------------------------------------------------------------------------- /res/drawable-hdpi/all_apps_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/all_apps_button.png -------------------------------------------------------------------------------- /res/drawable-hdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/arrow_left.png -------------------------------------------------------------------------------- /res/drawable-hdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/arrow_right.png -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_appwidget_error.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/bg_appwidget_error.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/box_launcher_bottom.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_top_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/box_launcher_top_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_top_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/box_launcher_top_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_top_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/box_launcher_top_selected.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/btn_add_item.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_delete_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/btn_delete_item.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_pin_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/btn_pin_item.png -------------------------------------------------------------------------------- /res/drawable-hdpi/btn_swap_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/btn_swap_item.png -------------------------------------------------------------------------------- /res/drawable-hdpi/camera_crop_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/camera_crop_height.png -------------------------------------------------------------------------------- /res/drawable-hdpi/camera_crop_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/camera_crop_width.png -------------------------------------------------------------------------------- /res/drawable-hdpi/delete_handle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/delete_handle.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/delete_handle_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/delete_handle_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/focused_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/focused_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_allapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_allapps.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_allappsadw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_allappsadw.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_delete.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_details.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_add_folder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_application.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_appwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_appwidget.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_custom_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_custom_shortcut.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_folder_open.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_home.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_launcher_wallpaper.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_menu_block.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_menu_grabber.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_menu_launcher_settings.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_menu_resize.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_menu_unblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_menu_unblock.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_search_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_search_widget.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/ic_transparent.png -------------------------------------------------------------------------------- /res/drawable-hdpi/indicator_autocrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/indicator_autocrop.png -------------------------------------------------------------------------------- /res/drawable-hdpi/list_section_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/list_section_divider_holo_dark.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/movetodefault_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/movetodefault_button.png -------------------------------------------------------------------------------- /res/drawable-hdpi/openclosenotifications_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/openclosenotifications_button.png -------------------------------------------------------------------------------- /res/drawable-hdpi/pager_dot_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/pager_dot_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/pager_dot_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/pager_dot_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/pressed_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/pressed_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/preview_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/preview_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/preview_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/preview_bg_focus.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/preview_bg_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/preview_bg_press.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/screen_guide_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/screen_guide_1.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/screen_guide_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/screen_guide_2.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/screen_guide_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/screen_guide_3.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/screen_guide_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/screen_guide_4.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/screen_guide_5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/screen_guide_5.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/screen_guide_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/screen_guide_6.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/screen_guide_7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/screen_guide_7.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/showhidestatusbar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/showhidestatusbar_button.png -------------------------------------------------------------------------------- /res/drawable-hdpi/showpreviews_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/showpreviews_button.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_down_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_down_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_down_disabled_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_down_disabled_focused.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_down_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_down_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_down_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_down_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_down_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_down_selected.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_input_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_input_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_input_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_input_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_input_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_input_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_input_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_input_selected.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_up_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_up_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_up_disabled_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_up_disabled_focused.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_up_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_up_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_up_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_up_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/timepicker_up_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-hdpi/timepicker_up_selected.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/hotseat_bg_center.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/hotseat_bg_center.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/hotseat_bg_center_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/hotseat_bg_center_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/hotseat_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/hotseat_bg_left.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/hotseat_bg_left_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/hotseat_bg_left_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/hotseat_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/hotseat_bg_right.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/hotseat_bg_right_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/hotseat_bg_right_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_0.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_1_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_1_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_1_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_1_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_1_press.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_1_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_1_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_2_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_2_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_2_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_2_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_2_press.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_2_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_2_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_3_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_3_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_3_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_3_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_3_press.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_3_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_3_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_4_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_4_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_4_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_4_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_4_press.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_4_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_4_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_5_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_5_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_5_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_5_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_5_press.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_5_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_5_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_6_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_6_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_6_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_6_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_6_press.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_home_arrows_6_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/ic_home_arrows_6_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/lab_rab_empty_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-hdpi/lab_rab_empty_bg.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/hotseat_bg_center.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/hotseat_bg_center.9.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/hotseat_bg_center_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/hotseat_bg_center_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/hotseat_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/hotseat_bg_left.9.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/hotseat_bg_left_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/hotseat_bg_left_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/hotseat_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/hotseat_bg_right.9.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/hotseat_bg_right_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/hotseat_bg_right_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_0.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_1_normal.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_1_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_1_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_1_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_1_press.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_1_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_1_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_2_normal.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_2_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_2_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_2_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_2_press.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_2_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_2_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_3_normal.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_3_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_3_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_3_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_3_press.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_3_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_3_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_4_normal.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_4_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_4_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_4_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_4_press.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_4_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_4_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_5_normal.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_5_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_5_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_5_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_5_press.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_5_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_5_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_6_normal.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_6_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_6_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_6_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_6_press.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/ic_home_arrows_6_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/ic_home_arrows_6_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-ldpi/lab_rab_empty_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-ldpi/lab_rab_empty_bg.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/hotseat_bg_center.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/hotseat_bg_center.9.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/hotseat_bg_center_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/hotseat_bg_center_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/hotseat_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/hotseat_bg_left.9.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/hotseat_bg_left_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/hotseat_bg_left_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/hotseat_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/hotseat_bg_right.9.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/hotseat_bg_right_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/hotseat_bg_right_focus.9.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_0.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_1_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_1_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_1_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_1_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_1_press.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_1_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_1_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_2_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_2_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_2_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_2_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_2_press.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_2_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_2_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_3_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_3_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_3_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_3_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_3_press.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_3_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_3_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_4_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_4_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_4_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_4_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_4_press.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_4_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_4_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_5_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_5_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_5_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_5_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_5_press.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_5_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_5_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_6_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_6_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_6_normal_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_6_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_6_press.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_home_arrows_6_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/ic_home_arrows_6_press_right.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/lab_rab_empty_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-land-mdpi/lab_rab_empty_bg.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/ic_grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/ic_grabber.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_arrow_down.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_arrow_up.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_slider_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_slider_background.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_slider_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_slider_btn_normal.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_slider_btn_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_slider_btn_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_slider_btn_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_slider_btn_selected.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_slider_grip_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_slider_grip_left.png -------------------------------------------------------------------------------- /res/drawable-ldpi-finger/quickaction_slider_grip_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi-finger/quickaction_slider_grip_right.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ab_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ab_empty.png -------------------------------------------------------------------------------- /res/drawable-ldpi/all_apps_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/all_apps_button.png -------------------------------------------------------------------------------- /res/drawable-ldpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/arrow_left.png -------------------------------------------------------------------------------- /res/drawable-ldpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/arrow_right.png -------------------------------------------------------------------------------- /res/drawable-ldpi/bg_appwidget_error.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/bg_appwidget_error.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/box_launcher_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/box_launcher_bottom.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/box_launcher_top_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/box_launcher_top_normal.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/box_launcher_top_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/box_launcher_top_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/box_launcher_top_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/box_launcher_top_selected.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/btn_add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/btn_add_item.png -------------------------------------------------------------------------------- /res/drawable-ldpi/btn_delete_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/btn_delete_item.png -------------------------------------------------------------------------------- /res/drawable-ldpi/btn_pin_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/btn_pin_item.png -------------------------------------------------------------------------------- /res/drawable-ldpi/btn_swap_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/btn_swap_item.png -------------------------------------------------------------------------------- /res/drawable-ldpi/camera_crop_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/camera_crop_height.png -------------------------------------------------------------------------------- /res/drawable-ldpi/camera_crop_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/camera_crop_width.png -------------------------------------------------------------------------------- /res/drawable-ldpi/delete_handle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/delete_handle.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/delete_handle_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/delete_handle_normal.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/focused_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/focused_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_allapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_allapps.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_allappsadw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_allappsadw.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_delete.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_details.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_add_folder.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_application.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_appwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_appwidget.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_custom_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_custom_shortcut.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_folder_open.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_home.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_launcher_wallpaper.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_menu_block.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_menu_grabber.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_menu_launcher_settings.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_menu_resize.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_menu_unblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_menu_unblock.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_search_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_search_widget.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/ic_transparent.png -------------------------------------------------------------------------------- /res/drawable-ldpi/indicator_autocrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/indicator_autocrop.png -------------------------------------------------------------------------------- /res/drawable-ldpi/list_section_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/list_section_divider_holo_dark.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/movetodefault_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/movetodefault_button.png -------------------------------------------------------------------------------- /res/drawable-ldpi/openclosenotifications_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/openclosenotifications_button.png -------------------------------------------------------------------------------- /res/drawable-ldpi/pager_dot_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/pager_dot_normal.png -------------------------------------------------------------------------------- /res/drawable-ldpi/pager_dot_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/pager_dot_selected.png -------------------------------------------------------------------------------- /res/drawable-ldpi/pressed_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/pressed_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/preview_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/preview_bg.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/preview_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/preview_bg_focus.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/preview_bg_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/preview_bg_press.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/showhidestatusbar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/showhidestatusbar_button.png -------------------------------------------------------------------------------- /res/drawable-ldpi/showpreviews_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/showpreviews_button.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_down_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_down_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_down_disabled_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_down_disabled_focused.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_down_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_down_normal.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_down_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_down_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_down_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_down_selected.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_input_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_input_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_input_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_input_normal.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_input_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_input_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_input_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_input_selected.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_up_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_up_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_up_disabled_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_up_disabled_focused.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_up_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_up_normal.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_up_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_up_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-ldpi/timepicker_up_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-ldpi/timepicker_up_selected.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/ic_grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/ic_grabber.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_arrow_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_arrow_down.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_arrow_up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_arrow_up.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_bottom_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_bottom_frame.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_slider_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_slider_background.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_slider_btn_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_slider_btn_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_slider_btn_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_slider_btn_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_slider_btn_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_slider_btn_selected.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_slider_grip_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_slider_grip_left.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_slider_grip_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_slider_grip_right.png -------------------------------------------------------------------------------- /res/drawable-mdpi-finger/quickaction_top_frame.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi-finger/quickaction_top_frame.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ab_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ab_empty.png -------------------------------------------------------------------------------- /res/drawable-mdpi/all_apps_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/all_apps_button.png -------------------------------------------------------------------------------- /res/drawable-mdpi/arrow_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/arrow_left.png -------------------------------------------------------------------------------- /res/drawable-mdpi/arrow_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/arrow_right.png -------------------------------------------------------------------------------- /res/drawable-mdpi/bg_appwidget_error.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/bg_appwidget_error.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/box_launcher_bottom.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_top_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/box_launcher_top_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_top_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/box_launcher_top_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_top_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/box_launcher_top_selected.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_add_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/btn_add_item.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_delete_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/btn_delete_item.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_pin_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/btn_pin_item.png -------------------------------------------------------------------------------- /res/drawable-mdpi/btn_swap_item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/btn_swap_item.png -------------------------------------------------------------------------------- /res/drawable-mdpi/camera_crop_height.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/camera_crop_height.png -------------------------------------------------------------------------------- /res/drawable-mdpi/camera_crop_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/camera_crop_width.png -------------------------------------------------------------------------------- /res/drawable-mdpi/delete_handle.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/delete_handle.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/delete_handle_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/delete_handle_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/focused_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/focused_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_allapps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_allapps.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_allappsadw.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_allappsadw.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_delete.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_details.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_add_folder.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_application.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_appwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_appwidget.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_custom_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_custom_shortcut.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_folder_open.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_home.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_launcher_wallpaper.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_block.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_menu_block.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_grabber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_menu_grabber.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_launcher_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_menu_launcher_settings.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_resize.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_menu_resize.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_menu_unblock.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_menu_unblock.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_search_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_search_widget.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/ic_transparent.png -------------------------------------------------------------------------------- /res/drawable-mdpi/indicator_autocrop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/indicator_autocrop.png -------------------------------------------------------------------------------- /res/drawable-mdpi/list_section_divider_holo_dark.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/list_section_divider_holo_dark.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/movetodefault_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/movetodefault_button.png -------------------------------------------------------------------------------- /res/drawable-mdpi/openclosenotifications_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/openclosenotifications_button.png -------------------------------------------------------------------------------- /res/drawable-mdpi/pager_dot_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/pager_dot_normal.png -------------------------------------------------------------------------------- /res/drawable-mdpi/pager_dot_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/pager_dot_selected.png -------------------------------------------------------------------------------- /res/drawable-mdpi/pressed_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/pressed_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/preview_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/preview_bg.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/preview_bg_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/preview_bg_focus.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/preview_bg_press.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/preview_bg_press.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/showhidestatusbar_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/showhidestatusbar_button.png -------------------------------------------------------------------------------- /res/drawable-mdpi/showpreviews_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/showpreviews_button.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_down_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_down_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_down_disabled_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_down_disabled_focused.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_down_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_down_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_down_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_down_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_down_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_down_selected.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_input_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_input_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_input_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_input_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_input_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_input_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_input_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_input_selected.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_up_disabled.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_up_disabled.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_up_disabled_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_up_disabled_focused.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_up_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_up_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_up_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_up_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/timepicker_up_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-mdpi/timepicker_up_selected.9.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/hotseat_bg_center.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/hotseat_bg_center.9.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/hotseat_bg_center_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/hotseat_bg_center_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/hotseat_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/hotseat_bg_left.9.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/hotseat_bg_left_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/hotseat_bg_left_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/hotseat_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/hotseat_bg_right.9.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/hotseat_bg_right_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/hotseat_bg_right_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_0.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_1_normal.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_1_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_1_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_1_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_1_press.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_1_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_1_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_2_normal.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_2_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_2_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_2_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_2_press.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_2_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_2_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_3_normal.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_3_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_3_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_3_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_3_press.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_3_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_3_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_4_normal.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_4_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_4_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_4_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_4_press.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_4_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_4_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_5_normal.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_5_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_5_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_5_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_5_press.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_5_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_5_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_6_normal.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_6_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_6_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_6_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_6_press.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/ic_home_arrows_6_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/ic_home_arrows_6_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-hdpi/lab_rab_empty_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-hdpi/lab_rab_empty_bg.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/hotseat_bg_center.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/hotseat_bg_center.9.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/hotseat_bg_center_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/hotseat_bg_center_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/hotseat_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/hotseat_bg_left.9.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/hotseat_bg_left_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/hotseat_bg_left_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/hotseat_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/hotseat_bg_right.9.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/hotseat_bg_right_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/hotseat_bg_right_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_0.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_1_normal.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_1_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_1_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_1_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_1_press.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_1_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_1_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_2_normal.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_2_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_2_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_2_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_2_press.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_2_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_2_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_3_normal.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_3_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_3_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_3_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_3_press.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_3_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_3_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_4_normal.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_4_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_4_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_4_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_4_press.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_4_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_4_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_5_normal.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_5_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_5_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_5_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_5_press.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_5_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_5_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_6_normal.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_6_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_6_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_6_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_6_press.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/ic_home_arrows_6_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/ic_home_arrows_6_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-ldpi/lab_rab_empty_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-ldpi/lab_rab_empty_bg.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/hotseat_bg_center.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/hotseat_bg_center.9.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/hotseat_bg_center_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/hotseat_bg_center_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/hotseat_bg_left.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/hotseat_bg_left.9.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/hotseat_bg_left_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/hotseat_bg_left_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/hotseat_bg_right.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/hotseat_bg_right.9.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/hotseat_bg_right_focus.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/hotseat_bg_right_focus.9.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_0.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_1_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_1_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_1_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_1_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_1_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_1_press.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_1_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_1_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_2_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_2_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_2_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_2_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_2_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_2_press.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_2_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_2_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_3_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_3_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_3_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_3_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_3_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_3_press.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_3_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_3_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_4_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_4_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_4_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_4_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_4_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_4_press.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_4_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_4_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_5_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_5_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_5_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_5_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_5_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_5_press.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_5_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_5_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_6_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_6_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_6_normal_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_6_normal_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_6_press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_6_press.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_home_arrows_6_press_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/ic_home_arrows_6_press_right.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/lab_rab_empty_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chislon/LegacyLauncher/95273bf6c89f1f5746868d0f02b33e5d9236c4a8/res/drawable-port-mdpi/lab_rab_empty_bg.png -------------------------------------------------------------------------------- /res/drawable/box_launcher_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | -------------------------------------------------------------------------------- /res/drawable/delete_zone_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 24 | 25 | -------------------------------------------------------------------------------- /res/drawable/grid_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_left_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_left_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_left_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_left_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_left_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_left_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_left_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_right_0.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_right_1.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_right_2.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_right_3.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_right_4.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_right_5.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/home_arrows_right_6.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/lab2_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/lab_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/mab_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/pager_dots.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /res/drawable/preview_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/rab2_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/rab_bg.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /res/drawable/shortcut_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /res/drawable/togglebutton_arrows_up_down.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /res/layout-land/application.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | -------------------------------------------------------------------------------- /res/layout-land/folder_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | -------------------------------------------------------------------------------- /res/layout-land/live_folder_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 22 | -------------------------------------------------------------------------------- /res/layout-port/application.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | -------------------------------------------------------------------------------- /res/layout-port/folder_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 19 | -------------------------------------------------------------------------------- /res/layout-port/live_folder_icon.xml: -------------------------------------------------------------------------------- 1 | 2 | 19 | 20 | 22 | -------------------------------------------------------------------------------- /res/layout/activity_list.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | -------------------------------------------------------------------------------- /res/layout/add_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /res/layout/appwidget_error.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 30 | -------------------------------------------------------------------------------- /res/layout/custom_title1.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 22 | 23 | 30 | 31 | -------------------------------------------------------------------------------- /res/layout/icon_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 18 | 19 |