├── Android.mk ├── AndroidManifest.xml ├── MODULE_LICENSE_APACHE2 ├── NOTICE ├── res ├── anim │ ├── fade_in_fast.xml │ └── fade_out_fast.xml ├── color │ └── bright_text_dark_focused.xml ├── drawable-hdpi │ ├── 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 │ ├── delete_handle.png │ ├── delete_handle_normal.png │ ├── focused_application_background.9.png │ ├── ic_delete.png │ ├── ic_launcher_add_folder.png │ ├── ic_launcher_application.png │ ├── ic_launcher_appwidget.png │ ├── ic_launcher_folder.png │ ├── ic_launcher_folder_live.png │ ├── ic_launcher_folder_open.png │ ├── ic_launcher_gallery.png │ ├── ic_launcher_home.png │ ├── ic_launcher_shortcut.png │ ├── ic_launcher_wallpaper.png │ ├── ic_search_widget.png │ ├── ic_tray_collapse.png │ ├── ic_tray_expand.png │ ├── pattern_carbon_fiber_dark.png │ ├── placeholder_google.png │ ├── search_button_bg.9.png │ ├── search_button_voice.png │ ├── search_floater.9.png │ ├── textfield_searchwidget_default.9.png │ ├── textfield_searchwidget_pressed.9.png │ ├── textfield_searchwidget_selected.9.png │ ├── tray_handle_normal.png │ ├── tray_handle_pressed.png │ ├── tray_handle_selected.png │ ├── wallpaper_bentgrass.jpg │ ├── wallpaper_bentgrass_small.jpg │ ├── wallpaper_canyon.jpg │ ├── wallpaper_canyon_small.jpg │ ├── wallpaper_despair.jpg │ ├── wallpaper_despair_small.jpg │ ├── wallpaper_electric.jpg │ ├── wallpaper_electric_small.jpg │ ├── wallpaper_goldengate.jpg │ ├── wallpaper_goldengate_small.jpg │ ├── wallpaper_grass.jpg │ ├── wallpaper_grass_small.jpg │ ├── wallpaper_jellyfish.jpg │ ├── wallpaper_jellyfish_small.jpg │ ├── wallpaper_leaves.jpg │ ├── wallpaper_leaves_small.jpg │ ├── wallpaper_monumentvalley.jpg │ ├── wallpaper_monumentvalley_small.jpg │ ├── wallpaper_paradise.jpg │ ├── wallpaper_paradise_small.jpg │ ├── wallpaper_rainbokeh.jpg │ ├── wallpaper_rainbokeh_small.jpg │ ├── wallpaper_ricefield.jpg │ ├── wallpaper_ricefield_small.jpg │ ├── wallpaper_sunset.jpg │ ├── wallpaper_sunset_small.jpg │ ├── wallpaper_tree.jpg │ ├── wallpaper_tree_small.jpg │ ├── wallpaper_valley.jpg │ └── wallpaper_valley_small.jpg ├── drawable-land-hdpi │ ├── delete_handle.png │ ├── delete_handle_normal.png │ ├── ic_delete.png │ ├── ic_tray_collapse.png │ ├── ic_tray_expand.png │ ├── tray_handle_normal.png │ ├── tray_handle_pressed.png │ └── tray_handle_selected.png ├── drawable-land-mdpi │ ├── delete_handle.png │ ├── delete_handle_normal.png │ ├── ic_delete.png │ ├── ic_tray_collapse.png │ ├── ic_tray_expand.png │ ├── tray_handle_normal.png │ ├── tray_handle_pressed.png │ └── tray_handle_selected.png ├── drawable-mdpi │ ├── 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 │ ├── focused_application_background.9.png │ ├── ic_launcher_add_folder.png │ ├── ic_launcher_application.png │ ├── ic_launcher_appwidget.png │ ├── ic_launcher_folder.png │ ├── ic_launcher_folder_live.png │ ├── ic_launcher_folder_open.png │ ├── ic_launcher_gallery.png │ ├── ic_launcher_home.png │ ├── ic_launcher_shortcut.png │ ├── ic_launcher_wallpaper.png │ ├── ic_search_widget.png │ ├── pattern_carbon_fiber_dark.png │ ├── placeholder_google.png │ ├── search_button_bg.9.png │ ├── search_button_voice.png │ ├── search_floater.9.png │ ├── textfield_searchwidget_default.9.png │ ├── textfield_searchwidget_pressed.9.png │ ├── textfield_searchwidget_selected.9.png │ ├── wallpaper_cm_nexus_08.jpg │ ├── wallpaper_cm_nexus_08_small.jpg │ ├── wallpaper_galaxy.jpg │ ├── wallpaper_galaxy_small.jpg │ ├── wallpaper_hazybluedots.jpg │ ├── wallpaper_hazybluedots_small.jpg │ ├── wallpaper_nexuspattern.jpg │ ├── wallpaper_nexuspattern_small.jpg │ ├── wallpaper_nexusrain.jpg │ ├── wallpaper_nexusrain_small.jpg │ ├── wallpaper_pcut.jpg │ ├── wallpaper_pcut_small.jpg │ ├── wallpaper_prash_arrowd_blue.jpg │ ├── wallpaper_prash_arrowd_blue_small.jpg │ ├── wallpaper_prash_arrowd_green.jpg │ ├── wallpaper_prash_arrowd_green_small.jpg │ ├── wallpaper_prash_arrowd_pink.jpg │ ├── wallpaper_prash_arrowd_pink_small.jpg │ ├── wallpaper_prash_cm_girls.jpg │ ├── wallpaper_prash_cm_girls_small.jpg │ ├── wallpaper_prash_nexus_surf.jpg │ ├── wallpaper_prash_nexus_surf_small.jpg │ ├── wallpaper_skate.jpg │ ├── wallpaper_skate_small.jpg │ ├── wallpaper_x67.jpg │ └── wallpaper_x67_small.jpg ├── drawable-port-mdpi │ ├── delete_handle.png │ ├── delete_handle_normal.png │ ├── ic_delete.png │ ├── ic_tray_collapse.png │ ├── ic_tray_expand.png │ ├── tray_handle_normal.png │ ├── tray_handle_pressed.png │ └── tray_handle_selected.png ├── drawable │ ├── box_launcher_top.xml │ ├── delete_zone_selector.xml │ ├── grid_selector.xml │ ├── handle.xml │ ├── handle_icon.xml │ ├── pressed_application_background.9.png │ ├── shortcut_selector.xml │ └── textfield_searchwidget.xml ├── layout-land │ ├── application.xml │ ├── application_boxed.xml │ ├── folder_icon.xml │ ├── launcher.xml │ ├── live_folder_grid.xml │ ├── live_folder_icon.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 │ ├── user_folder.xml │ └── workspace_screen.xml ├── layout │ ├── add_list_item.xml │ ├── application_list.xml │ ├── appwidget_error.xml │ ├── list_category.xml │ ├── list_checkbox_2lines.xml │ ├── live_folder_list.xml │ ├── rename_folder.xml │ ├── wallpaper_chooser.xml │ ├── wallpaper_item.xml │ └── widget_search.xml ├── values-cs │ └── strings.xml ├── values-da │ └── strings.xml ├── values-de │ └── strings.xml ├── values-el │ └── strings.xml ├── values-es-rUS │ └── strings.xml ├── values-es │ └── strings.xml ├── values-fr │ └── strings.xml ├── values-hdpi │ └── wallpapers.xml ├── values-it │ └── strings.xml ├── values-ja │ └── strings.xml ├── values-ko │ └── strings.xml ├── values-land │ └── dimens.xml ├── values-mdpi │ └── wallpapers.xml ├── values-nb │ └── strings.xml ├── values-nl │ └── strings.xml ├── values-pl │ └── strings.xml ├── values-pt-rPT │ └── strings.xml ├── values-pt │ └── strings.xml ├── values-ru │ └── strings.xml ├── values-sv │ └── strings.xml ├── values-tr │ └── strings.xml ├── values-zh-rCN │ └── strings.xml ├── values-zh-rTW │ └── strings.xml ├── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── extra_wallpapers.xml │ ├── strings.xml │ └── styles.xml └── xml │ └── default_workspace.xml └── src ├── com └── android │ └── launcher │ ├── AddAdapter.java │ ├── AllAppsGridView.java │ ├── ApplicationInfo.java │ ├── ApplicationsAdapter.java │ ├── BubbleTextView.java │ ├── CellLayout.java │ ├── DeleteZone.java │ ├── DragController.java │ ├── DragLayer.java │ ├── DragScroller.java │ ├── DragSource.java │ ├── DropTarget.java │ ├── FastBitmapDrawable.java │ ├── Folder.java │ ├── FolderIcon.java │ ├── FolderInfo.java │ ├── HandleView.java │ ├── InstallShortcutReceiver.java │ ├── ItemInfo.java │ ├── Launcher.java │ ├── LauncherAppWidgetHost.java │ ├── LauncherAppWidgetHostView.java │ ├── LauncherAppWidgetInfo.java │ ├── LauncherApplication.java │ ├── LauncherModel.java │ ├── LauncherProvider.java │ ├── LauncherSettings.java │ ├── LiveFolder.java │ ├── LiveFolderAdapter.java │ ├── LiveFolderIcon.java │ ├── LiveFolderInfo.java │ ├── Search.java │ ├── UninstallShortcutReceiver.java │ ├── UserFolder.java │ ├── UserFolderInfo.java │ ├── Utilities.java │ ├── WallpaperChooser.java │ ├── Widget.java │ └── Workspace.java └── org └── adw └── launcher ├── CustomScroller.java └── ElasticInterpolator.java /Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/Android.mk -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /MODULE_LICENSE_APACHE2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/NOTICE -------------------------------------------------------------------------------- /res/anim/fade_in_fast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/anim/fade_in_fast.xml -------------------------------------------------------------------------------- /res/anim/fade_out_fast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/anim/fade_out_fast.xml -------------------------------------------------------------------------------- /res/color/bright_text_dark_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/color/bright_text_dark_focused.xml -------------------------------------------------------------------------------- /res/drawable-hdpi/bg_appwidget_error.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/bg_appwidget_error.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/box_launcher_bottom.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_top_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/box_launcher_top_normal.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_top_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/box_launcher_top_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/box_launcher_top_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/box_launcher_top_selected.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/delete_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/delete_handle.png -------------------------------------------------------------------------------- /res/drawable-hdpi/delete_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/delete_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/focused_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/focused_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_delete.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_add_folder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_application.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_appwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_appwidget.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_folder_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_folder_live.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_folder_open.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_gallery.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_home.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_launcher_wallpaper.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_search_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_search_widget.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_tray_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_tray_collapse.png -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_tray_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/ic_tray_expand.png -------------------------------------------------------------------------------- /res/drawable-hdpi/pattern_carbon_fiber_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/pattern_carbon_fiber_dark.png -------------------------------------------------------------------------------- /res/drawable-hdpi/placeholder_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/placeholder_google.png -------------------------------------------------------------------------------- /res/drawable-hdpi/search_button_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/search_button_bg.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/search_button_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/search_button_voice.png -------------------------------------------------------------------------------- /res/drawable-hdpi/search_floater.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/search_floater.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_searchwidget_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/textfield_searchwidget_default.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_searchwidget_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/textfield_searchwidget_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/textfield_searchwidget_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/textfield_searchwidget_selected.9.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tray_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/tray_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tray_handle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/tray_handle_pressed.png -------------------------------------------------------------------------------- /res/drawable-hdpi/tray_handle_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/tray_handle_selected.png -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_bentgrass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_bentgrass.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_bentgrass_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_bentgrass_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_canyon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_canyon.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_canyon_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_canyon_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_despair.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_despair.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_despair_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_despair_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_electric.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_electric.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_electric_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_electric_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_goldengate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_goldengate.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_goldengate_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_goldengate_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_grass.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_grass.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_grass_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_grass_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_jellyfish.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_jellyfish.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_jellyfish_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_jellyfish_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_leaves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_leaves.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_leaves_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_leaves_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_monumentvalley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_monumentvalley.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_monumentvalley_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_monumentvalley_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_paradise.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_paradise.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_paradise_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_paradise_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_rainbokeh.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_rainbokeh.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_rainbokeh_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_rainbokeh_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_ricefield.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_ricefield.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_ricefield_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_ricefield_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_sunset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_sunset.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_sunset_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_sunset_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_tree.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_tree.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_tree_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_tree_small.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_valley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_valley.jpg -------------------------------------------------------------------------------- /res/drawable-hdpi/wallpaper_valley_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-hdpi/wallpaper_valley_small.jpg -------------------------------------------------------------------------------- /res/drawable-land-hdpi/delete_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/delete_handle.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/delete_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/delete_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/ic_delete.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_tray_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/ic_tray_collapse.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/ic_tray_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/ic_tray_expand.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/tray_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/tray_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/tray_handle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/tray_handle_pressed.png -------------------------------------------------------------------------------- /res/drawable-land-hdpi/tray_handle_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-hdpi/tray_handle_selected.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/delete_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/delete_handle.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/delete_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/delete_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/ic_delete.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_tray_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/ic_tray_collapse.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/ic_tray_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/ic_tray_expand.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/tray_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/tray_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/tray_handle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/tray_handle_pressed.png -------------------------------------------------------------------------------- /res/drawable-land-mdpi/tray_handle_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-land-mdpi/tray_handle_selected.png -------------------------------------------------------------------------------- /res/drawable-mdpi/bg_appwidget_error.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/bg_appwidget_error.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_bottom.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/box_launcher_bottom.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_top_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/box_launcher_top_normal.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_top_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/box_launcher_top_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/box_launcher_top_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/box_launcher_top_selected.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/focused_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/focused_application_background.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_add_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_add_folder.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_application.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_appwidget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_appwidget.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_folder.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_folder_live.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_folder_live.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_folder_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_folder_open.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_gallery.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_gallery.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_home.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_shortcut.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_shortcut.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher_wallpaper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_launcher_wallpaper.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_search_widget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/ic_search_widget.png -------------------------------------------------------------------------------- /res/drawable-mdpi/pattern_carbon_fiber_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/pattern_carbon_fiber_dark.png -------------------------------------------------------------------------------- /res/drawable-mdpi/placeholder_google.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/placeholder_google.png -------------------------------------------------------------------------------- /res/drawable-mdpi/search_button_bg.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/search_button_bg.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/search_button_voice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/search_button_voice.png -------------------------------------------------------------------------------- /res/drawable-mdpi/search_floater.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/search_floater.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_searchwidget_default.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/textfield_searchwidget_default.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_searchwidget_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/textfield_searchwidget_pressed.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/textfield_searchwidget_selected.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/textfield_searchwidget_selected.9.png -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_cm_nexus_08.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_cm_nexus_08.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_cm_nexus_08_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_cm_nexus_08_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_galaxy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_galaxy.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_galaxy_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_galaxy_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_hazybluedots.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_hazybluedots.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_hazybluedots_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_hazybluedots_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_nexuspattern.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_nexuspattern.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_nexuspattern_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_nexuspattern_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_nexusrain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_nexusrain.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_nexusrain_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_nexusrain_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_pcut.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_pcut.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_pcut_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_pcut_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_arrowd_blue.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_arrowd_blue.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_arrowd_blue_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_arrowd_blue_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_arrowd_green.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_arrowd_green.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_arrowd_green_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_arrowd_green_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_arrowd_pink.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_arrowd_pink.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_arrowd_pink_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_arrowd_pink_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_cm_girls.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_cm_girls.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_cm_girls_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_cm_girls_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_nexus_surf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_nexus_surf.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_prash_nexus_surf_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_prash_nexus_surf_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_skate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_skate.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_skate_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_skate_small.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_x67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_x67.jpg -------------------------------------------------------------------------------- /res/drawable-mdpi/wallpaper_x67_small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-mdpi/wallpaper_x67_small.jpg -------------------------------------------------------------------------------- /res/drawable-port-mdpi/delete_handle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/delete_handle.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/delete_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/delete_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/ic_delete.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_tray_collapse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/ic_tray_collapse.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/ic_tray_expand.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/ic_tray_expand.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/tray_handle_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/tray_handle_normal.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/tray_handle_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/tray_handle_pressed.png -------------------------------------------------------------------------------- /res/drawable-port-mdpi/tray_handle_selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable-port-mdpi/tray_handle_selected.png -------------------------------------------------------------------------------- /res/drawable/box_launcher_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/box_launcher_top.xml -------------------------------------------------------------------------------- /res/drawable/delete_zone_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/delete_zone_selector.xml -------------------------------------------------------------------------------- /res/drawable/grid_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/grid_selector.xml -------------------------------------------------------------------------------- /res/drawable/handle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/handle.xml -------------------------------------------------------------------------------- /res/drawable/handle_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/handle_icon.xml -------------------------------------------------------------------------------- /res/drawable/pressed_application_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/pressed_application_background.9.png -------------------------------------------------------------------------------- /res/drawable/shortcut_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/shortcut_selector.xml -------------------------------------------------------------------------------- /res/drawable/textfield_searchwidget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/drawable/textfield_searchwidget.xml -------------------------------------------------------------------------------- /res/layout-land/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/application.xml -------------------------------------------------------------------------------- /res/layout-land/application_boxed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/application_boxed.xml -------------------------------------------------------------------------------- /res/layout-land/folder_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/folder_icon.xml -------------------------------------------------------------------------------- /res/layout-land/launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/launcher.xml -------------------------------------------------------------------------------- /res/layout-land/live_folder_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/live_folder_grid.xml -------------------------------------------------------------------------------- /res/layout-land/live_folder_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/live_folder_icon.xml -------------------------------------------------------------------------------- /res/layout-land/user_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/user_folder.xml -------------------------------------------------------------------------------- /res/layout-land/workspace_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-land/workspace_screen.xml -------------------------------------------------------------------------------- /res/layout-port/application.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/application.xml -------------------------------------------------------------------------------- /res/layout-port/application_boxed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/application_boxed.xml -------------------------------------------------------------------------------- /res/layout-port/folder_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/folder_icon.xml -------------------------------------------------------------------------------- /res/layout-port/launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/launcher.xml -------------------------------------------------------------------------------- /res/layout-port/live_folder_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/live_folder_grid.xml -------------------------------------------------------------------------------- /res/layout-port/live_folder_icon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/live_folder_icon.xml -------------------------------------------------------------------------------- /res/layout-port/user_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/user_folder.xml -------------------------------------------------------------------------------- /res/layout-port/workspace_screen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout-port/workspace_screen.xml -------------------------------------------------------------------------------- /res/layout/add_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/add_list_item.xml -------------------------------------------------------------------------------- /res/layout/application_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/application_list.xml -------------------------------------------------------------------------------- /res/layout/appwidget_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/appwidget_error.xml -------------------------------------------------------------------------------- /res/layout/list_category.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/list_category.xml -------------------------------------------------------------------------------- /res/layout/list_checkbox_2lines.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/list_checkbox_2lines.xml -------------------------------------------------------------------------------- /res/layout/live_folder_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/live_folder_list.xml -------------------------------------------------------------------------------- /res/layout/rename_folder.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/rename_folder.xml -------------------------------------------------------------------------------- /res/layout/wallpaper_chooser.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/wallpaper_chooser.xml -------------------------------------------------------------------------------- /res/layout/wallpaper_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/wallpaper_item.xml -------------------------------------------------------------------------------- /res/layout/widget_search.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/layout/widget_search.xml -------------------------------------------------------------------------------- /res/values-cs/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-cs/strings.xml -------------------------------------------------------------------------------- /res/values-da/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-da/strings.xml -------------------------------------------------------------------------------- /res/values-de/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-de/strings.xml -------------------------------------------------------------------------------- /res/values-el/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-el/strings.xml -------------------------------------------------------------------------------- /res/values-es-rUS/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-es-rUS/strings.xml -------------------------------------------------------------------------------- /res/values-es/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-es/strings.xml -------------------------------------------------------------------------------- /res/values-fr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-fr/strings.xml -------------------------------------------------------------------------------- /res/values-hdpi/wallpapers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-hdpi/wallpapers.xml -------------------------------------------------------------------------------- /res/values-it/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-it/strings.xml -------------------------------------------------------------------------------- /res/values-ja/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-ja/strings.xml -------------------------------------------------------------------------------- /res/values-ko/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-ko/strings.xml -------------------------------------------------------------------------------- /res/values-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-land/dimens.xml -------------------------------------------------------------------------------- /res/values-mdpi/wallpapers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-mdpi/wallpapers.xml -------------------------------------------------------------------------------- /res/values-nb/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-nb/strings.xml -------------------------------------------------------------------------------- /res/values-nl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-nl/strings.xml -------------------------------------------------------------------------------- /res/values-pl/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-pl/strings.xml -------------------------------------------------------------------------------- /res/values-pt-rPT/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-pt-rPT/strings.xml -------------------------------------------------------------------------------- /res/values-pt/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-pt/strings.xml -------------------------------------------------------------------------------- /res/values-ru/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-ru/strings.xml -------------------------------------------------------------------------------- /res/values-sv/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-sv/strings.xml -------------------------------------------------------------------------------- /res/values-tr/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-tr/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rCN/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-zh-rCN/strings.xml -------------------------------------------------------------------------------- /res/values-zh-rTW/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values-zh-rTW/strings.xml -------------------------------------------------------------------------------- /res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values/attrs.xml -------------------------------------------------------------------------------- /res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values/colors.xml -------------------------------------------------------------------------------- /res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values/dimens.xml -------------------------------------------------------------------------------- /res/values/extra_wallpapers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values/extra_wallpapers.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /res/xml/default_workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/res/xml/default_workspace.xml -------------------------------------------------------------------------------- /src/com/android/launcher/AddAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/AddAdapter.java -------------------------------------------------------------------------------- /src/com/android/launcher/AllAppsGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/AllAppsGridView.java -------------------------------------------------------------------------------- /src/com/android/launcher/ApplicationInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/ApplicationInfo.java -------------------------------------------------------------------------------- /src/com/android/launcher/ApplicationsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/ApplicationsAdapter.java -------------------------------------------------------------------------------- /src/com/android/launcher/BubbleTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/BubbleTextView.java -------------------------------------------------------------------------------- /src/com/android/launcher/CellLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/CellLayout.java -------------------------------------------------------------------------------- /src/com/android/launcher/DeleteZone.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/DeleteZone.java -------------------------------------------------------------------------------- /src/com/android/launcher/DragController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/DragController.java -------------------------------------------------------------------------------- /src/com/android/launcher/DragLayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/DragLayer.java -------------------------------------------------------------------------------- /src/com/android/launcher/DragScroller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/DragScroller.java -------------------------------------------------------------------------------- /src/com/android/launcher/DragSource.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/DragSource.java -------------------------------------------------------------------------------- /src/com/android/launcher/DropTarget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/DropTarget.java -------------------------------------------------------------------------------- /src/com/android/launcher/FastBitmapDrawable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/FastBitmapDrawable.java -------------------------------------------------------------------------------- /src/com/android/launcher/Folder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/Folder.java -------------------------------------------------------------------------------- /src/com/android/launcher/FolderIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/FolderIcon.java -------------------------------------------------------------------------------- /src/com/android/launcher/FolderInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/FolderInfo.java -------------------------------------------------------------------------------- /src/com/android/launcher/HandleView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/HandleView.java -------------------------------------------------------------------------------- /src/com/android/launcher/InstallShortcutReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/InstallShortcutReceiver.java -------------------------------------------------------------------------------- /src/com/android/launcher/ItemInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/ItemInfo.java -------------------------------------------------------------------------------- /src/com/android/launcher/Launcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/Launcher.java -------------------------------------------------------------------------------- /src/com/android/launcher/LauncherAppWidgetHost.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LauncherAppWidgetHost.java -------------------------------------------------------------------------------- /src/com/android/launcher/LauncherAppWidgetHostView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LauncherAppWidgetHostView.java -------------------------------------------------------------------------------- /src/com/android/launcher/LauncherAppWidgetInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LauncherAppWidgetInfo.java -------------------------------------------------------------------------------- /src/com/android/launcher/LauncherApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LauncherApplication.java -------------------------------------------------------------------------------- /src/com/android/launcher/LauncherModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LauncherModel.java -------------------------------------------------------------------------------- /src/com/android/launcher/LauncherProvider.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LauncherProvider.java -------------------------------------------------------------------------------- /src/com/android/launcher/LauncherSettings.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LauncherSettings.java -------------------------------------------------------------------------------- /src/com/android/launcher/LiveFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LiveFolder.java -------------------------------------------------------------------------------- /src/com/android/launcher/LiveFolderAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LiveFolderAdapter.java -------------------------------------------------------------------------------- /src/com/android/launcher/LiveFolderIcon.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LiveFolderIcon.java -------------------------------------------------------------------------------- /src/com/android/launcher/LiveFolderInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/LiveFolderInfo.java -------------------------------------------------------------------------------- /src/com/android/launcher/Search.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/Search.java -------------------------------------------------------------------------------- /src/com/android/launcher/UninstallShortcutReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/UninstallShortcutReceiver.java -------------------------------------------------------------------------------- /src/com/android/launcher/UserFolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/UserFolder.java -------------------------------------------------------------------------------- /src/com/android/launcher/UserFolderInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/UserFolderInfo.java -------------------------------------------------------------------------------- /src/com/android/launcher/Utilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/Utilities.java -------------------------------------------------------------------------------- /src/com/android/launcher/WallpaperChooser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/WallpaperChooser.java -------------------------------------------------------------------------------- /src/com/android/launcher/Widget.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/Widget.java -------------------------------------------------------------------------------- /src/com/android/launcher/Workspace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/com/android/launcher/Workspace.java -------------------------------------------------------------------------------- /src/org/adw/launcher/CustomScroller.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/org/adw/launcher/CustomScroller.java -------------------------------------------------------------------------------- /src/org/adw/launcher/ElasticInterpolator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CyanogenMod/android_packages_apps_Launcher/HEAD/src/org/adw/launcher/ElasticInterpolator.java --------------------------------------------------------------------------------