├── .gitignore ├── CustomizeLayoutExample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── delaroystudios │ │ └── photoedit │ │ ├── Application.java │ │ └── MainActivity.java │ └── res │ ├── drawable-hdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-ldpi │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ └── imgly_icon_text_right.png │ ├── drawable-mdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-nodpi │ └── imgly_lut_identity.png │ ├── drawable-xhdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-xxhdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-xxxhdpi │ ├── imgly_button_shutter_animation_frame_00001.png │ ├── imgly_button_shutter_animation_frame_00002.png │ ├── imgly_button_shutter_animation_frame_00003.png │ ├── imgly_button_shutter_animation_frame_00004.png │ ├── imgly_button_shutter_animation_frame_00005.png │ ├── imgly_button_shutter_animation_frame_00006.png │ ├── imgly_button_shutter_animation_frame_00007.png │ ├── imgly_button_shutter_animation_frame_00008.png │ ├── imgly_button_shutter_animation_frame_00009.png │ ├── imgly_button_shutter_animation_frame_00010.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ └── imgly_icon_tool_text.png │ ├── drawable │ ├── imgly_background_transparent_indentity.xml │ ├── imgly_button.xml │ ├── imgly_button_click_overlay.xml │ ├── imgly_button_disabled.xml │ ├── imgly_button_normal.xml │ ├── imgly_button_pressed.xml │ ├── imgly_button_shutter_pressed_animation.xml │ ├── imgly_item_color_overlay.xml │ ├── imgly_item_filter_overlay.xml │ ├── imgly_item_select.xml │ ├── imgly_slider_background.xml │ ├── imgly_slider_progress.xml │ ├── imgly_slider_thumb.xml │ ├── imgly_slider_thumb_disabled.xml │ ├── imgly_slider_thumb_normal.xml │ └── imgly_slider_thumb_pressed.xml │ ├── layout │ ├── activity_main.xml │ ├── imgly_activity_camera_preview.xml │ ├── imgly_activity_photo_editor.xml │ ├── imgly_editor_preview_view.xml │ ├── imgly_list_item.xml │ ├── imgly_list_item_color.xml │ ├── imgly_list_item_crop.xml │ ├── imgly_list_item_devider.xml │ ├── imgly_list_item_filter.xml │ ├── imgly_list_item_font.xml │ ├── imgly_list_item_font_big.xml │ ├── imgly_list_item_option.xml │ ├── imgly_list_item_option_selecable.xml │ ├── imgly_list_item_sticker.xml │ ├── imgly_list_item_tool.xml │ ├── imgly_option_list.xml │ ├── imgly_panel_tool_adjust.xml │ ├── imgly_panel_tool_color.xml │ ├── imgly_panel_tool_crop.xml │ ├── imgly_panel_tool_filter.xml │ ├── imgly_panel_tool_focus.xml │ ├── imgly_panel_tool_font.xml │ ├── imgly_panel_tool_rotate.xml │ ├── imgly_panel_tool_sticker.xml │ ├── imgly_panel_tool_sticker_options.xml │ ├── imgly_panel_tool_text.xml │ ├── imgly_panel_tool_text_option.xml │ ├── imgly_popup_activity_spinner.xml │ ├── imgly_popup_confirm.xml │ ├── imgly_widget_actionbar.xml │ ├── imgly_widget_actionbar_title.xml │ ├── imgly_widget_color_picker.xml │ ├── imgly_widget_gallery_button.xml │ └── imgly_widget_slider.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── raw │ ├── imgly_sticker_glasses_nerd.png │ ├── imgly_sticker_glasses_normal.png │ ├── imgly_sticker_glasses_shutter_green.png │ ├── imgly_sticker_glasses_shutter_yellow.png │ ├── imgly_sticker_glasses_sun.png │ ├── imgly_sticker_hat_cap.png │ ├── imgly_sticker_hat_party.png │ ├── imgly_sticker_hat_sherrif.png │ ├── imgly_sticker_hat_zylinder.png │ ├── imgly_sticker_heart.png │ ├── imgly_sticker_mustache1.png │ ├── imgly_sticker_mustache2.png │ ├── imgly_sticker_mustache3.png │ ├── imgly_sticker_mustache_long.png │ ├── imgly_sticker_pipe.png │ ├── imgly_sticker_snowflake.png │ └── imgly_sticker_star.png │ ├── values-v21 │ └── imgly_styles.xml │ └── values │ ├── imgly_colors.xml │ ├── imgly_strings_activity_capture.xml │ ├── imgly_strings_activity_editor.xml │ ├── imgly_strings_color_filter.xml │ ├── imgly_strings_color_picker.xml │ ├── imgly_strings_crops.xml │ ├── imgly_strings_focus.xml │ ├── imgly_strings_rotation.xml │ ├── imgly_strings_sticker.xml │ ├── imgly_strings_text_edit.xml │ ├── imgly_strings_tools.xml │ ├── imgly_styles.xml │ └── strings.xml ├── LICENSE.PROPIETARY ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── delaroystudios │ │ └── photoedit │ │ ├── Application.java │ │ └── MainActivity.java │ └── res │ ├── layout │ └── activity_main.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── build.gradle ├── default_res_files └── res │ ├── drawable-hdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-ldpi │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ └── imgly_icon_text_right.png │ ├── drawable-mdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-nodpi │ └── imgly_lut_identity.png │ ├── drawable-xhdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-xxhdpi │ ├── imgly_filter_preview_photo.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_text_center.png │ ├── imgly_icon_text_left.png │ ├── imgly_icon_text_right.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ ├── imgly_icon_tool_text.png │ ├── imgly_sticker_preview_glasses_nerd.png │ ├── imgly_sticker_preview_glasses_normal.png │ ├── imgly_sticker_preview_glasses_shutter_green.png │ ├── imgly_sticker_preview_glasses_shutter_yellow.png │ ├── imgly_sticker_preview_glasses_sun.png │ ├── imgly_sticker_preview_hat_cap.png │ ├── imgly_sticker_preview_hat_party.png │ ├── imgly_sticker_preview_hat_sherrif.png │ ├── imgly_sticker_preview_hat_zylinder.png │ ├── imgly_sticker_preview_heart.png │ ├── imgly_sticker_preview_mustache1.png │ ├── imgly_sticker_preview_mustache2.png │ ├── imgly_sticker_preview_mustache3.png │ ├── imgly_sticker_preview_mustache_long.png │ ├── imgly_sticker_preview_pipe.png │ ├── imgly_sticker_preview_snowflake.png │ └── imgly_sticker_preview_star.png │ ├── drawable-xxxhdpi │ ├── imgly_button_shutter_animation_frame_00001.png │ ├── imgly_button_shutter_animation_frame_00002.png │ ├── imgly_button_shutter_animation_frame_00003.png │ ├── imgly_button_shutter_animation_frame_00004.png │ ├── imgly_button_shutter_animation_frame_00005.png │ ├── imgly_button_shutter_animation_frame_00006.png │ ├── imgly_button_shutter_animation_frame_00007.png │ ├── imgly_button_shutter_animation_frame_00008.png │ ├── imgly_button_shutter_animation_frame_00009.png │ ├── imgly_button_shutter_animation_frame_00010.png │ ├── imgly_floating_list_action_button.png │ ├── imgly_icon_cam_switch.png │ ├── imgly_icon_camera_roll.png │ ├── imgly_icon_cancel.png │ ├── imgly_icon_change_size.png │ ├── imgly_icon_coloradjust.png │ ├── imgly_icon_confirm.png │ ├── imgly_icon_flash.png │ ├── imgly_icon_option_brightness.png │ ├── imgly_icon_option_bringtofront.png │ ├── imgly_icon_option_color_picker.png │ ├── imgly_icon_option_contrast.png │ ├── imgly_icon_option_crop_16_9.png │ ├── imgly_icon_option_crop_4_3.png │ ├── imgly_icon_option_crop_custom.png │ ├── imgly_icon_option_crop_facebook_avatar.png │ ├── imgly_icon_option_crop_facebook_banner.png │ ├── imgly_icon_option_crop_square.png │ ├── imgly_icon_option_crop_twitter_avatar.png │ ├── imgly_icon_option_delete.png │ ├── imgly_icon_option_focus_linear.png │ ├── imgly_icon_option_focus_off.png │ ├── imgly_icon_option_focus_radial.png │ ├── imgly_icon_option_font.png │ ├── imgly_icon_option_orientation_flip_h.png │ ├── imgly_icon_option_orientation_flip_v.png │ ├── imgly_icon_option_orientation_rotate_l.png │ ├── imgly_icon_option_orientation_rotate_r.png │ ├── imgly_icon_option_saturation.png │ ├── imgly_icon_option_selected_color.png │ ├── imgly_icon_option_selected_color_bg.png │ ├── imgly_icon_show_filter.png │ ├── imgly_icon_tool_adjust.png │ ├── imgly_icon_tool_crop.png │ ├── imgly_icon_tool_filters.png │ ├── imgly_icon_tool_focus.png │ ├── imgly_icon_tool_frame.png │ ├── imgly_icon_tool_magic.png │ ├── imgly_icon_tool_orientation.png │ ├── imgly_icon_tool_sticker.png │ └── imgly_icon_tool_text.png │ ├── drawable │ ├── imgly_background_transparent_indentity.xml │ ├── imgly_button.xml │ ├── imgly_button_click_overlay.xml │ ├── imgly_button_disabled.xml │ ├── imgly_button_normal.xml │ ├── imgly_button_pressed.xml │ ├── imgly_button_shutter_pressed_animation.xml │ ├── imgly_item_color_overlay.xml │ ├── imgly_item_filter_overlay.xml │ ├── imgly_item_select.xml │ ├── imgly_slider_background.xml │ ├── imgly_slider_progress.xml │ ├── imgly_slider_thumb.xml │ ├── imgly_slider_thumb_disabled.xml │ ├── imgly_slider_thumb_normal.xml │ ├── imgly_slider_thumb_pressed.xml │ └── imgly_textedit.xml │ ├── layout │ ├── imgly_activity_camera_preview.xml │ ├── imgly_activity_photo_editor.xml │ ├── imgly_editor_preview_view.xml │ ├── imgly_list_item.xml │ ├── imgly_list_item_color.xml │ ├── imgly_list_item_crop.xml │ ├── imgly_list_item_devider.xml │ ├── imgly_list_item_filter.xml │ ├── imgly_list_item_font.xml │ ├── imgly_list_item_font_big.xml │ ├── imgly_list_item_option.xml │ ├── imgly_list_item_option_selecable.xml │ ├── imgly_list_item_sticker.xml │ ├── imgly_list_item_tool.xml │ ├── imgly_option_list.xml │ ├── imgly_panel_tool_adjust.xml │ ├── imgly_panel_tool_color.xml │ ├── imgly_panel_tool_crop.xml │ ├── imgly_panel_tool_filter.xml │ ├── imgly_panel_tool_focus.xml │ ├── imgly_panel_tool_font.xml │ ├── imgly_panel_tool_rotate.xml │ ├── imgly_panel_tool_sticker.xml │ ├── imgly_panel_tool_sticker_options.xml │ ├── imgly_panel_tool_text.xml │ ├── imgly_panel_tool_text_option.xml │ ├── imgly_popup_activity_spinner.xml │ ├── imgly_popup_confirm.xml │ ├── imgly_widget_actionbar.xml │ ├── imgly_widget_actionbar_title.xml │ ├── imgly_widget_color_picker.xml │ ├── imgly_widget_gallery_button.xml │ └── imgly_widget_slider.xml │ ├── raw │ ├── imgly_sticker_glasses_nerd.png │ ├── imgly_sticker_glasses_normal.png │ ├── imgly_sticker_glasses_shutter_green.png │ ├── imgly_sticker_glasses_shutter_yellow.png │ ├── imgly_sticker_glasses_sun.png │ ├── imgly_sticker_hat_cap.png │ ├── imgly_sticker_hat_party.png │ ├── imgly_sticker_hat_sherrif.png │ ├── imgly_sticker_hat_zylinder.png │ ├── imgly_sticker_heart.png │ ├── imgly_sticker_mustache1.png │ ├── imgly_sticker_mustache2.png │ ├── imgly_sticker_mustache3.png │ ├── imgly_sticker_mustache_long.png │ ├── imgly_sticker_pipe.png │ ├── imgly_sticker_snowflake.png │ └── imgly_sticker_star.png │ ├── values-v21 │ └── imgly_styles.xml │ └── values │ ├── imgly_colors.xml │ ├── imgly_strings_activity_capture.xml │ ├── imgly_strings_activity_editor.xml │ ├── imgly_strings_color_filter.xml │ ├── imgly_strings_color_picker.xml │ ├── imgly_strings_crops.xml │ ├── imgly_strings_focus.xml │ ├── imgly_strings_rotation.xml │ ├── imgly_strings_sticker.xml │ ├── imgly_strings_text_edit.xml │ ├── imgly_strings_tools.xml │ └── imgly_styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | .DS_Store 4 | /build 5 | /captures 6 | local.properties 7 | .idea 8 | google-services.json 9 | nongit.properties -------------------------------------------------------------------------------- /CustomizeLayoutExample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_facebook_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_facebook_avatar.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_facebook_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_facebook_banner.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_twitter_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_crop_twitter_avatar.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_selected_color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_option_selected_color_bg.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_glasses_nerd.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_hat_zylinder.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_mustache_long.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-hdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-ldpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-ldpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-ldpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-ldpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-ldpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-ldpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_selected_color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_option_selected_color_bg.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_glasses_nerd.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_hat_zylinder.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_mustache_long.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-mdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-nodpi/imgly_lut_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-nodpi/imgly_lut_identity.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_glasses_nerd.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_hat_zylinder.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xhdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxhdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/drawable-xxxhdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_nerd.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_normal.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_shutter_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_shutter_green.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_shutter_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_shutter_yellow.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_glasses_sun.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_cap.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_party.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_sherrif.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_hat_zylinder.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_heart.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache1.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache2.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache3.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_mustache_long.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_pipe.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_snowflake.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/raw/imgly_sticker_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/CustomizeLayoutExample/src/main/res/raw/imgly_sticker_star.png -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/values/imgly_strings_color_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Color Value 5 | 6 | -------------------------------------------------------------------------------- /CustomizeLayoutExample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | ImgLy Editor 3 | 4 | Hello world! 5 | Settings 6 | 7 | 8 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | Image Editor 3 | 4 | Hello world! 5 | Settings 6 | 7 | 8 | -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_crop_facebook_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_crop_facebook_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_crop_facebook_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_crop_facebook_banner.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_crop_twitter_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_crop_twitter_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_flip_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_flip_h.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_flip_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_flip_v.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_rotate_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_rotate_l.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_rotate_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_orientation_rotate_r.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_option_selected_color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_option_selected_color_bg.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_nerd.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_normal.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_shutter_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_shutter_green.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_shutter_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_shutter_yellow.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_hat_zylinder.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_mustache_long.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-hdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-hdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-ldpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-ldpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-ldpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-ldpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-ldpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-ldpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_crop_facebook_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_crop_facebook_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_crop_facebook_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_crop_facebook_banner.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_crop_twitter_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_crop_twitter_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_flip_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_flip_h.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_flip_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_flip_v.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_rotate_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_rotate_l.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_rotate_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_orientation_rotate_r.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_option_selected_color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_option_selected_color_bg.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_nerd.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_normal.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_shutter_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_shutter_green.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_shutter_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_shutter_yellow.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_hat_zylinder.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_mustache_long.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-mdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-mdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-nodpi/imgly_lut_identity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-nodpi/imgly_lut_identity.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_facebook_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_facebook_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_facebook_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_facebook_banner.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_twitter_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_crop_twitter_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_flip_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_flip_h.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_flip_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_flip_v.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_rotate_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_rotate_l.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_rotate_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_orientation_rotate_r.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_option_selected_color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_option_selected_color_bg.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_nerd.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_normal.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_shutter_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_shutter_green.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_shutter_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_shutter_yellow.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_hat_zylinder.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_mustache_long.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xhdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xhdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_filter_preview_photo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_filter_preview_photo.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_facebook_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_facebook_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_facebook_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_facebook_banner.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_twitter_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_crop_twitter_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_flip_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_flip_h.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_flip_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_flip_v.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_rotate_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_rotate_l.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_rotate_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_orientation_rotate_r.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_option_selected_color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_option_selected_color_bg.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_text_center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_text_center.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_text_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_text_left.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_text_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_text_right.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_nerd.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_normal.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_shutter_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_shutter_green.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_shutter_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_shutter_yellow.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_glasses_sun.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_cap.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_party.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_sherrif.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_hat_zylinder.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_heart.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache1.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache2.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_mustache_long.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_pipe.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_snowflake.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxhdpi/imgly_sticker_preview_star.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00001.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00002.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00003.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00004.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00005.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00006.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00007.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00008.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00009.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_button_shutter_animation_frame_00010.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_floating_list_action_button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_floating_list_action_button.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_cam_switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_cam_switch.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_camera_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_camera_roll.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_cancel.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_change_size.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_change_size.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_coloradjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_coloradjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_confirm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_confirm.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_flash.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_brightness.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_brightness.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_bringtofront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_bringtofront.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_color_picker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_color_picker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_contrast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_contrast.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_16_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_16_9.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_4_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_4_3.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_custom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_custom.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_facebook_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_facebook_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_facebook_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_facebook_banner.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_square.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_square.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_twitter_avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_crop_twitter_avatar.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_delete.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_focus_linear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_focus_linear.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_focus_off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_focus_off.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_focus_radial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_focus_radial.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_font.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_font.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_flip_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_flip_h.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_flip_v.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_flip_v.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_rotate_l.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_rotate_l.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_rotate_r.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_orientation_rotate_r.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_saturation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_saturation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_selected_color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_selected_color.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_option_selected_color_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_option_selected_color_bg.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_show_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_show_filter.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_adjust.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_adjust.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_crop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_crop.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_filters.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_filters.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_focus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_focus.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_frame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_frame.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_magic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_magic.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_orientation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_orientation.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_sticker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_sticker.png -------------------------------------------------------------------------------- /default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/drawable-xxxhdpi/imgly_icon_tool_text.png -------------------------------------------------------------------------------- /default_res_files/res/layout/imgly_widget_actionbar_title.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_glasses_nerd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_glasses_nerd.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_glasses_normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_glasses_normal.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_glasses_shutter_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_glasses_shutter_green.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_glasses_shutter_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_glasses_shutter_yellow.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_glasses_sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_glasses_sun.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_hat_cap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_hat_cap.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_hat_party.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_hat_party.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_hat_sherrif.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_hat_sherrif.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_hat_zylinder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_hat_zylinder.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_heart.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_mustache1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_mustache1.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_mustache2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_mustache2.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_mustache3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_mustache3.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_mustache_long.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_mustache_long.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_pipe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_pipe.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_snowflake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_snowflake.png -------------------------------------------------------------------------------- /default_res_files/res/raw/imgly_sticker_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/default_res_files/res/raw/imgly_sticker_star.png -------------------------------------------------------------------------------- /default_res_files/res/values/imgly_strings_color_picker.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Color Value 5 | 6 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/delaroy/AndroidImageEditing/fd23e1fb6a84ff954d1c6c82f400d976cacd44e2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':CustomizeLayoutExample' 2 | --------------------------------------------------------------------------------