├── .github └── workflows │ ├── publish-appcompat.yml │ ├── publish-apppickerview.yml │ ├── publish-coordinatorlayout.yml │ ├── publish-core.yml │ ├── publish-customview.yml │ ├── publish-drawerlayout.yml │ ├── publish-fragment.yml │ ├── publish-indexscroll.yml │ ├── publish-material.yml │ ├── publish-picker-picker-basic.yml │ ├── publish-picker-picker-color.yml │ ├── publish-preference.yml │ ├── publish-recyclerview.yml │ ├── publish-swiperefreshlayout.yml │ ├── publish-viewpager.yml │ └── publish-viewpager2.yml ├── .gitignore ├── LICENSE ├── README.md ├── appcompat ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── androidx │ │ └── appcompat │ │ ├── animation │ │ ├── SeslAnimationUtils.java │ │ └── SeslElasticInterpolator.java │ │ ├── app │ │ ├── ActionBar.java │ │ ├── ActionBarDrawerToggle.java │ │ ├── ActionBarDrawerToggleHoneycomb.java │ │ ├── AlertController.java │ │ ├── AlertDialog.java │ │ ├── AppCompatActivity.java │ │ ├── AppCompatCallback.java │ │ ├── AppCompatDelegate.java │ │ ├── AppCompatDelegateImpl.java │ │ ├── AppCompatDialog.java │ │ ├── AppCompatDialogFragment.java │ │ ├── AppCompatViewInflater.java │ │ ├── LayoutIncludeDetector.java │ │ ├── NavItemSelectedListener.java │ │ ├── ResourcesFlusher.java │ │ ├── ToolbarActionBar.java │ │ ├── TwilightCalculator.java │ │ ├── TwilightManager.java │ │ └── WindowDecorActionBar.java │ │ ├── graphics │ │ └── drawable │ │ │ └── DrawerArrowDrawable.java │ │ ├── text │ │ └── AllCapsTransformationMethod.java │ │ ├── util │ │ ├── SeslMisc.java │ │ ├── SeslRoundedCorner.java │ │ ├── SeslShowButtonShapesHelper.java │ │ └── SeslSubheaderRoundedCorner.java │ │ ├── view │ │ ├── ActionBarPolicy.java │ │ ├── ActionMode.java │ │ ├── CollapsibleActionView.java │ │ ├── ContextThemeWrapper.java │ │ ├── SeslContentViewInsetsCallback.java │ │ ├── SeslTranslateViewInsetsCallback.java │ │ ├── StandaloneActionMode.java │ │ ├── SupportActionModeWrapper.java │ │ ├── SupportMenuInflater.java │ │ ├── ViewPropertyAnimatorCompatSet.java │ │ ├── WindowCallbackWrapper.java │ │ └── menu │ │ │ ├── ActionMenuItem.java │ │ │ ├── ActionMenuItemView.java │ │ │ ├── BaseMenuPresenter.java │ │ │ ├── BaseMenuWrapper.java │ │ │ ├── CascadingMenuPopup.java │ │ │ ├── ExpandedMenuView.java │ │ │ ├── ListMenuItemView.java │ │ │ ├── ListMenuPresenter.java │ │ │ ├── MenuAdapter.java │ │ │ ├── MenuBuilder.java │ │ │ ├── MenuDialogHelper.java │ │ │ ├── MenuHelper.java │ │ │ ├── MenuItemImpl.java │ │ │ ├── MenuItemWrapperICS.java │ │ │ ├── MenuPopup.java │ │ │ ├── MenuPopupHelper.java │ │ │ ├── MenuPresenter.java │ │ │ ├── MenuView.java │ │ │ ├── MenuWrapperICS.java │ │ │ ├── SeslMenuItem.java │ │ │ ├── ShowableListMenu.java │ │ │ ├── StandardMenuPopup.java │ │ │ ├── SubMenuBuilder.java │ │ │ └── SubMenuWrapperICS.java │ │ └── widget │ │ ├── AbsActionBarView.java │ │ ├── ActionBarBackgroundDrawable.java │ │ ├── ActionBarContainer.java │ │ ├── ActionBarContextView.java │ │ ├── ActionBarOverlayLayout.java │ │ ├── ActionMenuPresenter.java │ │ ├── ActionMenuView.java │ │ ├── ActivityChooserModel.java │ │ ├── ActivityChooserView.java │ │ ├── AlertDialogLayout.java │ │ ├── AppCompatAutoCompleteTextView.java │ │ ├── AppCompatBackgroundHelper.java │ │ ├── AppCompatButton.java │ │ ├── AppCompatCheckBox.java │ │ ├── AppCompatCheckedTextView.java │ │ ├── AppCompatCompoundButtonHelper.java │ │ ├── AppCompatDrawableManager.java │ │ ├── AppCompatEditText.java │ │ ├── AppCompatHintHelper.java │ │ ├── AppCompatImageButton.java │ │ ├── AppCompatImageHelper.java │ │ ├── AppCompatImageView.java │ │ ├── AppCompatMultiAutoCompleteTextView.java │ │ ├── AppCompatPopupWindow.java │ │ ├── AppCompatProgressBarHelper.java │ │ ├── AppCompatRadioButton.java │ │ ├── AppCompatRatingBar.java │ │ ├── AppCompatReceiveContentHelper.java │ │ ├── AppCompatSeekBar.java │ │ ├── AppCompatSeekBarHelper.java │ │ ├── AppCompatSpinner.java │ │ ├── AppCompatTextClassifierHelper.java │ │ ├── AppCompatTextHelper.java │ │ ├── AppCompatTextView.java │ │ ├── AppCompatTextViewAutoSizeHelper.java │ │ ├── AppCompatToggleButton.java │ │ ├── ButtonBarLayout.java │ │ ├── ContentFrameLayout.java │ │ ├── DecorContentParent.java │ │ ├── DecorToolbar.java │ │ ├── DialogTitle.java │ │ ├── DropDownListView.java │ │ ├── FitWindowsFrameLayout.java │ │ ├── FitWindowsLinearLayout.java │ │ ├── FitWindowsViewGroup.java │ │ ├── ForwardingListener.java │ │ ├── LinearLayoutCompat.java │ │ ├── ListPopupWindow.java │ │ ├── MenuItemHoverListener.java │ │ ├── MenuPopupWindow.java │ │ ├── PopupMenu.java │ │ ├── RtlSpacingHelper.java │ │ ├── ScrollingTabContainerView.java │ │ ├── SearchView.java │ │ ├── SeslAbsSeekBar.java │ │ ├── SeslCheckedTextView.java │ │ ├── SeslDropDownItemTextView.java │ │ ├── SeslMenuDivider.java │ │ ├── SeslProgressBar.java │ │ ├── SeslSeekBar.java │ │ ├── SeslSwitchBar.java │ │ ├── SeslToggleSwitch.java │ │ ├── ShareActionProvider.java │ │ ├── SuggestionsAdapter.java │ │ ├── SwitchCompat.java │ │ ├── ThemeUtils.java │ │ ├── ThemedSpinnerAdapter.java │ │ ├── TintTypedArray.java │ │ ├── Toolbar.java │ │ ├── ToolbarWidgetWrapper.java │ │ ├── TooltipCompat.java │ │ ├── TooltipCompatHandler.java │ │ ├── TooltipPopup.java │ │ ├── ViewStubCompat.java │ │ ├── ViewUtils.java │ │ └── WithHint.java │ ├── res-public │ └── values │ │ ├── public_attrs.xml │ │ ├── public_layouts.xml │ │ └── public_styles.xml │ └── res │ ├── anim-desk-mdpi │ ├── sesl_list_popup_enter.xml │ ├── sesl_list_popup_exit.xml │ ├── sesl_menu_popup_enter.xml │ └── sesl_menu_popup_exit.xml │ ├── anim-sw600dp │ ├── sesl_dialog_enter.xml │ └── sesl_dialog_exit.xml │ ├── anim │ ├── sesl_bottom_menu_popup_enter.xml │ ├── sesl_bottom_menu_popup_exit.xml │ ├── sesl_checkbox_to_checked_check_mark_anim.xml │ ├── sesl_checkbox_to_checked_circle_fill_anim.xml │ ├── sesl_checkbox_to_checked_circle_outline_anim.xml │ ├── sesl_checkbox_to_unchecked_check_mark_anim.xml │ ├── sesl_checkbox_to_unchecked_circle_fill_anim.xml │ ├── sesl_checkbox_to_unchecked_circle_outline_anim.xml │ ├── sesl_dialog_enter.xml │ ├── sesl_dialog_exit.xml │ ├── sesl_easing_sine_in_out_80.xml │ ├── sesl_easing_sine_in_out_90.xml │ ├── sesl_grow_fade_in_from_bottom.xml │ ├── sesl_large_line1_group5_path_6.xml │ ├── sesl_large_line1_group5_translatex_4.xml │ ├── sesl_large_line2_group5_path_10.xml │ ├── sesl_large_line2_group5_translatex_8.xml │ ├── sesl_large_line3_group5_path_14.xml │ ├── sesl_large_line3_group5_translatex_12.xml │ ├── sesl_large_line4_group5_translatex_16.xml │ ├── sesl_list_checkbox_to_checked_check_mark_anim.xml │ ├── sesl_list_checkbox_to_checked_circle_fill_anim.xml │ ├── sesl_list_checkbox_to_checked_circle_outline_anim.xml │ ├── sesl_list_checkbox_to_unchecked_check_mark_anim.xml │ ├── sesl_list_checkbox_to_unchecked_circle_fill_anim.xml │ ├── sesl_list_checkbox_to_unchecked_circle_outline_anim.xml │ ├── sesl_list_popup_enter.xml │ ├── sesl_list_popup_exit.xml │ ├── sesl_medium_line1_group5_path_6.xml │ ├── sesl_medium_line1_group5_translatex_4.xml │ ├── sesl_medium_line2_group5_path_10.xml │ ├── sesl_medium_line2_group5_translatex_8.xml │ ├── sesl_medium_line3_group5_path_14.xml │ ├── sesl_medium_line3_group5_translatex_12.xml │ ├── sesl_medium_line4_group5_translatex_16.xml │ ├── sesl_menu_popup_enter.xml │ ├── sesl_menu_popup_exit.xml │ ├── sesl_progress_indeterminate_circle_anim1.xml │ ├── sesl_progress_indeterminate_circle_anim2.xml │ ├── sesl_progress_indeterminate_circle_anim3.xml │ ├── sesl_progress_indeterminate_circle_anim4.xml │ ├── sesl_progress_indeterminate_circle_anim5.xml │ ├── sesl_progress_indeterminate_circle_anim6.xml │ ├── sesl_progress_indeterminate_circle_anim7.xml │ ├── sesl_progress_indeterminate_circle_anim8.xml │ ├── sesl_progress_indeterminate_circle_anim9.xml │ ├── sesl_progress_indeterminate_circle_interpolator1.xml │ ├── sesl_progress_indeterminate_circle_interpolator2.xml │ ├── sesl_radio_to_off_circle_inner_anim.xml │ ├── sesl_radio_to_off_circle_inner_group_anim.xml │ ├── sesl_radio_to_off_circle_outline_anim.xml │ ├── sesl_radio_to_off_circle_outline_group_anim.xml │ ├── sesl_radio_to_on_circle_inner_anim.xml │ ├── sesl_radio_to_on_circle_inner_group_anim.xml │ ├── sesl_radio_to_on_circle_outline_anim.xml │ ├── sesl_radio_to_on_circle_outline_group_anim.xml │ ├── sesl_seekbar_thumb_pressed_to_unpressed_thumb_anim.xml │ ├── sesl_seekbar_thumb_unpressed_to_pressed_thumb_anim.xml │ ├── sesl_shrink_fade_out_from_bottom.xml │ ├── sesl_small_line1_group5_path_6.xml │ ├── sesl_small_line1_group5_translatex_4.xml │ ├── sesl_small_line2_group5_path_10.xml │ ├── sesl_small_line2_group5_translatex_8.xml │ ├── sesl_small_line3_group5_path_14.xml │ ├── sesl_small_line3_group5_translatex_12.xml │ ├── sesl_small_line4_group5_translatex_16.xml │ ├── sesl_tooltip_enter.xml │ ├── sesl_tooltip_exit.xml │ ├── sesl_xlarge_line1_group5_path_6.xml │ ├── sesl_xlarge_line1_group5_translatex_4.xml │ ├── sesl_xlarge_line2_group5_path_10.xml │ ├── sesl_xlarge_line2_group5_translatex_8.xml │ ├── sesl_xlarge_line3_group5_path_14.xml │ ├── sesl_xlarge_line3_group5_translatex_12.xml │ ├── sesl_xlarge_line4_group5_translatex_16.xml │ ├── sesl_xsmall_line1_group5_path_6.xml │ ├── sesl_xsmall_line1_group5_translatex_4.xml │ ├── sesl_xsmall_line2_group5_path_10.xml │ ├── sesl_xsmall_line2_group5_translatex_8.xml │ ├── sesl_xsmall_line3_group5_path_14.xml │ ├── sesl_xsmall_line3_group5_translatex_12.xml │ └── sesl_xsmall_line4_group5_translatex_16.xml │ ├── color │ ├── abc_tint_btn_checkable.xml │ ├── sesl_action_menu_text_dark.xml │ ├── sesl_action_menu_text_light.xml │ ├── sesl_background_cache_hint_selector.xml │ ├── sesl_btn_colored_borderless_text.xml │ ├── sesl_btn_default_color_dark.xml │ ├── sesl_btn_default_color_light.xml │ ├── sesl_btn_text_color_dark.xml │ ├── sesl_btn_text_color_light.xml │ ├── sesl_check_off.xml │ ├── sesl_check_on.xml │ ├── sesl_edit_text_dark.xml │ ├── sesl_edit_text_light.xml │ ├── sesl_popup_menu_item_text_dark.xml │ ├── sesl_popup_menu_item_text_light.xml │ ├── sesl_primary_text_dark.xml │ ├── sesl_primary_text_light.xml │ ├── sesl_search_url_text.xml │ ├── sesl_secondary_text_dark.xml │ ├── sesl_secondary_text_light.xml │ ├── sesl_seekbar_ripple_color.xml │ ├── sesl_select_dialog_list_item_text_dark.xml │ ├── sesl_select_dialog_list_item_text_light.xml │ ├── sesl_show_button_background_color.xml │ ├── sesl_show_button_background_stroke_color.xml │ ├── sesl_spinner_background_tint_dark.xml │ ├── sesl_spinner_background_tint_light.xml │ ├── sesl_spinner_dropdown_text_color_dark.xml │ ├── sesl_spinner_dropdown_text_color_light.xml │ ├── sesl_spinner_item_text_dark.xml │ ├── sesl_spinner_item_text_light.xml │ ├── sesl_switch_thumb_on_disabled_stroke_color.xml │ ├── sesl_switch_thumb_on_disabled_stroke_color_dark.xml │ ├── sesl_switch_thumb_on_stroke_color_light.xml │ ├── sesl_switch_track_on_color_light.xml │ ├── sesl_switch_track_on_disabled_color.xml │ └── sesl_switchbar_on_text_color_light.xml │ ├── drawable-hdpi │ ├── abc_text_select_handle_left_mtrl.png │ ├── abc_text_select_handle_middle_mtrl.png │ ├── abc_text_select_handle_right_mtrl.png │ └── sesl_scrollbar_handle_alpha.9.png │ ├── drawable-ldrtl-xxhdpi │ ├── sesl_textfield_activated_alpha.9.png │ └── sesl_textfield_default_alpha.9.png │ ├── drawable-ldrtl-xxxhdpi │ ├── sesl_textfield_activated_alpha.9.png │ └── sesl_textfield_default_alpha.9.png │ ├── drawable-mdpi │ ├── abc_text_select_handle_left_mtrl.png │ ├── abc_text_select_handle_middle_mtrl.png │ ├── abc_text_select_handle_right_mtrl.png │ ├── sesl_scrollbar_handle_alpha.9.png │ ├── sesl_scrollbar_handle_mtrl_alpha.9.png │ └── sesl_toast_frame_alpha.9.png │ ├── drawable-v26 │ ├── sesl_go_to_top_dark.xml │ └── sesl_go_to_top_light.xml │ ├── drawable-xhdpi │ ├── abc_text_select_handle_left_mtrl.png │ ├── abc_text_select_handle_middle_mtrl.png │ ├── abc_text_select_handle_right_mtrl.png │ ├── sesl_scrollbar_handle_alpha.9.png │ └── sesl_toast_frame_alpha.9.png │ ├── drawable-xxhdpi │ ├── abc_text_select_handle_left_mtrl.png │ ├── abc_text_select_handle_middle_mtrl.png │ ├── abc_text_select_handle_right_mtrl.png │ ├── sesl_action_bar_stacked_divider_alpha.9.png │ ├── sesl_progress_bar.9.png │ ├── sesl_scrollbar_handle_alpha.9.png │ ├── sesl_scrollbar_handle_mtrl_alpha.9.png │ ├── sesl_text_select_handle_left_alpha.png │ ├── sesl_text_select_handle_middle_alpha.png │ ├── sesl_text_select_handle_right_alpha.png │ ├── sesl_textfield_activated_alpha.9.png │ ├── sesl_textfield_default_alpha.9.png │ └── sesl_toast_frame_alpha.9.png │ ├── drawable-xxxhdpi │ ├── abc_text_select_handle_left_mtrl.png │ ├── abc_text_select_handle_right_mtrl.png │ ├── sesl_textfield_activated_alpha.9.png │ └── sesl_textfield_default_alpha.9.png │ ├── drawable │ ├── abc_btn_check_material_anim.xml │ ├── abc_btn_radio_material_anim.xml │ ├── abc_ic_menu_copy_mtrl_am_alpha.xml │ ├── abc_ic_menu_cut_mtrl_alpha.xml │ ├── abc_ic_menu_paste_mtrl_am_alpha.xml │ ├── abc_ic_menu_selectall_mtrl_alpha.xml │ ├── abc_ic_menu_share_mtrl_alpha.xml │ ├── abc_ic_star_black_16dp.xml │ ├── abc_star_black_48dp.xml │ ├── abc_star_half_black_48dp.xml │ ├── sesl_action_bar_background_dark.xml │ ├── sesl_action_bar_background_light.xml │ ├── sesl_action_bar_background_stacked_dark.xml │ ├── sesl_action_bar_background_stacked_light.xml │ ├── sesl_action_bar_icon_current_location_mtrl.xml │ ├── sesl_action_bar_item_background.xml │ ├── sesl_action_bar_item_text_background_dark.xml │ ├── sesl_action_bar_item_text_background_light.xml │ ├── sesl_action_bar_stacked_divider.xml │ ├── sesl_action_icon_button_show_button_shapes_background.xml │ ├── sesl_action_icon_button_show_button_shapes_shape_mark.xml │ ├── sesl_action_text_button_show_button_shapes_background.xml │ ├── sesl_action_text_button_show_button_shapes_shape_mark.xml │ ├── sesl_bottom_left_round.xml │ ├── sesl_bottom_right_round.xml │ ├── sesl_btn_check.xml │ ├── sesl_btn_check_to_on_000.xml │ ├── sesl_btn_check_to_on_001.xml │ ├── sesl_btn_check_to_on_002.xml │ ├── sesl_btn_check_to_on_024.xml │ ├── sesl_btn_check_to_on_025.xml │ ├── sesl_btn_check_to_on_026.xml │ ├── sesl_btn_colored.xml │ ├── sesl_btn_default.xml │ ├── sesl_btn_default_background.xml │ ├── sesl_btn_default_mask.xml │ ├── sesl_btn_radio.xml │ ├── sesl_btn_radio_to_on_000.xml │ ├── sesl_btn_radio_to_on_001.xml │ ├── sesl_btn_radio_to_on_002.xml │ ├── sesl_btn_radio_to_on_024.xml │ ├── sesl_btn_radio_to_on_025.xml │ ├── sesl_btn_radio_to_on_026.xml │ ├── sesl_control_background.xml │ ├── sesl_dialog_background.xml │ ├── sesl_dialog_btn_default_borderless.xml │ ├── sesl_dialog_btn_default_ripple_shape_mask.xml │ ├── sesl_dialog_btn_show_button_shapes_background.xml │ ├── sesl_dialog_btn_show_button_shapes_borderless.xml │ ├── sesl_dialog_btn_show_button_shapes_ripple_shape_mask.xml │ ├── sesl_dialog_btn_show_button_shapes_shape_mask.xml │ ├── sesl_dialog_button_disabled_anim.xml │ ├── sesl_dialog_scrollbar_handle_dark.xml │ ├── sesl_dialog_scrollbar_handle_light.xml │ ├── sesl_dropdown_scrollbar_handle_dark.xml │ ├── sesl_dropdown_scrollbar_handle_light.xml │ ├── sesl_edit_text_background_dark.xml │ ├── sesl_edit_text_background_light.xml │ ├── sesl_go_to_top_dark.xml │ ├── sesl_go_to_top_light.xml │ ├── sesl_ic_ab_add_mtrl.xml │ ├── sesl_ic_ab_app_info_mtrl.xml │ ├── sesl_ic_ab_back_dark.xml │ ├── sesl_ic_ab_back_light.xml │ ├── sesl_ic_cab_done.xml │ ├── sesl_ic_clear.xml │ ├── sesl_ic_go_search_api.xml │ ├── sesl_ic_menu_copy_dark.xml │ ├── sesl_ic_menu_copy_light.xml │ ├── sesl_ic_menu_cut_dark.xml │ ├── sesl_ic_menu_cut_light.xml │ ├── sesl_ic_menu_overflow_dark.xml │ ├── sesl_ic_menu_overflow_light.xml │ ├── sesl_ic_menu_paste_dark.xml │ ├── sesl_ic_menu_paste_light.xml │ ├── sesl_ic_menu_selectall_dark.xml │ ├── sesl_ic_menu_selectall_light.xml │ ├── sesl_ic_menu_share_dark.xml │ ├── sesl_ic_menu_share_light.xml │ ├── sesl_ic_search_api.xml │ ├── sesl_ic_search_back.xml │ ├── sesl_ic_search_more.xml │ ├── sesl_ic_voice_search_api.xml │ ├── sesl_list_choice_btn_check.xml │ ├── sesl_list_choice_btn_radio.xml │ ├── sesl_list_choice_check_to_on_000.xml │ ├── sesl_list_choice_check_to_on_001.xml │ ├── sesl_list_choice_check_to_on_002.xml │ ├── sesl_list_choice_check_to_on_024.xml │ ├── sesl_list_choice_check_to_on_025.xml │ ├── sesl_list_choice_check_to_on_026.xml │ ├── sesl_list_choice_radio_to_on_000.xml │ ├── sesl_list_choice_radio_to_on_001.xml │ ├── sesl_list_choice_radio_to_on_002.xml │ ├── sesl_list_choice_radio_to_on_024.xml │ ├── sesl_list_choice_radio_to_on_025.xml │ ├── sesl_list_choice_radio_to_on_026.xml │ ├── sesl_list_divider_dark.xml │ ├── sesl_list_divider_light.xml │ ├── sesl_list_go_to_top_dark.xml │ ├── sesl_list_go_to_top_light.xml │ ├── sesl_list_selector_dark.xml │ ├── sesl_list_selector_light.xml │ ├── sesl_menu_list_divider.xml │ ├── sesl_menu_popup_background.xml │ ├── sesl_menu_popup_background_dark.xml │ ├── sesl_more_button_show_button_shapes_background.xml │ ├── sesl_more_button_show_button_shapes_shape_mask.xml │ ├── sesl_noti_badge.xml │ ├── sesl_pen_block_selection.xml │ ├── sesl_progress.xml │ ├── sesl_progress_bar_indeterminate_large.xml │ ├── sesl_progress_bar_indeterminate_large_transition.xml │ ├── sesl_progress_bar_indeterminate_medium.xml │ ├── sesl_progress_bar_indeterminate_medium_transition.xml │ ├── sesl_progress_bar_indeterminate_small.xml │ ├── sesl_progress_bar_indeterminate_small_transition.xml │ ├── sesl_progress_bar_indeterminate_xlarge.xml │ ├── sesl_progress_bar_indeterminate_xlarge_transition.xml │ ├── sesl_progress_bar_indeterminate_xsmall.xml │ ├── sesl_progress_bar_indeterminate_xsmall_transition.xml │ ├── sesl_progress_circle.xml │ ├── sesl_progress_dialog_circle_background_shape_dark.xml │ ├── sesl_progress_dialog_circle_background_shape_light.xml │ ├── sesl_progress_horizontal.xml │ ├── sesl_screen_background_dark.xml │ ├── sesl_screen_background_light.xml │ ├── sesl_scrollbar_handle_dark.xml │ ├── sesl_scrollbar_handle_light.xml │ ├── sesl_scrubber_control_anim_dark.xml │ ├── sesl_scrubber_control_anim_light.xml │ ├── sesl_scrubber_control_off_disabled_alpha_dark.xml │ ├── sesl_scrubber_control_off_disabled_alpha_light.xml │ ├── sesl_scrubber_progress_horizontal.xml │ ├── sesl_scrubber_progress_vertical.xml │ ├── sesl_search_icon_background_borderless.xml │ ├── sesl_seek_bar_background_borderless.xml │ ├── sesl_seekbar_background_borderless_expand.xml │ ├── sesl_seekbar_thumb_pressed_to_unpressed.xml │ ├── sesl_seekbar_thumb_pressed_to_unpressed_anim.xml │ ├── sesl_seekbar_thumb_unpressed_to_pressed.xml │ ├── sesl_seekbar_thumb_unpressed_to_pressed_anim.xml │ ├── sesl_spinner_background_am_alpha_dark.xml │ ├── sesl_spinner_background_am_alpha_light.xml │ ├── sesl_spinner_background_dark.xml │ ├── sesl_spinner_background_light.xml │ ├── sesl_spinner_background_mask.xml │ ├── sesl_spinner_checked_ic_selector.xml │ ├── sesl_spinner_icon_check.xml │ ├── sesl_spinner_mtrl_am_alpha_dark.xml │ ├── sesl_spinner_mtrl_am_alpha_light.xml │ ├── sesl_split_seekbar_background_progress.xml │ ├── sesl_split_seekbar_primary_progress.xml │ ├── sesl_split_seekbar_vertical_bar.xml │ ├── sesl_switch_background.xml │ ├── sesl_switch_thumb_dark_disabled_off.xml │ ├── sesl_switch_thumb_dark_disabled_on.xml │ ├── sesl_switch_thumb_disabled_off.xml │ ├── sesl_switch_thumb_disabled_on.xml │ ├── sesl_switch_thumb_off.xml │ ├── sesl_switch_thumb_on.xml │ ├── sesl_switch_thumb_selector_dark.xml │ ├── sesl_switch_thumb_selector_light.xml │ ├── sesl_switch_track_dark_disabled_off.xml │ ├── sesl_switch_track_dark_off.xml │ ├── sesl_switch_track_disabled_off.xml │ ├── sesl_switch_track_disabled_on.xml │ ├── sesl_switch_track_off.xml │ ├── sesl_switch_track_on.xml │ ├── sesl_switch_track_selector.xml │ ├── sesl_switch_track_selector_dark.xml │ ├── sesl_switchbar_background.xml │ ├── sesl_text_cursor.xml │ ├── sesl_text_select_handle_left.xml │ ├── sesl_text_select_handle_middle.xml │ ├── sesl_text_select_handle_right.xml │ ├── sesl_textfield_search_dark.xml │ ├── sesl_textfield_search_light.xml │ ├── sesl_toast_frame.xml │ ├── sesl_tooltip_background.xml │ ├── sesl_top_left_round.xml │ ├── sesl_top_right_round.xml │ ├── sesl_vector_drawable_progress.xml │ └── sesl_vertical_bar_alpha.png │ ├── interpolator │ ├── fast_out_slow_in.xml │ ├── interpolator_sine_in_70.xml │ ├── interpolator_sine_out_70.xml │ ├── sesl_dialog_exit_interpolator.xml │ ├── sesl_elastic_50_menu_popup.xml │ ├── sesl_list_popup_interpolator.xml │ ├── sesl_progress_rect1_scale_interpolator.xml │ ├── sesl_progress_rect1_trans_interpolator.xml │ ├── sesl_progress_rect2_scale_interpolator.xml │ ├── sesl_progress_rect2_trans_interpolator.xml │ ├── sine_in_out_33.xml │ ├── sine_in_out_70.xml │ ├── sine_in_out_80.xml │ ├── sine_out_60.xml │ └── sine_out_80.xml │ ├── layout-watch │ └── abc_alert_dialog_button_bar_material.xml │ ├── layout │ ├── abc_activity_chooser_view.xml │ ├── abc_activity_chooser_view_list_item.xml │ ├── abc_alert_dialog_button_bar_material.xml │ ├── abc_expanded_menu_layout.xml │ ├── abc_list_menu_item_icon.xml │ ├── sesl_action_bar_title_item.xml │ ├── sesl_action_menu_item_badge.xml │ ├── sesl_action_menu_item_layout.xml │ ├── sesl_action_menu_layout.xml │ ├── sesl_action_mode_bar.xml │ ├── sesl_action_mode_close_item.xml │ ├── sesl_alert_dialog.xml │ ├── sesl_alert_dialog_button_bar.xml │ ├── sesl_alert_dialog_progress.xml │ ├── sesl_cascading_menu_item_layout.xml │ ├── sesl_dialog_title.xml │ ├── sesl_list_menu_item_badge.xml │ ├── sesl_list_menu_item_checkbox.xml │ ├── sesl_list_menu_item_layout.xml │ ├── sesl_list_menu_item_radio.xml │ ├── sesl_popup_menu_header_item_layout.xml │ ├── sesl_popup_menu_item_layout.xml │ ├── sesl_popup_sub_menu_item_layout.xml │ ├── sesl_progress_dialog.xml │ ├── sesl_progress_dialog_circle.xml │ ├── sesl_screen_content_include.xml │ ├── sesl_screen_simple.xml │ ├── sesl_screen_simple_overlay_action_mode.xml │ ├── sesl_screen_toolbar.xml │ ├── sesl_search_dropdown_item_icons_2line.xml │ ├── sesl_search_view.xml │ ├── sesl_select_dialog.xml │ ├── sesl_select_dialog_item.xml │ ├── sesl_select_dialog_multichoice.xml │ ├── sesl_select_dialog_singlechoice.xml │ ├── sesl_switchbar.xml │ ├── sesl_tooltip.xml │ ├── sesl_transient_notification.xml │ └── support_simple_spinner_dropdown_item.xml │ ├── values-af │ └── strings.xml │ ├── values-am │ └── strings.xml │ ├── values-ar │ └── strings.xml │ ├── values-as │ └── strings.xml │ ├── values-az-rAZ │ └── strings.xml │ ├── values-az │ └── strings.xml │ ├── values-b+sr+Latn │ └── strings.xml │ ├── values-be-rBY │ └── strings.xml │ ├── values-be │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn-rBD │ └── strings.xml │ ├── values-bn-rIN │ └── strings.xml │ ├── values-bn │ └── strings.xml │ ├── values-bo │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-en-rAU │ └── strings.xml │ ├── values-en-rCA │ └── strings.xml │ ├── values-en-rDI │ └── strings.xml │ ├── values-en-rGB │ └── strings.xml │ ├── values-en-rIN │ └── strings.xml │ ├── values-en-rPH │ └── strings.xml │ ├── values-en-rUS │ └── strings.xml │ ├── values-en-rXC │ └── strings.xml │ ├── values-en-rZG │ └── strings.xml │ ├── values-en │ └── strings.xml │ ├── values-es-rES │ └── strings.xml │ ├── values-es-rUS │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et-rEE │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-eu-rES │ └── strings.xml │ ├── values-eu │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr-rCA │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-ga │ └── strings.xml │ ├── values-gl-rES │ └── strings.xml │ ├── values-gl │ └── strings.xml │ ├── values-gu-rIN │ └── strings.xml │ ├── values-gu │ └── strings.xml │ ├── values-h580dp-land │ └── dimens.xml │ ├── values-hdpi │ └── styles_base.xml │ ├── values-hi │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-hy-rAM │ └── strings.xml │ ├── values-hy │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-is-rIS │ └── strings.xml │ ├── values-is │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ka-rGE │ └── strings.xml │ ├── values-ka │ └── strings.xml │ ├── values-kk-rKZ │ └── strings.xml │ ├── values-kk │ └── strings.xml │ ├── values-km-rKH │ └── strings.xml │ ├── values-km │ └── strings.xml │ ├── values-kn-rIN │ └── strings.xml │ ├── values-kn │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-ky-rKG │ └── strings.xml │ ├── values-ky │ └── strings.xml │ ├── values-land │ └── dimens.xml │ ├── values-large │ ├── config.xml │ ├── dimens.xml │ └── themes_base.xml │ ├── values-lo-rLA │ └── strings.xml │ ├── values-lo │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-mk-rMK │ └── strings.xml │ ├── values-mk │ └── strings.xml │ ├── values-ml-rIN │ └── strings.xml │ ├── values-ml │ └── strings.xml │ ├── values-mn-rMN │ └── strings.xml │ ├── values-mn │ └── strings.xml │ ├── values-mr-rIN │ └── strings.xml │ ├── values-mr │ └── strings.xml │ ├── values-ms-rMY │ └── strings.xml │ ├── values-ms │ └── strings.xml │ ├── values-my-rMM │ └── strings.xml │ ├── values-my-rZG │ └── strings.xml │ ├── values-my │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-ne-rNP │ └── strings.xml │ ├── values-ne │ └── strings.xml │ ├── values-night │ └── themes_daynight.xml │ ├── values-nl │ └── strings.xml │ ├── values-or │ └── strings.xml │ ├── values-pa-rIN │ └── strings.xml │ ├── values-pa │ └── strings.xml │ ├── values-pl-rSP │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-si-rLK │ └── strings.xml │ ├── values-si │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sq-rAL │ └── strings.xml │ ├── values-sq │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-sw │ └── strings.xml │ ├── values-sw412dp-land │ └── dimens.xml │ ├── values-sw600dp │ └── config.xml │ ├── values-ta-rIN │ └── strings.xml │ ├── values-ta │ └── strings.xml │ ├── values-te-rIN │ └── strings.xml │ ├── values-te │ └── strings.xml │ ├── values-tg │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tk │ └── strings.xml │ ├── values-tl │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-ug-rCN │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-ur-rPK │ └── strings.xml │ ├── values-ur │ └── strings.xml │ ├── values-uz-rUZ │ └── strings.xml │ ├── values-uz │ └── strings.xml │ ├── values-v25 │ └── themes_base.xml │ ├── values-v26 │ ├── colors.xml │ ├── styles_base.xml │ └── themes_base.xml │ ├── values-v28 │ └── themes_base.xml │ ├── values-v31 │ ├── styles_base.xml │ └── styles_base_text.xml │ ├── values-vi │ └── strings.xml │ ├── values-w1920dp-h1920dp │ └── dimens.xml │ ├── values-w1920dp-h1dp │ └── dimens.xml │ ├── values-w1920dp-h480dp │ └── dimens.xml │ ├── values-w1920dp-h673dp │ └── dimens.xml │ ├── values-w1920dp-h986dp │ └── dimens.xml │ ├── values-w1920dp-land │ └── dimens.xml │ ├── values-w1dp-h1920dp │ └── dimens.xml │ ├── values-w1dp-h480dp │ └── dimens.xml │ ├── values-w1dp-h673dp │ └── dimens.xml │ ├── values-w1dp-h986dp │ └── dimens.xml │ ├── values-w251dp │ └── dimens.xml │ ├── values-w480dp-h1920dp │ └── dimens.xml │ ├── values-w480dp-h1dp │ └── dimens.xml │ ├── values-w480dp-h480dp │ └── dimens.xml │ ├── values-w480dp-h673dp │ └── dimens.xml │ ├── values-w480dp-h986dp │ └── dimens.xml │ ├── values-w673dp-h1920dp │ └── dimens.xml │ ├── values-w673dp-h1dp │ └── dimens.xml │ ├── values-w673dp-h480dp │ └── dimens.xml │ ├── values-w673dp-h673dp │ └── dimens.xml │ ├── values-w673dp-h986dp │ └── dimens.xml │ ├── values-w986dp-h1920dp │ └── dimens.xml │ ├── values-w986dp-h1dp │ └── dimens.xml │ ├── values-w986dp-h480dp │ └── dimens.xml │ ├── values-w986dp-h673dp │ └── dimens.xml │ ├── values-w986dp-h986dp │ └── dimens.xml │ ├── values-watch │ └── themes_base.xml │ ├── values-xhdpi │ └── dimens.xml │ ├── values-xlarge │ └── dimens.xml │ ├── values-xxhdpi │ └── dimens.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zu │ └── strings.xml │ └── values │ ├── attrs.xml │ ├── bools.xml │ ├── colors.xml │ ├── colors_material.xml │ ├── config.xml │ ├── dimens.xml │ ├── dimens_material.xml │ ├── ids.xml │ ├── strings.xml │ ├── styles.xml │ ├── styles_base.xml │ ├── styles_base_text.xml │ ├── styles_rtl.xml │ ├── themes.xml │ ├── themes_base.xml │ └── themes_daynight.xml ├── apppickerview ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── androidx │ │ └── apppickerview │ │ └── widget │ │ ├── AbsAdapter.java │ │ ├── AppPickerIconLoader.java │ │ ├── AppPickerView.java │ │ ├── DataManager.java │ │ ├── GridAdapter.java │ │ └── ListAdapter.java │ └── res │ ├── color │ └── grid_check_button_tint_selector.xml │ ├── drawable-xxhdpi │ ├── sem_checkedtextview_check_to_on_mtrl_000.png │ ├── sem_checkedtextview_check_to_on_mtrl_001.png │ ├── sem_checkedtextview_check_to_on_mtrl_002.png │ ├── sem_checkedtextview_check_to_on_mtrl_003.png │ ├── sem_checkedtextview_check_to_on_mtrl_004.png │ ├── sem_checkedtextview_check_to_on_mtrl_005.png │ ├── sem_checkedtextview_check_to_on_mtrl_006.png │ ├── sem_checkedtextview_check_to_on_mtrl_007.png │ ├── sem_checkedtextview_check_to_on_mtrl_008.png │ ├── sem_checkedtextview_check_to_on_mtrl_009.png │ ├── sem_checkedtextview_check_to_on_mtrl_010.png │ ├── sem_checkedtextview_check_to_on_mtrl_011.png │ ├── sem_checkedtextview_check_to_on_mtrl_012.png │ ├── sem_checkedtextview_check_to_on_mtrl_013.png │ ├── sem_checkedtextview_check_to_on_mtrl_014.png │ ├── sem_checkedtextview_check_to_on_mtrl_015.png │ ├── sem_checkedtextview_check_to_on_mtrl_016.png │ ├── sem_checkedtextview_check_to_on_mtrl_017.png │ ├── sem_checkedtextview_check_to_on_mtrl_018.png │ ├── sem_checkedtextview_check_to_on_mtrl_019.png │ ├── sem_checkedtextview_check_to_on_mtrl_020.png │ ├── sem_checkedtextview_check_to_on_mtrl_021.png │ ├── sem_checkedtextview_check_to_on_mtrl_022.png │ ├── sem_checkedtextview_check_to_on_mtrl_023.png │ ├── sem_checkedtextview_check_to_on_mtrl_024.png │ ├── sem_checkedtextview_check_to_on_mtrl_025.png │ ├── sem_checkedtextview_check_to_on_mtrl_026.png │ ├── sem_checkedtextview_check_to_on_mtrl_027.png │ ├── sem_checkedtextview_check_to_on_mtrl_028.png │ └── sem_checkedtextview_check_to_on_mtrl_029.png │ ├── drawable │ ├── btn_check_material_anim.xml │ ├── btn_check_material_background.xml │ ├── grid_background.xml │ ├── ic_applist_setting_mtrl.xml │ ├── ic_gallery_btn_check_bg_mtrl.xml │ └── ic_gallery_btn_uncheck_bg_mtrl.xml │ ├── layout │ ├── app_picker_dialog.xml │ ├── app_picker_frame_actionbutton.xml │ ├── app_picker_frame_checkbox.xml │ ├── app_picker_frame_radiobutton.xml │ ├── app_picker_frame_switch.xml │ ├── app_picker_grid.xml │ ├── app_picker_list.xml │ ├── app_picker_list_footer.xml │ ├── app_picker_list_header.xml │ └── app_picker_list_separator.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ └── public.xml ├── build.gradle ├── coordinatorlayout ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── androidx │ │ └── coordinatorlayout │ │ └── widget │ │ ├── AppBarLayoutBehavior.java │ │ ├── CoordinatorLayout.java │ │ ├── DirectedAcyclicGraph.java │ │ └── ViewGroupUtils.java │ ├── res-public │ └── values │ │ ├── public_attrs.xml │ │ └── public_styles.xml │ └── res │ └── values │ ├── attrs.xml │ └── styles.xml ├── core ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── aidl │ ├── android │ │ └── support │ │ │ └── v4 │ │ │ └── os │ │ │ └── ResultReceiver.aidl │ └── androidx │ │ └── core │ │ ├── app │ │ ├── INotificationSideChannel.aidl │ │ └── unusedapprestrictions │ │ │ ├── IUnusedAppRestrictionsBackportCallback.aidl │ │ │ └── IUnusedAppRestrictionsBackportService.aidl │ │ └── os │ │ └── IResultReceiver.aidl │ ├── java │ ├── android │ │ └── support │ │ │ └── v4 │ │ │ └── os │ │ │ └── ResultReceiver.java │ └── androidx │ │ ├── core │ │ ├── accessibilityservice │ │ │ ├── AccessibilityServiceInfoCompat.java │ │ │ └── OWNERS │ │ ├── app │ │ │ ├── ActivityCompat.java │ │ │ ├── ActivityManagerCompat.java │ │ │ ├── ActivityOptionsCompat.java │ │ │ ├── ActivityRecreator.java │ │ │ ├── AlarmManagerCompat.java │ │ │ ├── AppComponentFactory.java │ │ │ ├── AppLaunchChecker.java │ │ │ ├── AppOpsManagerCompat.java │ │ │ ├── BundleCompat.java │ │ │ ├── ComponentActivity.java │ │ │ ├── CoreComponentFactory.java │ │ │ ├── DialogCompat.java │ │ │ ├── FrameMetricsAggregator.java │ │ │ ├── JobIntentService.java │ │ │ ├── NavUtils.java │ │ │ ├── NotificationBuilderWithBuilderAccessor.java │ │ │ ├── NotificationChannelCompat.java │ │ │ ├── NotificationChannelGroupCompat.java │ │ │ ├── NotificationCompat.java │ │ │ ├── NotificationCompatBuilder.java │ │ │ ├── NotificationCompatExtras.java │ │ │ ├── NotificationCompatJellybean.java │ │ │ ├── NotificationCompatSideChannelService.java │ │ │ ├── NotificationManagerCompat.java │ │ │ ├── Person.java │ │ │ ├── RemoteActionCompat.java │ │ │ ├── RemoteInput.java │ │ │ ├── ServiceCompat.java │ │ │ ├── ShareCompat.java │ │ │ ├── SharedElementCallback.java │ │ │ └── TaskStackBuilder.java │ │ ├── content │ │ │ ├── ContentProviderCompat.java │ │ │ ├── ContentResolverCompat.java │ │ │ ├── ContextCompat.java │ │ │ ├── FileProvider.java │ │ │ ├── IntentCompat.java │ │ │ ├── LocusIdCompat.java │ │ │ ├── MimeTypeFilter.java │ │ │ ├── PackageManagerCompat.java │ │ │ ├── PermissionChecker.java │ │ │ ├── SharedPreferencesCompat.java │ │ │ ├── UnusedAppRestrictionsBackportCallback.java │ │ │ ├── UnusedAppRestrictionsBackportService.java │ │ │ ├── UnusedAppRestrictionsBackportServiceConnection.java │ │ │ ├── UnusedAppRestrictionsConstants.java │ │ │ ├── pm │ │ │ │ ├── ActivityInfoCompat.java │ │ │ │ ├── PackageInfoCompat.java │ │ │ │ ├── PermissionInfoCompat.java │ │ │ │ ├── ShortcutInfoChangeListener.java │ │ │ │ ├── ShortcutInfoCompat.java │ │ │ │ ├── ShortcutInfoCompatSaver.java │ │ │ │ └── ShortcutManagerCompat.java │ │ │ └── res │ │ │ │ ├── ColorStateListInflaterCompat.java │ │ │ │ ├── ComplexColorCompat.java │ │ │ │ ├── ConfigurationHelper.java │ │ │ │ ├── FontResourcesParserCompat.java │ │ │ │ ├── GradientColorInflaterCompat.java │ │ │ │ ├── GrowingArrayUtils.java │ │ │ │ ├── ResourcesCompat.java │ │ │ │ └── TypedArrayUtils.java │ │ ├── database │ │ │ ├── CursorWindowCompat.java │ │ │ ├── DatabaseUtilsCompat.java │ │ │ └── sqlite │ │ │ │ └── SQLiteCursorCompat.java │ │ ├── graphics │ │ │ ├── BitmapCompat.java │ │ │ ├── BlendModeColorFilterCompat.java │ │ │ ├── BlendModeCompat.java │ │ │ ├── BlendModeUtils.java │ │ │ ├── ColorUtils.java │ │ │ ├── Insets.java │ │ │ ├── PaintCompat.java │ │ │ ├── PathParser.java │ │ │ ├── PathSegment.java │ │ │ ├── PathUtils.java │ │ │ ├── TypefaceCompat.java │ │ │ ├── TypefaceCompatApi21Impl.java │ │ │ ├── TypefaceCompatApi24Impl.java │ │ │ ├── TypefaceCompatApi26Impl.java │ │ │ ├── TypefaceCompatApi28Impl.java │ │ │ ├── TypefaceCompatApi29Impl.java │ │ │ ├── TypefaceCompatBaseImpl.java │ │ │ ├── TypefaceCompatUtil.java │ │ │ └── drawable │ │ │ │ ├── DrawableCompat.java │ │ │ │ ├── IconCompat.java │ │ │ │ ├── RoundedBitmapDrawable.java │ │ │ │ ├── RoundedBitmapDrawable21.java │ │ │ │ ├── RoundedBitmapDrawableFactory.java │ │ │ │ ├── TintAwareDrawable.java │ │ │ │ ├── WrappedDrawable.java │ │ │ │ ├── WrappedDrawableApi14.java │ │ │ │ ├── WrappedDrawableApi21.java │ │ │ │ └── WrappedDrawableState.java │ │ ├── hardware │ │ │ ├── display │ │ │ │ └── DisplayManagerCompat.java │ │ │ └── fingerprint │ │ │ │ └── FingerprintManagerCompat.java │ │ ├── internal │ │ │ ├── package-info.java │ │ │ └── view │ │ │ │ ├── SupportMenu.java │ │ │ │ ├── SupportMenuItem.java │ │ │ │ └── SupportSubMenu.java │ │ ├── location │ │ │ ├── GnssStatusCompat.java │ │ │ ├── GnssStatusWrapper.java │ │ │ ├── GpsStatusWrapper.java │ │ │ ├── LocationCompat.java │ │ │ ├── LocationManagerCompat.java │ │ │ └── OWNERS │ │ ├── math │ │ │ └── MathUtils.java │ │ ├── net │ │ │ ├── ConnectivityManagerCompat.java │ │ │ ├── DatagramSocketWrapper.java │ │ │ ├── MailTo.java │ │ │ ├── ParseException.java │ │ │ ├── TrafficStatsCompat.java │ │ │ └── UriCompat.java │ │ ├── os │ │ │ ├── BuildCompat.java │ │ │ ├── CancellationSignal.java │ │ │ ├── ConfigurationCompat.java │ │ │ ├── EnvironmentCompat.java │ │ │ ├── ExecutorCompat.java │ │ │ ├── HandlerCompat.java │ │ │ ├── LocaleListCompat.java │ │ │ ├── LocaleListCompatWrapper.java │ │ │ ├── LocaleListInterface.java │ │ │ ├── LocaleListPlatformWrapper.java │ │ │ ├── MessageCompat.java │ │ │ ├── OperationCanceledException.java │ │ │ ├── ParcelCompat.java │ │ │ ├── ParcelableCompat.java │ │ │ ├── ParcelableCompatCreatorCallbacks.java │ │ │ ├── ProcessCompat.java │ │ │ ├── TraceCompat.java │ │ │ ├── UserHandleCompat.java │ │ │ └── UserManagerCompat.java │ │ ├── provider │ │ │ ├── CallbackWithHandler.java │ │ │ ├── CalleeHandler.java │ │ │ ├── FontProvider.java │ │ │ ├── FontRequest.java │ │ │ ├── FontRequestWorker.java │ │ │ ├── FontsContractCompat.java │ │ │ ├── RequestExecutor.java │ │ │ └── SelfDestructiveThread.java │ │ ├── telephony │ │ │ ├── SubscriptionManagerCompat.java │ │ │ ├── TelephonyManagerCompat.java │ │ │ └── mbms │ │ │ │ └── MbmsHelper.java │ │ ├── text │ │ │ ├── BidiFormatter.java │ │ │ ├── HtmlCompat.java │ │ │ ├── ICUCompat.java │ │ │ ├── PrecomputedTextCompat.java │ │ │ ├── TextDirectionHeuristicCompat.java │ │ │ ├── TextDirectionHeuristicsCompat.java │ │ │ ├── TextUtilsCompat.java │ │ │ └── util │ │ │ │ ├── FindAddress.java │ │ │ │ └── LinkifyCompat.java │ │ ├── util │ │ │ ├── AtomicFile.java │ │ │ ├── Consumer.java │ │ │ ├── DebugUtils.java │ │ │ ├── LogWriter.java │ │ │ ├── ObjectsCompat.java │ │ │ ├── Pair.java │ │ │ ├── PatternsCompat.java │ │ │ ├── Pools.java │ │ │ ├── Preconditions.java │ │ │ ├── Predicate.java │ │ │ ├── Supplier.java │ │ │ └── TimeUtils.java │ │ ├── view │ │ │ ├── AccessibilityDelegateCompat.java │ │ │ ├── ActionProvider.java │ │ │ ├── ContentInfoCompat.java │ │ │ ├── DisplayCompat.java │ │ │ ├── DisplayCutoutCompat.java │ │ │ ├── DragAndDropPermissionsCompat.java │ │ │ ├── DragStartHelper.java │ │ │ ├── GestureDetectorCompat.java │ │ │ ├── GravityCompat.java │ │ │ ├── InputDeviceCompat.java │ │ │ ├── KeyEventDispatcher.java │ │ │ ├── LayoutInflaterCompat.java │ │ │ ├── LayoutInflaterFactory.java │ │ │ ├── MarginLayoutParamsCompat.java │ │ │ ├── MenuCompat.java │ │ │ ├── MenuItemCompat.java │ │ │ ├── MotionEventCompat.java │ │ │ ├── NestedScrollingChild.java │ │ │ ├── NestedScrollingChild2.java │ │ │ ├── NestedScrollingChild3.java │ │ │ ├── NestedScrollingChildHelper.java │ │ │ ├── NestedScrollingParent.java │ │ │ ├── NestedScrollingParent2.java │ │ │ ├── NestedScrollingParent3.java │ │ │ ├── NestedScrollingParentHelper.java │ │ │ ├── OWNERS │ │ │ ├── OnApplyWindowInsetsListener.java │ │ │ ├── OnReceiveContentListener.java │ │ │ ├── OnReceiveContentViewBehavior.java │ │ │ ├── OneShotPreDrawListener.java │ │ │ ├── PointerIconCompat.java │ │ │ ├── ScaleGestureDetectorCompat.java │ │ │ ├── ScrollingView.java │ │ │ ├── SeslTouchTargetDelegate.java │ │ │ ├── TintableBackgroundView.java │ │ │ ├── VelocityTrackerCompat.java │ │ │ ├── ViewCompat.java │ │ │ ├── ViewConfigurationCompat.java │ │ │ ├── ViewGroupCompat.java │ │ │ ├── ViewParentCompat.java │ │ │ ├── ViewPropertyAnimatorCompat.java │ │ │ ├── ViewPropertyAnimatorListener.java │ │ │ ├── ViewPropertyAnimatorListenerAdapter.java │ │ │ ├── ViewPropertyAnimatorUpdateListener.java │ │ │ ├── WindowCompat.java │ │ │ ├── WindowInsetsAnimationCompat.java │ │ │ ├── WindowInsetsAnimationControlListenerCompat.java │ │ │ ├── WindowInsetsAnimationControllerCompat.java │ │ │ ├── WindowInsetsCompat.java │ │ │ ├── WindowInsetsControllerCompat.java │ │ │ ├── accessibility │ │ │ │ ├── AccessibilityClickableSpanCompat.java │ │ │ │ ├── AccessibilityEventCompat.java │ │ │ │ ├── AccessibilityManagerCompat.java │ │ │ │ ├── AccessibilityNodeInfoCompat.java │ │ │ │ ├── AccessibilityNodeProviderCompat.java │ │ │ │ ├── AccessibilityRecordCompat.java │ │ │ │ ├── AccessibilityViewCommand.java │ │ │ │ ├── AccessibilityWindowInfoCompat.java │ │ │ │ └── OWNERS │ │ │ ├── animation │ │ │ │ ├── PathInterpolatorApi14.java │ │ │ │ └── PathInterpolatorCompat.java │ │ │ └── inputmethod │ │ │ │ ├── EditorInfoCompat.java │ │ │ │ ├── InputConnectionCompat.java │ │ │ │ └── InputContentInfoCompat.java │ │ └── widget │ │ │ ├── AutoScrollHelper.java │ │ │ ├── AutoSizeableTextView.java │ │ │ ├── CheckedTextViewCompat.java │ │ │ ├── CompoundButtonCompat.java │ │ │ ├── ContentLoadingProgressBar.java │ │ │ ├── EdgeEffectCompat.java │ │ │ ├── ImageViewCompat.java │ │ │ ├── ListPopupWindowCompat.java │ │ │ ├── ListViewAutoScrollHelper.java │ │ │ ├── ListViewCompat.java │ │ │ ├── NestedScrollView.java │ │ │ ├── PopupMenuCompat.java │ │ │ ├── PopupWindowCompat.java │ │ │ ├── ScrollerCompat.java │ │ │ ├── SeslEdgeEffect.java │ │ │ ├── TextViewCompat.java │ │ │ ├── TextViewOnReceiveContentListener.java │ │ │ ├── TintableCheckedTextView.java │ │ │ ├── TintableCompoundButton.java │ │ │ ├── TintableCompoundDrawablesView.java │ │ │ └── TintableImageSourceView.java │ │ └── reflect │ │ ├── SeslBaseReflector.java │ │ ├── SeslPathClassReflector.java │ │ ├── app │ │ └── SeslApplicationPackageManagerReflector.java │ │ ├── content │ │ ├── SeslContextReflector.java │ │ └── res │ │ │ ├── SeslCompatibilityInfoReflector.java │ │ │ ├── SeslConfigurationReflector.java │ │ │ └── SeslResourcesReflector.java │ │ ├── feature │ │ ├── SeslCscFeatureReflector.java │ │ └── SeslFloatingFeatureReflector.java │ │ ├── graphics │ │ ├── SeslPaintReflector.java │ │ └── drawable │ │ │ └── SeslStateListDrawableReflector.java │ │ ├── hardware │ │ └── input │ │ │ └── SeslInputManagerReflector.java │ │ ├── icu │ │ └── SeslLocaleDataReflector.java │ │ ├── lunarcalendar │ │ ├── SeslFeatureReflector.java │ │ ├── SeslLunarDateUtilsReflector.java │ │ ├── SeslSolarLunarConverterReflector.java │ │ └── SeslSolarLunarTablesReflector.java │ │ ├── media │ │ ├── SeslAudioAttributesReflector.java │ │ ├── SeslAudioManagerReflector.java │ │ ├── SeslRingtoneManagerReflector.java │ │ └── SeslSemSoundAssistantManagerReflector.java │ │ ├── os │ │ ├── SeslBuildReflector.java │ │ ├── SeslSystemPropertiesReflector.java │ │ └── SeslUserHandleReflector.java │ │ ├── provider │ │ └── SeslSettingsReflector.java │ │ ├── text │ │ └── SeslTextUtilsReflector.java │ │ ├── view │ │ ├── SeslDecorViewReflector.java │ │ ├── SeslHapticFeedbackConstantsReflector.java │ │ ├── SeslInputDeviceReflector.java │ │ ├── SeslPointerIconReflector.java │ │ ├── SeslSemBlurInfoReflector.java │ │ ├── SeslSemWindowManagerReflector.java │ │ ├── SeslViewDebugReflector.java │ │ ├── SeslViewReflector.java │ │ ├── SeslViewRuneReflector.java │ │ ├── accessibility │ │ │ └── SeslAccessibilityManagerReflector.java │ │ └── inputmethod │ │ │ └── SeslInputMethodManagerReflector.java │ │ └── widget │ │ ├── SeslAbsListViewReflector.java │ │ ├── SeslAdapterViewReflector.java │ │ ├── SeslHorizontalScrollViewReflector.java │ │ ├── SeslHoverPopupWindowReflector.java │ │ ├── SeslOverScrollerReflector.java │ │ ├── SeslPopupWindowReflector.java │ │ └── SeslTextViewReflector.java │ └── res │ ├── drawable-hdpi │ ├── notification_bg_low_normal.9.png │ ├── notification_bg_low_pressed.9.png │ ├── notification_bg_normal.9.png │ ├── notification_bg_normal_pressed.9.png │ └── notify_panel_notification_icon_bg.png │ ├── drawable-mdpi │ ├── notification_bg_low_normal.9.png │ ├── notification_bg_low_pressed.9.png │ ├── notification_bg_normal.9.png │ ├── notification_bg_normal_pressed.9.png │ └── notify_panel_notification_icon_bg.png │ ├── drawable-v21 │ └── notification_action_background.xml │ ├── drawable-xhdpi │ ├── notification_bg_low_normal.9.png │ ├── notification_bg_low_pressed.9.png │ ├── notification_bg_normal.9.png │ ├── notification_bg_normal_pressed.9.png │ └── notify_panel_notification_icon_bg.png │ ├── drawable │ ├── notification_bg.xml │ ├── notification_bg_low.xml │ ├── notification_icon_background.xml │ └── notification_tile_bg.xml │ ├── layout-v16 │ └── notification_template_custom_big.xml │ ├── layout-v21 │ ├── notification_action.xml │ ├── notification_action_tombstone.xml │ ├── notification_template_custom_big.xml │ └── notification_template_icon_group.xml │ ├── layout │ ├── custom_dialog.xml │ ├── notification_action.xml │ ├── notification_action_tombstone.xml │ ├── notification_template_custom_big.xml │ ├── notification_template_icon_group.xml │ ├── notification_template_part_chronometer.xml │ └── notification_template_part_time.xml │ ├── values-af │ └── strings.xml │ ├── values-am │ └── strings.xml │ ├── values-ar │ └── strings.xml │ ├── values-as │ └── strings.xml │ ├── values-az │ └── strings.xml │ ├── values-b+sr+Latn │ └── strings.xml │ ├── values-be │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-en-rAU │ └── strings.xml │ ├── values-en-rCA │ └── strings.xml │ ├── values-en-rGB │ └── strings.xml │ ├── values-en-rIN │ └── strings.xml │ ├── values-en-rXC │ └── strings.xml │ ├── values-es-rUS │ └── strings.xml │ ├── values-es │ └── strings.xml │ ├── values-et │ └── strings.xml │ ├── values-eu │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr-rCA │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-gl │ └── strings.xml │ ├── values-gu │ └── strings.xml │ ├── values-hi │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-hy │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-is │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ka │ └── strings.xml │ ├── values-kk │ └── strings.xml │ ├── values-km │ └── strings.xml │ ├── values-kn │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-ky │ └── strings.xml │ ├── values-lo │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-mk │ └── strings.xml │ ├── values-ml │ └── strings.xml │ ├── values-mn │ └── strings.xml │ ├── values-mr │ └── strings.xml │ ├── values-ms │ └── strings.xml │ ├── values-my │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-ne │ └── strings.xml │ ├── values-nl │ └── strings.xml │ ├── values-or │ └── strings.xml │ ├── values-pa │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-pt │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-si │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sq │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-sw │ └── strings.xml │ ├── values-ta │ └── strings.xml │ ├── values-te │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tl │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-ur │ └── strings.xml │ ├── values-uz │ └── strings.xml │ ├── values-v16 │ └── dimens.xml │ ├── values-v21 │ ├── colors.xml │ ├── dimens.xml │ └── styles.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ ├── values-zu │ └── strings.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── colors_material.xml │ ├── config.xml │ ├── dimens.xml │ ├── ids.xml │ ├── public.xml │ ├── strings.xml │ └── styles.xml ├── customview ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── androidx │ └── customview │ ├── view │ └── AbsSavedState.java │ └── widget │ ├── ExploreByTouchHelper.java │ ├── FocusStrategy.java │ ├── Openable.java │ └── ViewDragHelper.java ├── drawerlayout ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── androidx │ │ └── drawerlayout │ │ └── widget │ │ └── DrawerLayout.java │ └── res │ └── values │ ├── attrs.xml │ ├── dimens.xml │ └── public.xml ├── fragment ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── androidx │ │ └── fragment │ │ └── app │ │ ├── BackStackRecord.java │ │ ├── BackStackState.java │ │ ├── DefaultSpecialEffectsController.java │ │ ├── DialogFragment.java │ │ ├── Fragment.java │ │ ├── FragmentActivity.java │ │ ├── FragmentAnim.java │ │ ├── FragmentContainer.java │ │ ├── FragmentContainerView.java │ │ ├── FragmentController.java │ │ ├── FragmentFactory.java │ │ ├── FragmentHostCallback.java │ │ ├── FragmentLayoutInflaterFactory.java │ │ ├── FragmentLifecycleCallbacksDispatcher.java │ │ ├── FragmentManager.java │ │ ├── FragmentManagerImpl.java │ │ ├── FragmentManagerNonConfig.java │ │ ├── FragmentManagerState.java │ │ ├── FragmentManagerViewModel.java │ │ ├── FragmentOnAttachListener.java │ │ ├── FragmentPagerAdapter.java │ │ ├── FragmentResultListener.java │ │ ├── FragmentResultOwner.java │ │ ├── FragmentState.java │ │ ├── FragmentStateManager.java │ │ ├── FragmentStateManagerControl.java │ │ ├── FragmentStatePagerAdapter.java │ │ ├── FragmentStore.java │ │ ├── FragmentTabHost.java │ │ ├── FragmentTransaction.java │ │ ├── FragmentTransition.java │ │ ├── FragmentTransitionCompat21.java │ │ ├── FragmentTransitionImpl.java │ │ ├── FragmentViewLifecycleOwner.java │ │ ├── ListFragment.java │ │ ├── LogWriter.java │ │ ├── SpecialEffectsController.java │ │ ├── SpecialEffectsControllerFactory.java │ │ └── SuperNotCalledException.java │ └── res │ ├── anim │ ├── fragment_fast_out_extra_slow_in.xml │ ├── sesl_fragment_close_enter.xml │ ├── sesl_fragment_close_exit.xml │ ├── sesl_fragment_open_enter.xml │ └── sesl_fragment_open_exit.xml │ ├── animator │ ├── fragment_close_enter.xml │ ├── fragment_close_exit.xml │ ├── fragment_fade_enter.xml │ ├── fragment_fade_exit.xml │ ├── fragment_open_enter.xml │ └── fragment_open_exit.xml │ ├── interpolator │ ├── i25_5_0_1.xml │ ├── i6_0_0_1.xml │ └── sine_out_90.xml │ ├── values-night │ └── colors.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── ids.xml │ └── public.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── indexscroll ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── assets │ └── sesl_indexscroll_group_font.ttf │ ├── java │ └── androidx │ │ └── indexscroll │ │ └── widget │ │ ├── SeslAbsIndexer.java │ │ ├── SeslArrayIndexer.java │ │ ├── SeslCursorIndexer.java │ │ └── SeslIndexScrollView.java │ └── res │ ├── drawable-mdpi │ └── sesl_index_bar_bg.9.png │ ├── drawable-xxhdpi │ ├── sesl_index_bar_bg.9.png │ └── sesl_index_bar_textmode_bg.9.png │ ├── drawable │ ├── sesl_index_bar_textmode_thumb_shape.xml │ └── sesl_index_bar_thumb_shape.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ └── public.xml ├── manifest.gradle ├── material ├── .gitignore ├── build.gradle ├── java │ └── com │ │ └── google │ │ └── android │ │ └── material │ │ ├── AndroidManifest.xml │ │ ├── animation │ │ ├── AnimationUtils.java │ │ ├── AnimatorSetCompat.java │ │ ├── ArgbEvaluatorCompat.java │ │ ├── ChildrenAlphaProperty.java │ │ ├── DrawableAlphaProperty.java │ │ ├── ImageMatrixProperty.java │ │ ├── MatrixEvaluator.java │ │ ├── MotionSpec.java │ │ ├── MotionTiming.java │ │ ├── Positioning.java │ │ ├── TransformationCallback.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── interpolator │ │ │ ├── mtrl_fast_out_linear_in.xml │ │ │ ├── mtrl_fast_out_slow_in.xml │ │ │ ├── mtrl_linear.xml │ │ │ └── mtrl_linear_out_slow_in.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ └── ids.xml │ │ ├── appbar │ │ ├── AppBarLayout.java │ │ ├── CollapsingToolbarLayout.java │ │ ├── HeaderBehavior.java │ │ ├── HeaderScrollingViewBehavior.java │ │ ├── MaterialToolbar.java │ │ ├── SeslImmersiveScrollBehavior.java │ │ ├── ViewOffsetBehavior.java │ │ ├── ViewOffsetHelper.java │ │ ├── ViewUtilsLollipop.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── animator │ │ │ └── sesl_appbar_state_list_animator.xml │ │ │ ├── layout │ │ │ └── sesl_material_action_mode_view_stub.xml │ │ │ ├── values-h1080dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h580dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h600dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h639dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h639dp-port │ │ │ └── dimens.xml │ │ │ ├── values-h640dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h665dp-port │ │ │ └── dimens.xml │ │ │ ├── values-h670dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h710dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h750dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h800dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h960dp-port │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── badge │ │ ├── BadgeDrawable.java │ │ ├── BadgeUtils.java │ │ ├── ExperimentalBadgeUtils.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── behavior │ │ ├── HideBottomViewOnScrollBehavior.java │ │ └── SwipeDismissBehavior.java │ │ ├── bottomappbar │ │ ├── BottomAppBar.java │ │ ├── BottomAppBarTopEdgeTreatment.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── bottomnavigation │ │ ├── BottomNavigationItemView.java │ │ ├── BottomNavigationMenuView.java │ │ ├── BottomNavigationView.java │ │ ├── LabelVisibilityMode.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ ├── sesl_bottom_nav_color_dark.xml │ │ │ ├── sesl_bottom_nav_color_light.xml │ │ │ ├── sesl_bottom_nav_colored_item_tint.xml │ │ │ ├── sesl_bottom_nav_colored_ripple_color.xml │ │ │ ├── sesl_bottom_nav_icon_color_dark.xml │ │ │ ├── sesl_bottom_nav_icon_color_light.xml │ │ │ ├── sesl_bottom_nav_ripple_color.xml │ │ │ ├── sesl_bottom_nav_text_color_dark.xml │ │ │ └── sesl_bottom_nav_text_color_light.xml │ │ │ ├── drawable-v28 │ │ │ ├── sesl_bottom_nav_show_button_shapes_background.xml │ │ │ └── sesl_bottom_nav_show_button_shapes_shape.xml │ │ │ ├── drawable │ │ │ ├── sesl_bottom_nav_show_button_shapes_background.xml │ │ │ ├── sesl_bottom_nav_show_button_shapes_shape.xml │ │ │ ├── sesl_bottom_navigation_background_dark.xml │ │ │ ├── sesl_bottom_navigation_background_light.xml │ │ │ ├── sesl_bottom_navigation_background_text_dark.xml │ │ │ ├── sesl_bottom_navigation_background_text_light.xml │ │ │ ├── sesl_bottom_navigation_item_background.xml │ │ │ ├── sesl_bottom_navigation_ripple_mask_dark.xml │ │ │ ├── sesl_bottom_navigation_ripple_mask_light.xml │ │ │ ├── sesl_bottom_navigation_ripple_mask_text_dark.xml │ │ │ └── sesl_bottom_navigation_ripple_mask_text_light.xml │ │ │ ├── layout │ │ │ ├── sesl_bottom_navigation_badge_layout.xml │ │ │ ├── sesl_bottom_navigation_item.xml │ │ │ └── sesl_bottom_navigation_item_text.xml │ │ │ ├── values-w589dp-h411dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── bottomsheet │ │ ├── BottomSheetBehavior.java │ │ ├── BottomSheetDialog.java │ │ ├── BottomSheetDialogFragment.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── anim │ │ │ ├── design_bottom_sheet_slide_in.xml │ │ │ ├── design_bottom_sheet_slide_out.xml │ │ │ ├── mtrl_bottom_sheet_slide_in.xml │ │ │ └── mtrl_bottom_sheet_slide_out.xml │ │ │ ├── layout │ │ │ └── design_bottom_sheet_dialog.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-night │ │ │ └── themes_daynight.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ └── themes.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── integers.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ ├── themes.xml │ │ │ └── themes_daynight.xml │ │ ├── button │ │ ├── MaterialButton.java │ │ ├── MaterialButtonHelper.java │ │ ├── MaterialButtonToggleGroup.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── animator │ │ │ ├── mtrl_btn_state_list_anim.xml │ │ │ └── mtrl_btn_unelevated_state_list_anim.xml │ │ │ ├── color │ │ │ ├── mtrl_btn_bg_color_selector.xml │ │ │ ├── mtrl_btn_ripple_color.xml │ │ │ ├── mtrl_btn_stroke_color_selector.xml │ │ │ ├── mtrl_btn_text_btn_bg_color_selector.xml │ │ │ ├── mtrl_btn_text_btn_ripple_color.xml │ │ │ ├── mtrl_btn_text_color_selector.xml │ │ │ ├── mtrl_on_primary_text_btn_text_color_selector.xml │ │ │ └── mtrl_text_btn_text_color_selector.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── integers.xml │ │ │ └── styles.xml │ │ ├── canvas │ │ └── CanvasCompat.java │ │ ├── card │ │ ├── MaterialCardView.java │ │ ├── MaterialCardViewHelper.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── anim │ │ │ └── mtrl_card_lowers_interpolator.xml │ │ │ ├── animator │ │ │ └── mtrl_card_state_list_anim.xml │ │ │ ├── color │ │ │ ├── mtrl_card_view_foreground.xml │ │ │ └── mtrl_card_view_ripple.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ └── styles.xml │ │ ├── checkbox │ │ ├── MaterialCheckBox.java │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ └── styles.xml │ │ ├── chip │ │ ├── Chip.java │ │ ├── ChipDrawable.java │ │ ├── ChipGroup.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── animator │ │ │ └── mtrl_chip_state_list_anim.xml │ │ │ ├── color │ │ │ ├── mtrl_chip_background_color.xml │ │ │ ├── mtrl_chip_close_icon_tint.xml │ │ │ ├── mtrl_chip_surface_color.xml │ │ │ ├── mtrl_chip_text_color.xml │ │ │ ├── mtrl_choice_chip_background_color.xml │ │ │ ├── mtrl_choice_chip_ripple_color.xml │ │ │ └── mtrl_choice_chip_text_color.xml │ │ │ ├── drawable │ │ │ ├── ic_mtrl_chip_checked_black.xml │ │ │ ├── ic_mtrl_chip_checked_circle.xml │ │ │ └── ic_mtrl_chip_close_circle.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── integers.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── circularreveal │ │ ├── CircularRevealCompat.java │ │ ├── CircularRevealFrameLayout.java │ │ ├── CircularRevealGridLayout.java │ │ ├── CircularRevealHelper.java │ │ ├── CircularRevealLinearLayout.java │ │ ├── CircularRevealRelativeLayout.java │ │ ├── CircularRevealWidget.java │ │ ├── cardview │ │ │ └── CircularRevealCardView.java │ │ └── coordinatorlayout │ │ │ └── CircularRevealCoordinatorLayout.java │ │ ├── color │ │ ├── MaterialColors.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ ├── material_on_background_disabled.xml │ │ │ ├── material_on_background_emphasis_high_type.xml │ │ │ ├── material_on_background_emphasis_medium.xml │ │ │ ├── material_on_primary_disabled.xml │ │ │ ├── material_on_primary_emphasis_high_type.xml │ │ │ ├── material_on_primary_emphasis_medium.xml │ │ │ ├── material_on_surface_disabled.xml │ │ │ ├── material_on_surface_emphasis_high_type.xml │ │ │ ├── material_on_surface_emphasis_medium.xml │ │ │ ├── material_on_surface_stroke.xml │ │ │ └── mtrl_on_surface_ripple_color.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ └── dimens.xml │ │ ├── datepicker │ │ ├── CalendarConstraints.java │ │ ├── CalendarItemStyle.java │ │ ├── CalendarStyle.java │ │ ├── CompositeDateValidator.java │ │ ├── DateFormatTextWatcher.java │ │ ├── DateSelector.java │ │ ├── DateStrings.java │ │ ├── DateValidatorPointBackward.java │ │ ├── DateValidatorPointForward.java │ │ ├── DaysOfWeekAdapter.java │ │ ├── MaterialCalendar.java │ │ ├── MaterialCalendarGridView.java │ │ ├── MaterialDatePicker.java │ │ ├── MaterialPickerOnPositiveButtonClickListener.java │ │ ├── MaterialStyledDatePickerDialog.java │ │ ├── MaterialTextInputPicker.java │ │ ├── Month.java │ │ ├── MonthAdapter.java │ │ ├── MonthsPagerAdapter.java │ │ ├── OnSelectionChangedListener.java │ │ ├── PickerFragment.java │ │ ├── RangeDateSelector.java │ │ ├── SingleDateSelector.java │ │ ├── SmoothCalendarLayoutManager.java │ │ ├── TimeSource.java │ │ ├── UtcDates.java │ │ ├── YearGridAdapter.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ ├── mtrl_calendar_item_stroke_color.xml │ │ │ └── mtrl_calendar_selected_range.xml │ │ │ ├── drawable │ │ │ ├── material_ic_calendar_black_24dp.xml │ │ │ ├── material_ic_clear_black_24dp.xml │ │ │ ├── material_ic_edit_black_24dp.xml │ │ │ ├── material_ic_keyboard_arrow_left_black_24dp.xml │ │ │ ├── material_ic_keyboard_arrow_right_black_24dp.xml │ │ │ ├── material_ic_menu_arrow_down_black_24dp.xml │ │ │ └── material_ic_menu_arrow_up_black_24dp.xml │ │ │ ├── layout-land │ │ │ └── mtrl_picker_header_dialog.xml │ │ │ ├── layout-v26 │ │ │ └── mtrl_calendar_month.xml │ │ │ ├── layout │ │ │ ├── mtrl_calendar_day.xml │ │ │ ├── mtrl_calendar_day_of_week.xml │ │ │ ├── mtrl_calendar_days_of_week.xml │ │ │ ├── mtrl_calendar_horizontal.xml │ │ │ ├── mtrl_calendar_month.xml │ │ │ ├── mtrl_calendar_month_labeled.xml │ │ │ ├── mtrl_calendar_month_navigation.xml │ │ │ ├── mtrl_calendar_months.xml │ │ │ ├── mtrl_calendar_vertical.xml │ │ │ ├── mtrl_calendar_year.xml │ │ │ ├── mtrl_picker_actions.xml │ │ │ ├── mtrl_picker_dialog.xml │ │ │ ├── mtrl_picker_fullscreen.xml │ │ │ ├── mtrl_picker_header_dialog.xml │ │ │ ├── mtrl_picker_header_fullscreen.xml │ │ │ ├── mtrl_picker_header_selection_text.xml │ │ │ ├── mtrl_picker_header_title_text.xml │ │ │ ├── mtrl_picker_header_toggle.xml │ │ │ ├── mtrl_picker_text_input_date.xml │ │ │ └── mtrl_picker_text_input_date_range.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-h360dp-land │ │ │ └── dimens.xml │ │ │ ├── values-h480dp-land │ │ │ └── dimens.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-land │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ │ ├── values-ldrtl │ │ │ └── drawables.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ ├── dimens.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-w360dp-port │ │ │ └── dimens.xml │ │ │ ├── values-w480dp-port │ │ │ └── dimens.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── drawables.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ ├── dialog │ │ ├── InsetDialogOnTouchListener.java │ │ ├── MaterialAlertDialogBuilder.java │ │ ├── MaterialDialogs.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── drawable │ │ │ └── mtrl_dialog_background.xml │ │ │ ├── layout │ │ │ ├── mtrl_alert_dialog.xml │ │ │ ├── mtrl_alert_dialog_actions.xml │ │ │ ├── mtrl_alert_dialog_title.xml │ │ │ ├── mtrl_alert_select_dialog_item.xml │ │ │ ├── mtrl_alert_select_dialog_multichoice.xml │ │ │ └── mtrl_alert_select_dialog_singlechoice.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-night │ │ │ ├── themes_daynight.xml │ │ │ └── themes_daynight_bridge.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-small │ │ │ └── dimens.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ ├── styles.xml │ │ │ ├── themes.xml │ │ │ └── themes_base.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ ├── themes.xml │ │ │ ├── themes_base.xml │ │ │ ├── themes_base_bridge.xml │ │ │ ├── themes_bridge.xml │ │ │ ├── themes_daynight.xml │ │ │ └── themes_daynight_bridge.xml │ │ ├── drawable │ │ └── DrawableUtils.java │ │ ├── elevation │ │ ├── ElevationOverlayProvider.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ └── values │ │ │ └── attrs.xml │ │ ├── expandable │ │ ├── ExpandableTransformationWidget.java │ │ ├── ExpandableWidget.java │ │ └── ExpandableWidgetHelper.java │ │ ├── floatingactionbutton │ │ ├── AnimatorTracker.java │ │ ├── BaseMotionStrategy.java │ │ ├── BorderDrawable.java │ │ ├── ExtendedFloatingActionButton.java │ │ ├── FloatingActionButton.java │ │ ├── FloatingActionButtonImpl.java │ │ ├── FloatingActionButtonImplLollipop.java │ │ ├── MotionStrategy.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── animator │ │ │ ├── design_fab_hide_motion_spec.xml │ │ │ ├── design_fab_show_motion_spec.xml │ │ │ ├── mtrl_extended_fab_change_size_collapse_motion_spec.xml │ │ │ ├── mtrl_extended_fab_change_size_expand_motion_spec.xml │ │ │ ├── mtrl_extended_fab_hide_motion_spec.xml │ │ │ ├── mtrl_extended_fab_show_motion_spec.xml │ │ │ ├── mtrl_extended_fab_state_list_animator.xml │ │ │ ├── mtrl_fab_hide_motion_spec.xml │ │ │ └── mtrl_fab_show_motion_spec.xml │ │ │ ├── color │ │ │ ├── mtrl_fab_bg_color_selector.xml │ │ │ ├── mtrl_fab_icon_text_color_selector.xml │ │ │ └── mtrl_fab_ripple_color.xml │ │ │ ├── drawable │ │ │ └── design_fab_background.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── imageview │ │ ├── ShapeableImageView.java │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── public.xml │ │ │ └── styles.xml │ │ ├── internal │ │ ├── BaselineLayout.java │ │ ├── CheckableImageButton.java │ │ ├── CollapsingTextHelper.java │ │ ├── ContextUtils.java │ │ ├── DescendantOffsetUtils.java │ │ ├── Experimental.java │ │ ├── FlowLayout.java │ │ ├── ForegroundLinearLayout.java │ │ ├── ManufacturerUtils.java │ │ ├── NavigationMenu.java │ │ ├── NavigationMenuItemView.java │ │ ├── NavigationMenuPresenter.java │ │ ├── NavigationMenuView.java │ │ ├── NavigationSubMenu.java │ │ ├── ParcelableSparseArray.java │ │ ├── ParcelableSparseBooleanArray.java │ │ ├── ParcelableSparseIntArray.java │ │ ├── ScrimInsetsFrameLayout.java │ │ ├── SeslContextUtils.java │ │ ├── SeslDisplayUtils.java │ │ ├── StateListAnimator.java │ │ ├── StaticLayoutBuilderCompat.java │ │ ├── TextDrawableHelper.java │ │ ├── TextScale.java │ │ ├── TextWatcherAdapter.java │ │ ├── ThemeEnforcement.java │ │ ├── ToolbarUtils.java │ │ ├── ViewGroupOverlayApi14.java │ │ ├── ViewGroupOverlayApi18.java │ │ ├── ViewGroupOverlayImpl.java │ │ ├── ViewOverlayApi14.java │ │ ├── ViewOverlayApi18.java │ │ ├── ViewOverlayImpl.java │ │ ├── ViewUtils.java │ │ ├── VisibilityAwareImageButton.java │ │ ├── package-info.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── drawable │ │ │ └── navigation_empty_icon.xml │ │ │ ├── layout │ │ │ ├── design_menu_item_action_area.xml │ │ │ ├── design_navigation_item.xml │ │ │ ├── design_navigation_item_header.xml │ │ │ ├── design_navigation_item_separator.xml │ │ │ ├── design_navigation_item_subheader.xml │ │ │ ├── design_navigation_menu.xml │ │ │ └── design_navigation_menu_item.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ └── styles.xml │ │ ├── lists │ │ ├── SingleLineItemViewHolder.java │ │ ├── ThreeLineItemViewHolder.java │ │ ├── TwoLineItemViewHolder.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ └── mtrl_list_item_tint.xml │ │ │ └── layout │ │ │ ├── material_list_item_single_line.xml │ │ │ ├── material_list_item_three_line.xml │ │ │ └── material_list_item_two_line.xml │ │ ├── math │ │ └── MathUtils.java │ │ ├── menu │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ └── mtrl_popupmenu_overlay_color.xml │ │ │ ├── drawable │ │ │ ├── mtrl_popupmenu_background.xml │ │ │ └── mtrl_popupmenu_background_dark.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ └── styles.xml │ │ ├── navigation │ │ ├── NavigationBarItemView.java │ │ ├── NavigationBarMenu.java │ │ ├── NavigationBarMenuView.java │ │ ├── NavigationBarPresenter.java │ │ ├── NavigationBarView.java │ │ ├── NavigationView.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ ├── mtrl_navigation_bar_colored_item_tint.xml │ │ │ ├── mtrl_navigation_bar_colored_ripple_color.xml │ │ │ ├── mtrl_navigation_bar_item_tint.xml │ │ │ ├── mtrl_navigation_bar_ripple_color.xml │ │ │ ├── mtrl_navigation_item_background_color.xml │ │ │ ├── mtrl_navigation_item_icon_tint.xml │ │ │ ├── mtrl_navigation_item_text_color.xml │ │ │ ├── sesl_navbar_color_dark.xml │ │ │ ├── sesl_navbar_color_light.xml │ │ │ ├── sesl_navbar_colored_item_tint.xml │ │ │ ├── sesl_navbar_colored_ripple_color.xml │ │ │ ├── sesl_navbar_icon_color_dark.xml │ │ │ ├── sesl_navbar_icon_color_light.xml │ │ │ ├── sesl_navbar_ripple_color.xml │ │ │ ├── sesl_navbar_text_color_dark.xml │ │ │ └── sesl_navbar_text_color_light.xml │ │ │ ├── drawable-v28 │ │ │ ├── sesl_navbar_show_button_shapes_background.xml │ │ │ └── sesl_navbar_show_button_shapes_shape.xml │ │ │ ├── drawable │ │ │ ├── mtrl_navigation_bar_item_background.xml │ │ │ ├── sesl_navbar_background_dark.xml │ │ │ ├── sesl_navbar_background_light.xml │ │ │ ├── sesl_navbar_background_text_dark.xml │ │ │ ├── sesl_navbar_background_text_light.xml │ │ │ ├── sesl_navbar_item_background.xml │ │ │ ├── sesl_navbar_ripple_mask_dark.xml │ │ │ ├── sesl_navbar_ripple_mask_light.xml │ │ │ ├── sesl_navbar_ripple_mask_text_dark.xml │ │ │ ├── sesl_navbar_ripple_mask_text_light.xml │ │ │ ├── sesl_navbar_show_button_shapes_background.xml │ │ │ └── sesl_navbar_show_button_shapes_shape.xml │ │ │ ├── layout │ │ │ └── sesl_navigation_bar_badge_layout.xml │ │ │ ├── menu │ │ │ └── nv_dummy_overflow_menu_icon.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az-rAZ │ │ │ └── strings.xml │ │ │ ├── values-be-rBY │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn-rBD │ │ │ └── strings.xml │ │ │ ├── values-bn-rIN │ │ │ └── strings.xml │ │ │ ├── values-bo │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rCA │ │ │ └── strings.xml │ │ │ ├── values-en-rDI │ │ │ └── strings.xml │ │ │ ├── values-en-rPH │ │ │ └── strings.xml │ │ │ ├── values-en-rUS │ │ │ └── strings.xml │ │ │ ├── values-en-rZG │ │ │ └── strings.xml │ │ │ ├── values-en │ │ │ └── strings.xml │ │ │ ├── values-es-rES │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-et-rEE │ │ │ └── strings.xml │ │ │ ├── values-eu-rES │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-ga │ │ │ └── strings.xml │ │ │ ├── values-gl-rES │ │ │ └── strings.xml │ │ │ ├── values-gu-rIN │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy-rAM │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is-rIS │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka-rGE │ │ │ └── strings.xml │ │ │ ├── values-kk-rKZ │ │ │ └── strings.xml │ │ │ ├── values-km-rKH │ │ │ └── strings.xml │ │ │ ├── values-kn-rIN │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky-rKG │ │ │ └── strings.xml │ │ │ ├── values-lo-rLA │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk-rMK │ │ │ └── strings.xml │ │ │ ├── values-ml-rIN │ │ │ └── strings.xml │ │ │ ├── values-mn-rMN │ │ │ └── strings.xml │ │ │ ├── values-mr-rIN │ │ │ └── strings.xml │ │ │ ├── values-ms-rMY │ │ │ └── strings.xml │ │ │ ├── values-my-rMM │ │ │ └── strings.xml │ │ │ ├── values-my-rZG │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne-rNP │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa-rIN │ │ │ └── strings.xml │ │ │ ├── values-pl-rSP │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si-rLK │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq-rAL │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ │ ├── values-ta-rIN │ │ │ └── strings.xml │ │ │ ├── values-te-rIN │ │ │ └── strings.xml │ │ │ ├── values-tg │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tk │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-ug-rCN │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur-rPK │ │ │ └── strings.xml │ │ │ ├── values-uz-rUZ │ │ │ └── strings.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── navigationrail │ │ ├── NavigationRailItemView.java │ │ ├── NavigationRailMenuView.java │ │ ├── NavigationRailView.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── layout │ │ │ └── mtrl_navigation_rail_item.xml │ │ │ ├── values-night │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── progressindicator │ │ ├── AnimatorDurationScaleProvider.java │ │ ├── BaseProgressIndicator.java │ │ ├── BaseProgressIndicatorSpec.java │ │ ├── CircularDrawingDelegate.java │ │ ├── CircularIndeterminateAnimatorDelegate.java │ │ ├── CircularProgressIndicator.java │ │ ├── CircularProgressIndicatorSpec.java │ │ ├── DeterminateDrawable.java │ │ ├── DrawableWithAnimatedVisibilityChange.java │ │ ├── DrawingDelegate.java │ │ ├── IndeterminateAnimatorDelegate.java │ │ ├── IndeterminateDrawable.java │ │ ├── LinearDrawingDelegate.java │ │ ├── LinearIndeterminateContiguousAnimatorDelegate.java │ │ ├── LinearIndeterminateDisjointAnimatorDelegate.java │ │ ├── LinearProgressIndicator.java │ │ ├── LinearProgressIndicatorSpec.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── animator │ │ │ ├── linear_indeterminate_line1_head_interpolator.xml │ │ │ ├── linear_indeterminate_line1_tail_interpolator.xml │ │ │ ├── linear_indeterminate_line2_head_interpolator.xml │ │ │ └── linear_indeterminate_line2_tail_interpolator.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── radiobutton │ │ ├── MaterialRadioButton.java │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ └── styles.xml │ │ ├── resources │ │ ├── CancelableFontCallback.java │ │ ├── MaterialAttributes.java │ │ ├── MaterialResources.java │ │ ├── TextAppearance.java │ │ ├── TextAppearanceConfig.java │ │ ├── TextAppearanceFontCallback.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── drawable │ │ │ ├── ic_mtrl_checked_circle.xml │ │ │ └── sesl_dot_badge.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ └── dimens.xml │ │ │ ├── values-v28 │ │ │ └── dimens.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ └── strings.xml │ │ ├── ripple │ │ ├── RippleDrawableCompat.java │ │ ├── RippleUtils.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ └── values │ │ │ └── attrs.xml │ │ ├── shadow │ │ ├── ShadowDrawableWrapper.java │ │ ├── ShadowRenderer.java │ │ ├── ShadowViewDelegate.java │ │ └── res │ │ │ └── values │ │ │ └── colors.xml │ │ ├── shape │ │ ├── AbsoluteCornerSize.java │ │ ├── AdjustedCornerSize.java │ │ ├── CornerFamily.java │ │ ├── CornerSize.java │ │ ├── CornerTreatment.java │ │ ├── CutCornerTreatment.java │ │ ├── EdgeTreatment.java │ │ ├── InterpolateOnScrollPositionChangeHelper.java │ │ ├── MarkerEdgeTreatment.java │ │ ├── MaterialShapeDrawable.java │ │ ├── MaterialShapeUtils.java │ │ ├── OffsetEdgeTreatment.java │ │ ├── RelativeCornerSize.java │ │ ├── RoundedCornerTreatment.java │ │ ├── ShapeAppearanceModel.java │ │ ├── ShapeAppearancePathProvider.java │ │ ├── ShapePath.java │ │ ├── ShapePathModel.java │ │ ├── Shapeable.java │ │ ├── TriangleEdgeTreatment.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── slider │ │ ├── BaseOnChangeListener.java │ │ ├── BaseOnSliderTouchListener.java │ │ ├── BaseSlider.java │ │ ├── BasicLabelFormatter.java │ │ ├── LabelFormatter.java │ │ ├── RangeSlider.java │ │ ├── Slider.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ ├── material_slider_active_tick_marks_color.xml │ │ │ ├── material_slider_active_track_color.xml │ │ │ ├── material_slider_halo_color.xml │ │ │ ├── material_slider_inactive_tick_marks_color.xml │ │ │ ├── material_slider_inactive_track_color.xml │ │ │ └── material_slider_thumb_color.xml │ │ │ ├── values-v21 │ │ │ └── styles.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── snackbar │ │ ├── BaseTransientBottomBar.java │ │ ├── ContentViewCallback.java │ │ ├── Snackbar.java │ │ ├── SnackbarContentLayout.java │ │ ├── SnackbarManager.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── drawable │ │ │ ├── sem_snackbar_action_button_background.xml │ │ │ ├── sem_snackbar_action_frame_mtrl.xml │ │ │ └── sem_snackbar_frame_mtrl.xml │ │ │ ├── layout-sw600dp │ │ │ ├── design_layout_snackbar.xml │ │ │ └── mtrl_layout_snackbar.xml │ │ │ ├── layout │ │ │ ├── design_layout_snackbar.xml │ │ │ ├── design_layout_snackbar_include.xml │ │ │ ├── mtrl_layout_snackbar.xml │ │ │ └── mtrl_layout_snackbar_include.xml │ │ │ ├── values-sw600dp │ │ │ ├── config.xml │ │ │ └── dimens.xml │ │ │ ├── values-w1920dp │ │ │ └── dimens.xml │ │ │ ├── values-w480dp │ │ │ └── dimens.xml │ │ │ ├── values-w960dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── config.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ └── styles.xml │ │ ├── stateful │ │ └── ExtendableSavedState.java │ │ ├── switchmaterial │ │ ├── SwitchMaterial.java │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── tabs │ │ ├── ElasticTabIndicatorInterpolator.java │ │ ├── SeslAbsIndicatorView.java │ │ ├── SeslTabDotLineIndicator.java │ │ ├── SeslTabRoundRectIndicator.java │ │ ├── TabIndicatorInterpolator.java │ │ ├── TabItem.java │ │ ├── TabLayout.java │ │ ├── TabLayoutMediator.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ ├── mtrl_tabs_colored_ripple_color.xml │ │ │ ├── mtrl_tabs_icon_color_selector.xml │ │ │ ├── mtrl_tabs_icon_color_selector_colored.xml │ │ │ ├── mtrl_tabs_legacy_text_color_selector.xml │ │ │ ├── mtrl_tabs_ripple_color.xml │ │ │ ├── sesl_tablayout_selected_indicator_color.xml │ │ │ ├── sesl_tablayout_selected_indicator_color_dark.xml │ │ │ ├── sesl_tablayout_selected_text_color.xml │ │ │ ├── sesl_tablayout_selected_text_color_dark.xml │ │ │ ├── sesl_tablayout_subtab_sub_text_color_dark.xml │ │ │ ├── sesl_tablayout_subtab_sub_text_color_light.xml │ │ │ ├── sesl_tablayout_subtab_text_color_dark.xml │ │ │ ├── sesl_tablayout_subtab_text_color_light.xml │ │ │ ├── sesl_tablayout_text_color.xml │ │ │ ├── sesl_tablayout_text_color_dark.xml │ │ │ ├── sesl_tabs_colored_ripple_color.xml │ │ │ ├── sesl_tabs_icon_color_selector.xml │ │ │ ├── sesl_tabs_icon_color_selector_colored.xml │ │ │ └── sesl_tabs_ripple_color.xml │ │ │ ├── drawable-xxhdpi │ │ │ └── sesl_tab_n_badge_mtrl.9.png │ │ │ ├── drawable │ │ │ ├── sesl_tab_n_badge.xml │ │ │ ├── sesl_tablayout_maintab_indicator_opentheme_background.xml │ │ │ ├── sesl_tablayout_maintab_touch_background_dark.xml │ │ │ ├── sesl_tablayout_maintab_touch_background_light.xml │ │ │ ├── sesl_tablayout_subtab_indicator_background_dark.xml │ │ │ ├── sesl_tablayout_subtab_indicator_background_light.xml │ │ │ ├── sesl_tablayout_subtab_indicator_ripple_dark.xml │ │ │ ├── sesl_tablayout_subtab_indicator_ripple_light.xml │ │ │ ├── sesl_tablayout_subtab_indicator_shape_dark.xml │ │ │ ├── sesl_tablayout_subtab_indicator_shape_light.xml │ │ │ └── sesl_tabs_default_indicator.xml │ │ │ ├── layout │ │ │ ├── sesl_layout_tab_icon.xml │ │ │ ├── sesl_layout_tab_sub_text.xml │ │ │ ├── sesl_layout_tab_text.xml │ │ │ ├── sesl_tabs_main_tab_layout.xml │ │ │ └── sesl_tabs_sub_tab_layout.xml │ │ │ ├── values-sw600dp │ │ │ └── dimens.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ └── styles.xml │ │ ├── textfield │ │ ├── ClearTextEndIconDelegate.java │ │ ├── CustomEndIconDelegate.java │ │ ├── CutoutDrawable.java │ │ ├── DropdownMenuEndIconDelegate.java │ │ ├── EndIconDelegate.java │ │ ├── IndicatorViewController.java │ │ ├── MaterialAutoCompleteTextView.java │ │ ├── NoEndIconDelegate.java │ │ ├── PasswordToggleEndIconDelegate.java │ │ ├── TextInputEditText.java │ │ ├── TextInputLayout.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color │ │ │ ├── design_box_stroke_color.xml │ │ │ ├── design_error.xml │ │ │ ├── design_icon_tint.xml │ │ │ ├── mtrl_error.xml │ │ │ ├── mtrl_filled_background_color.xml │ │ │ ├── mtrl_filled_icon_tint.xml │ │ │ ├── mtrl_filled_stroke_color.xml │ │ │ ├── mtrl_indicator_text_color.xml │ │ │ ├── mtrl_outlined_icon_tint.xml │ │ │ └── mtrl_outlined_stroke_color.xml │ │ │ ├── drawable │ │ │ ├── avd_hide_password.xml │ │ │ ├── avd_show_password.xml │ │ │ ├── design_ic_visibility.xml │ │ │ ├── design_ic_visibility_off.xml │ │ │ ├── design_password_eye.xml │ │ │ ├── mtrl_dropdown_arrow.xml │ │ │ ├── mtrl_ic_arrow_drop_down.xml │ │ │ ├── mtrl_ic_arrow_drop_up.xml │ │ │ ├── mtrl_ic_cancel.xml │ │ │ └── mtrl_ic_error.xml │ │ │ ├── layout │ │ │ ├── design_text_input_end_icon.xml │ │ │ └── design_text_input_start_icon.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ └── dimens.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── colors.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── password_visibility.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ ├── textview │ │ ├── MaterialTextView.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ └── styles.xml │ │ ├── theme │ │ ├── MaterialComponentsViewInflater.java │ │ ├── overlay │ │ │ └── MaterialThemeOverlay.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── values-large │ │ │ └── themes_base.xml │ │ │ ├── values-night │ │ │ ├── themes_daynight.xml │ │ │ └── themes_daynight_bridge.xml │ │ │ └── values │ │ │ ├── theme_overlay_attrs.xml │ │ │ ├── themes.xml │ │ │ ├── themes_base.xml │ │ │ ├── themes_base_bridge.xml │ │ │ ├── themes_bridge.xml │ │ │ ├── themes_daynight.xml │ │ │ ├── themes_daynight_bridge.xml │ │ │ └── themes_overlay.xml │ │ ├── timepicker │ │ ├── ChipTextInputComboView.java │ │ ├── ClickActionDelegate.java │ │ ├── ClockFaceView.java │ │ ├── ClockHandView.java │ │ ├── MaterialTimePicker.java │ │ ├── MaxInputValidator.java │ │ ├── RadialViewGroup.java │ │ ├── TimeFormat.java │ │ ├── TimeModel.java │ │ ├── TimePickerClockPresenter.java │ │ ├── TimePickerControls.java │ │ ├── TimePickerPresenter.java │ │ ├── TimePickerTextInputKeyController.java │ │ ├── TimePickerTextInputPresenter.java │ │ ├── TimePickerView.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── color-night │ │ │ ├── material_timepicker_button_stroke.xml │ │ │ ├── material_timepicker_clockface.xml │ │ │ └── material_timepicker_modebutton_tint.xml │ │ │ ├── color │ │ │ ├── material_cursor_color.xml │ │ │ ├── material_timepicker_button_background.xml │ │ │ ├── material_timepicker_button_stroke.xml │ │ │ ├── material_timepicker_clock_text_color.xml │ │ │ ├── material_timepicker_clockface.xml │ │ │ └── material_timepicker_modebutton_tint.xml │ │ │ ├── drawable │ │ │ ├── ic_clock_black_24dp.xml │ │ │ ├── ic_keyboard_black_24dp.xml │ │ │ └── material_cursor_drawable.xml │ │ │ ├── layout-land │ │ │ ├── material_clock_period_toggle_land.xml │ │ │ └── material_timepicker.xml │ │ │ ├── layout-ldrtl │ │ │ └── material_textinput_timepicker.xml │ │ │ ├── layout │ │ │ ├── material_chip_input_combo.xml │ │ │ ├── material_clock_display.xml │ │ │ ├── material_clock_display_divider.xml │ │ │ ├── material_clock_period_toggle.xml │ │ │ ├── material_clockface_textview.xml │ │ │ ├── material_clockface_view.xml │ │ │ ├── material_radial_view_group.xml │ │ │ ├── material_textinput_timepicker.xml │ │ │ ├── material_time_chip.xml │ │ │ ├── material_time_input.xml │ │ │ ├── material_timepicker.xml │ │ │ ├── material_timepicker_dialog.xml │ │ │ └── material_timepicker_textinput_display.xml │ │ │ ├── values-af │ │ │ └── strings.xml │ │ │ ├── values-am │ │ │ └── strings.xml │ │ │ ├── values-ar │ │ │ └── strings.xml │ │ │ ├── values-as │ │ │ └── strings.xml │ │ │ ├── values-az │ │ │ └── strings.xml │ │ │ ├── values-b+es+419 │ │ │ └── strings.xml │ │ │ ├── values-b+sr+Latn │ │ │ └── strings.xml │ │ │ ├── values-be │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ └── strings.xml │ │ │ ├── values-bn │ │ │ └── strings.xml │ │ │ ├── values-bs │ │ │ └── strings.xml │ │ │ ├── values-ca │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ └── strings.xml │ │ │ ├── values-el │ │ │ └── strings.xml │ │ │ ├── values-en-rGB │ │ │ └── strings.xml │ │ │ ├── values-es-rUS │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ └── strings.xml │ │ │ ├── values-et │ │ │ └── strings.xml │ │ │ ├── values-eu │ │ │ └── strings.xml │ │ │ ├── values-fa │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ └── strings.xml │ │ │ ├── values-fr-rCA │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ └── strings.xml │ │ │ ├── values-gl │ │ │ └── strings.xml │ │ │ ├── values-gu │ │ │ └── strings.xml │ │ │ ├── values-h320dp-port │ │ │ └── dimens.xml │ │ │ ├── values-h550dp-port │ │ │ └── dimens.xml │ │ │ ├── values-hi │ │ │ └── strings.xml │ │ │ ├── values-hr │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ └── strings.xml │ │ │ ├── values-hy │ │ │ └── strings.xml │ │ │ ├── values-in │ │ │ └── strings.xml │ │ │ ├── values-is │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ └── strings.xml │ │ │ ├── values-iw │ │ │ └── strings.xml │ │ │ ├── values-ja │ │ │ └── strings.xml │ │ │ ├── values-ka │ │ │ └── strings.xml │ │ │ ├── values-kk │ │ │ └── strings.xml │ │ │ ├── values-km │ │ │ └── strings.xml │ │ │ ├── values-kn │ │ │ └── strings.xml │ │ │ ├── values-ko │ │ │ └── strings.xml │ │ │ ├── values-ky │ │ │ └── strings.xml │ │ │ ├── values-land │ │ │ └── dimens.xml │ │ │ ├── values-lo │ │ │ └── strings.xml │ │ │ ├── values-lt │ │ │ └── strings.xml │ │ │ ├── values-lv │ │ │ └── strings.xml │ │ │ ├── values-mk │ │ │ └── strings.xml │ │ │ ├── values-ml │ │ │ └── strings.xml │ │ │ ├── values-mn │ │ │ └── strings.xml │ │ │ ├── values-mr │ │ │ └── strings.xml │ │ │ ├── values-ms │ │ │ └── strings.xml │ │ │ ├── values-my │ │ │ └── strings.xml │ │ │ ├── values-nb │ │ │ └── strings.xml │ │ │ ├── values-ne │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ └── strings.xml │ │ │ ├── values-or │ │ │ └── strings.xml │ │ │ ├── values-pa │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ └── strings.xml │ │ │ ├── values-pt-rBR │ │ │ └── strings.xml │ │ │ ├── values-pt-rPT │ │ │ └── strings.xml │ │ │ ├── values-ro │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ └── strings.xml │ │ │ ├── values-si │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ └── strings.xml │ │ │ ├── values-sq │ │ │ └── strings.xml │ │ │ ├── values-sr │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ └── strings.xml │ │ │ ├── values-sw │ │ │ └── strings.xml │ │ │ ├── values-ta │ │ │ └── strings.xml │ │ │ ├── values-te │ │ │ └── strings.xml │ │ │ ├── values-th │ │ │ └── strings.xml │ │ │ ├── values-tl │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ └── strings.xml │ │ │ ├── values-uk │ │ │ └── strings.xml │ │ │ ├── values-ur │ │ │ └── strings.xml │ │ │ ├── values-uz │ │ │ └── strings.xml │ │ │ ├── values-vi │ │ │ └── strings.xml │ │ │ ├── values-w320dp-land │ │ │ └── dimens.xml │ │ │ ├── values-w600dp-land │ │ │ └── dimens.xml │ │ │ ├── values-zh-rCN │ │ │ └── strings.xml │ │ │ ├── values-zh-rHK │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ └── strings.xml │ │ │ ├── values-zu │ │ │ └── strings.xml │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── strings.xml │ │ │ ├── styles.xml │ │ │ └── themes.xml │ │ ├── tooltip │ │ ├── TooltipDrawable.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ └── styles.xml │ │ ├── transformation │ │ ├── ExpandableBehavior.java │ │ ├── ExpandableTransformationBehavior.java │ │ ├── FabTransformationBehavior.java │ │ ├── FabTransformationScrimBehavior.java │ │ ├── FabTransformationSheetBehavior.java │ │ ├── TransformationChildCard.java │ │ ├── TransformationChildLayout.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ ├── animator │ │ │ ├── mtrl_fab_transformation_sheet_collapse_spec.xml │ │ │ └── mtrl_fab_transformation_sheet_expand_spec.xml │ │ │ └── values │ │ │ └── strings.xml │ │ ├── transition │ │ ├── FadeModeEvaluator.java │ │ ├── FadeModeEvaluators.java │ │ ├── FadeModeResult.java │ │ ├── FadeProvider.java │ │ ├── FadeThroughProvider.java │ │ ├── FitModeEvaluator.java │ │ ├── FitModeEvaluators.java │ │ ├── FitModeResult.java │ │ ├── Hold.java │ │ ├── MaskEvaluator.java │ │ ├── MaterialArcMotion.java │ │ ├── MaterialContainerTransform.java │ │ ├── MaterialElevationScale.java │ │ ├── MaterialFade.java │ │ ├── MaterialFadeThrough.java │ │ ├── MaterialSharedAxis.java │ │ ├── MaterialVisibility.java │ │ ├── ScaleProvider.java │ │ ├── SlideDistanceProvider.java │ │ ├── TransitionListenerAdapter.java │ │ ├── TransitionUtils.java │ │ ├── VisibilityAnimatorProvider.java │ │ ├── platform │ │ │ ├── FadeModeEvaluator.java │ │ │ ├── FadeModeEvaluators.java │ │ │ ├── FadeModeResult.java │ │ │ ├── FadeProvider.java │ │ │ ├── FadeThroughProvider.java │ │ │ ├── FitModeEvaluator.java │ │ │ ├── FitModeEvaluators.java │ │ │ ├── FitModeResult.java │ │ │ ├── Hold.java │ │ │ ├── MaskEvaluator.java │ │ │ ├── MaterialArcMotion.java │ │ │ ├── MaterialContainerTransform.java │ │ │ ├── MaterialContainerTransformSharedElementCallback.java │ │ │ ├── MaterialElevationScale.java │ │ │ ├── MaterialFade.java │ │ │ ├── MaterialFadeThrough.java │ │ │ ├── MaterialSharedAxis.java │ │ │ ├── MaterialVisibility.java │ │ │ ├── ScaleProvider.java │ │ │ ├── SlideDistanceProvider.java │ │ │ ├── TransitionListenerAdapter.java │ │ │ ├── TransitionUtils.java │ │ │ └── VisibilityAnimatorProvider.java │ │ ├── res-public │ │ │ └── values │ │ │ │ └── public.xml │ │ └── res │ │ │ └── values │ │ │ ├── attrs.xml │ │ │ ├── dimens.xml │ │ │ ├── ids.xml │ │ │ ├── integers.xml │ │ │ └── strings.xml │ │ └── typography │ │ ├── res-public │ │ └── values │ │ │ └── public.xml │ │ └── res │ │ ├── values-v21 │ │ └── styles.xml │ │ └── values │ │ ├── attrs.xml │ │ └── styles.xml ├── proguard-behaviors.pro └── proguard-inflater.pro ├── picker ├── picker-basic │ ├── .gitignore │ ├── build.gradle │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── androidx │ │ │ └── picker │ │ │ ├── app │ │ │ ├── SeslDatePickerDialog.java │ │ │ └── SeslTimePickerDialog.java │ │ │ ├── util │ │ │ └── SeslAnimationListener.java │ │ │ └── widget │ │ │ ├── SeslDatePicker.java │ │ │ ├── SeslDatePickerSpinnerLayout.java │ │ │ ├── SeslNumberPicker.java │ │ │ ├── SeslNumberPickerSpinnerDelegate.java │ │ │ ├── SeslSimpleMonthView.java │ │ │ ├── SeslSpinningDatePicker.java │ │ │ ├── SeslSpinningDatePickerSpinner.java │ │ │ ├── SeslSpinningDatePickerSpinnerDelegate.java │ │ │ ├── SeslTimePicker.java │ │ │ └── SeslTimePickerSpinnerDelegate.java │ │ ├── res-public │ │ └── values │ │ │ ├── public_attrs.xml │ │ │ └── public_styles.xml │ │ └── res │ │ ├── anim │ │ ├── sesl_date_picker_fade_in.xml │ │ └── sesl_date_picker_fade_out.xml │ │ ├── color │ │ └── sesl_number_picker_text_color_scroll.xml │ │ ├── drawable │ │ ├── sesl_custom_toast_background.xml │ │ ├── sesl_date_picker_background.xml │ │ ├── sesl_date_picker_header_background.xml │ │ ├── sesl_date_picker_next.xml │ │ └── sesl_date_picker_prev.xml │ │ ├── layout-sw600dp │ │ ├── sesl_spinning_date_picker.xml │ │ ├── sesl_spinning_date_picker_legacy.xml │ │ └── sesl_spinning_datepicker_time_picker_spinner.xml │ │ ├── layout │ │ ├── sesl_custom_toast_layout.xml │ │ ├── sesl_date_picker.xml │ │ ├── sesl_date_picker_dialog.xml │ │ ├── sesl_date_picker_legacy.xml │ │ ├── sesl_date_picker_spinner.xml │ │ ├── sesl_number_picker_spinner.xml │ │ ├── sesl_spinning_date_picker.xml │ │ ├── sesl_spinning_date_picker_calendar.xml │ │ ├── sesl_spinning_date_picker_legacy.xml │ │ ├── sesl_spinning_date_picker_legacy_multipane.xml │ │ ├── sesl_spinning_date_picker_legacy_phone.xml │ │ ├── sesl_spinning_date_picker_multipane.xml │ │ ├── sesl_spinning_date_picker_phone.xml │ │ ├── sesl_spinning_date_picker_spinner.xml │ │ ├── sesl_spinning_datepicker_time_picker_spinner.xml │ │ ├── sesl_spinning_datepicker_time_picker_spinner_multipane.xml │ │ ├── sesl_spinning_datepicker_time_picker_spinner_phone.xml │ │ ├── sesl_time_picker_spinner.xml │ │ └── sesl_time_picker_spinner_dialog.xml │ │ ├── values-ar │ │ └── strings.xml │ │ ├── values-as │ │ └── strings.xml │ │ ├── values-az-rAZ │ │ └── strings.xml │ │ ├── values-be-rBY │ │ └── strings.xml │ │ ├── values-bg │ │ └── strings.xml │ │ ├── values-bn-rBD │ │ └── strings.xml │ │ ├── values-bn-rIN │ │ └── strings.xml │ │ ├── values-bo │ │ └── strings.xml │ │ ├── values-bs │ │ └── strings.xml │ │ ├── values-ca │ │ └── strings.xml │ │ ├── values-cs │ │ └── strings.xml │ │ ├── values-da │ │ └── strings.xml │ │ ├── values-de │ │ └── strings.xml │ │ ├── values-el │ │ └── strings.xml │ │ ├── values-en-rCA │ │ └── strings.xml │ │ ├── values-en-rDI │ │ └── strings.xml │ │ ├── values-en-rPH │ │ └── strings.xml │ │ ├── values-en-rUS │ │ └── strings.xml │ │ ├── values-en-rZG │ │ └── strings.xml │ │ ├── values-en │ │ └── strings.xml │ │ ├── values-es-rES │ │ └── strings.xml │ │ ├── values-es-rUS │ │ └── strings.xml │ │ ├── values-et-rEE │ │ └── strings.xml │ │ ├── values-eu-rES │ │ └── strings.xml │ │ ├── values-fa │ │ └── strings.xml │ │ ├── values-fi │ │ └── strings.xml │ │ ├── values-fr-rCA │ │ └── strings.xml │ │ ├── values-fr │ │ └── strings.xml │ │ ├── values-ga │ │ └── strings.xml │ │ ├── values-gl-rES │ │ └── strings.xml │ │ ├── values-gu-rIN │ │ └── strings.xml │ │ ├── values-hi │ │ └── strings.xml │ │ ├── values-hr │ │ └── strings.xml │ │ ├── values-hu │ │ └── strings.xml │ │ ├── values-hy-rAM │ │ └── strings.xml │ │ ├── values-in │ │ └── strings.xml │ │ ├── values-is-rIS │ │ └── strings.xml │ │ ├── values-it │ │ └── strings.xml │ │ ├── values-iw │ │ └── strings.xml │ │ ├── values-ja │ │ └── strings.xml │ │ ├── values-ka-rGE │ │ └── strings.xml │ │ ├── values-kk-rKZ │ │ └── strings.xml │ │ ├── values-km-rKH │ │ └── strings.xml │ │ ├── values-kn-rIN │ │ └── strings.xml │ │ ├── values-ko │ │ └── strings.xml │ │ ├── values-ky-rKG │ │ └── strings.xml │ │ ├── values-land │ │ └── dimens.xml │ │ ├── values-lo-rLA │ │ └── strings.xml │ │ ├── values-lt │ │ └── strings.xml │ │ ├── values-lv │ │ └── strings.xml │ │ ├── values-mk-rMK │ │ └── strings.xml │ │ ├── values-ml-rIN │ │ └── strings.xml │ │ ├── values-mn-rMN │ │ └── strings.xml │ │ ├── values-mr-rIN │ │ └── strings.xml │ │ ├── values-ms-rMY │ │ └── strings.xml │ │ ├── values-my-rMM │ │ └── strings.xml │ │ ├── values-my-rZG │ │ └── strings.xml │ │ ├── values-nb │ │ └── strings.xml │ │ ├── values-ne-rNP │ │ └── strings.xml │ │ ├── values-ne │ │ └── strings.xml │ │ ├── values-night │ │ ├── colors.xml │ │ └── themes_daynight.xml │ │ ├── values-nl │ │ └── strings.xml │ │ ├── values-or │ │ └── strings.xml │ │ ├── values-pa-rIN │ │ └── strings.xml │ │ ├── values-pl-rSP │ │ └── strings.xml │ │ ├── values-pl │ │ └── strings.xml │ │ ├── values-pt-rBR │ │ ├── dimens.xml │ │ └── strings.xml │ │ ├── values-pt-rPT │ │ └── strings.xml │ │ ├── values-pt │ │ └── dimens.xml │ │ ├── values-ro │ │ └── strings.xml │ │ ├── values-ru │ │ └── strings.xml │ │ ├── values-si-rLK │ │ └── strings.xml │ │ ├── values-si │ │ └── strings.xml │ │ ├── values-sk │ │ └── strings.xml │ │ ├── values-sl │ │ └── strings.xml │ │ ├── values-sq-rAL │ │ └── strings.xml │ │ ├── values-sr │ │ └── strings.xml │ │ ├── values-sv │ │ └── strings.xml │ │ ├── values-sw220dp-h220dp-land │ │ └── dimens.xml │ │ ├── values-sw220dp-h290dp-land │ │ └── dimens.xml │ │ ├── values-sw220dp │ │ └── dimens.xml │ │ ├── values-sw249dp │ │ ├── dimens.xml │ │ └── integers.xml │ │ ├── values-sw320dp │ │ └── integers.xml │ │ ├── values-sw338dp │ │ └── dimens.xml │ │ ├── values-sw360dp-land │ │ └── dimens.xml │ │ ├── values-sw360dp │ │ └── dimens.xml │ │ ├── values-sw480dp │ │ └── dimens.xml │ │ ├── values-sw600dp │ │ └── dimens.xml │ │ ├── values-sw673dp │ │ └── dimens.xml │ │ ├── values-ta-rIN │ │ └── strings.xml │ │ ├── values-te-rIN │ │ └── strings.xml │ │ ├── values-tg │ │ └── strings.xml │ │ ├── values-th │ │ └── strings.xml │ │ ├── values-tk │ │ └── strings.xml │ │ ├── values-tl │ │ └── strings.xml │ │ ├── values-tr │ │ └── strings.xml │ │ ├── values-ug-rCN │ │ └── strings.xml │ │ ├── values-uk │ │ └── strings.xml │ │ ├── values-ur-rPK │ │ └── strings.xml │ │ ├── values-uz-rUZ │ │ └── strings.xml │ │ ├── values-vi │ │ └── strings.xml │ │ ├── values-w260dp │ │ └── integers.xml │ │ ├── values-w320dp │ │ └── integers.xml │ │ ├── values-zh-rCN │ │ └── strings.xml │ │ ├── values-zh-rHK │ │ └── strings.xml │ │ ├── values-zh-rTW │ │ └── strings.xml │ │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── integers.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ ├── themes.xml │ │ └── themes_daynight.xml └── picker-color │ ├── .gitignore │ ├── build.gradle │ └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── androidx │ │ ├── picker │ │ ├── app │ │ │ ├── SeslColorPickerDialog.java │ │ │ └── SeslColorPickerDialogFragment.java │ │ └── widget │ │ │ ├── SeslColorPicker.java │ │ │ ├── SeslColorSwatchView.java │ │ │ ├── SeslOpacitySeekBar.java │ │ │ └── SeslRecentColorInfo.java │ │ └── picker3 │ │ ├── app │ │ ├── SeslColorPickerDialog.java │ │ └── SeslColorPickerDialogFragment.java │ │ └── widget │ │ ├── SeslColorPicker.java │ │ ├── SeslColorSpectrumView.java │ │ ├── SeslColorSwatchView.java │ │ ├── SeslGradientColorSeekBar.java │ │ ├── SeslOpacitySeekBar.java │ │ └── SeslRecentColorInfo.java │ └── res │ ├── drawable-land-xxhdpi │ └── sesl_color_picker_opacity_seekbar_background.png │ ├── drawable-land │ ├── sesl_color_picker_opacity_background.png │ └── sesl_color_picker_opacity_seekbar_background.png │ ├── drawable-ldrtl │ ├── sesl_color_picker_oneui_3_selected_color_item_current_left_view.xml │ ├── sesl_color_picker_oneui_3_selected_color_item_current_right_view.xml │ ├── sesl_color_picker_selected_color_item_current.xml │ └── sesl_color_picker_selected_color_item_new.xml │ ├── drawable-sw360dp-land │ └── sesl_color_picker_opacity_seekbar_background.png │ ├── drawable-sw360dp │ └── sesl_color_picker_opacity_seekbar_background.png │ ├── drawable-sw411dp-land │ └── sesl_color_picker_opacity_seekbar_background.png │ ├── drawable-sw411dp │ └── sesl_color_picker_opacity_seekbar_background.png │ ├── drawable │ ├── sesl_color_picker_divider.xml │ ├── sesl_color_picker_gradient_seekbar_drawable.xml │ ├── sesl_color_picker_gradient_wheel_cursor.xml │ ├── sesl_color_picker_oneui_3_selected_color_item_current_left_view.xml │ ├── sesl_color_picker_oneui_3_selected_color_item_current_right_view.xml │ ├── sesl_color_picker_opacity_background.png │ ├── sesl_color_picker_opacity_seekbar.xml │ ├── sesl_color_picker_opacity_seekbar_background.png │ ├── sesl_color_picker_seekbar_cursor.xml │ ├── sesl_color_picker_selected_color_item_current.xml │ ├── sesl_color_picker_selected_color_item_current_left_view.xml │ ├── sesl_color_picker_selected_color_item_current_right_view.xml │ ├── sesl_color_picker_selected_color_item_new.xml │ ├── sesl_color_picker_tab_selector_bg.xml │ ├── sesl_color_picker_tab_selector_bg_dark.xml │ ├── sesl_color_picker_used_color_item_slot_dark.xml │ ├── sesl_color_picker_used_color_item_slot_light.xml │ ├── sesl_color_swatch_view_cursor.xml │ ├── sesl_color_swatch_view_cursor_gray.xml │ ├── sesl_color_swatch_view_cursor_gray_old.xml │ └── sesl_color_swatch_view_cursor_old.xml │ ├── layout-iw │ ├── sesl_color_picker_opacity_edittext_layout.xml │ └── sesl_color_picker_saturation_edittext_layout.xml │ ├── layout-land │ ├── sesl_color_picker_layout.xml │ ├── sesl_color_picker_oneui_3_layout.xml │ └── sesl_color_picker_oneui_3_used_color_group.xml │ ├── layout-sw600dp │ ├── sesl_color_picker_oneui_3_layout.xml │ └── sesl_color_picker_oneui_3_used_color_group.xml │ ├── layout-tr │ ├── sesl_color_picker_opacity_edittext_layout.xml │ └── sesl_color_picker_saturation_edittext_layout.xml │ ├── layout │ ├── sesl_color_picker_dialog.xml │ ├── sesl_color_picker_layout.xml │ ├── sesl_color_picker_oneui_3_dialog.xml │ ├── sesl_color_picker_oneui_3_layout.xml │ ├── sesl_color_picker_oneui_3_selected_color_group.xml │ ├── sesl_color_picker_oneui_3_selected_color_layout.xml │ ├── sesl_color_picker_oneui_3_tab_layout.xml │ ├── sesl_color_picker_oneui_3_used_color_group.xml │ ├── sesl_color_picker_opacity_edittext_layout.xml │ ├── sesl_color_picker_saturation_edittext_layout.xml │ ├── sesl_color_picker_selected_color_group.xml │ ├── sesl_color_picker_selected_color_layout.xml │ └── sesl_color_picker_used_color_group.xml │ ├── values-ar │ └── strings.xml │ ├── values-as │ └── strings.xml │ ├── values-az-rAZ │ └── strings.xml │ ├── values-be-rBY │ └── strings.xml │ ├── values-bg │ └── strings.xml │ ├── values-bn-rBD │ └── strings.xml │ ├── values-bn-rIN │ └── strings.xml │ ├── values-bo │ └── strings.xml │ ├── values-bs │ └── strings.xml │ ├── values-ca │ └── strings.xml │ ├── values-cs │ └── strings.xml │ ├── values-da │ └── strings.xml │ ├── values-de │ └── strings.xml │ ├── values-el │ └── strings.xml │ ├── values-en-rCA │ └── strings.xml │ ├── values-en-rDI │ └── strings.xml │ ├── values-en-rPH │ └── strings.xml │ ├── values-en-rUS │ └── strings.xml │ ├── values-en-rZG │ └── strings.xml │ ├── values-en │ └── strings.xml │ ├── values-es-rES │ └── strings.xml │ ├── values-es-rUS │ └── strings.xml │ ├── values-et-rEE │ └── strings.xml │ ├── values-eu-rES │ └── strings.xml │ ├── values-fa │ └── strings.xml │ ├── values-fi │ └── strings.xml │ ├── values-fr-rCA │ └── strings.xml │ ├── values-fr │ └── strings.xml │ ├── values-ga │ └── strings.xml │ ├── values-gl-rES │ └── strings.xml │ ├── values-gu-rIN │ └── strings.xml │ ├── values-hi │ └── strings.xml │ ├── values-hr │ └── strings.xml │ ├── values-hu │ └── strings.xml │ ├── values-hy-rAM │ └── strings.xml │ ├── values-in │ └── strings.xml │ ├── values-is-rIS │ └── strings.xml │ ├── values-it │ └── strings.xml │ ├── values-iw │ └── strings.xml │ ├── values-ja │ └── strings.xml │ ├── values-ka-rGE │ └── strings.xml │ ├── values-kk-rKZ │ └── strings.xml │ ├── values-km-rKH │ └── strings.xml │ ├── values-kn-rIN │ └── strings.xml │ ├── values-ko │ └── strings.xml │ ├── values-ky-rKG │ └── strings.xml │ ├── values-land │ └── dimens.xml │ ├── values-lo-rLA │ └── strings.xml │ ├── values-lt │ └── strings.xml │ ├── values-lv │ └── strings.xml │ ├── values-mk-rMK │ └── strings.xml │ ├── values-ml-rIN │ └── strings.xml │ ├── values-mn-rMN │ └── strings.xml │ ├── values-mr-rIN │ └── strings.xml │ ├── values-ms-rMY │ └── strings.xml │ ├── values-my-rMM │ └── strings.xml │ ├── values-my-rZG │ └── strings.xml │ ├── values-nb │ └── strings.xml │ ├── values-ne-rNP │ └── strings.xml │ ├── values-ne │ └── strings.xml │ ├── values-night │ └── colors.xml │ ├── values-nl │ └── strings.xml │ ├── values-or │ └── strings.xml │ ├── values-pa-rIN │ └── strings.xml │ ├── values-pl-rSP │ └── strings.xml │ ├── values-pl │ └── strings.xml │ ├── values-pt-rBR │ └── strings.xml │ ├── values-pt-rPT │ └── strings.xml │ ├── values-ro │ └── strings.xml │ ├── values-ru │ └── strings.xml │ ├── values-si-rLK │ └── strings.xml │ ├── values-si │ └── strings.xml │ ├── values-sk │ └── strings.xml │ ├── values-sl │ └── strings.xml │ ├── values-sq-rAL │ └── strings.xml │ ├── values-sr │ └── strings.xml │ ├── values-sv │ └── strings.xml │ ├── values-sw360dp-land │ └── dimens.xml │ ├── values-sw360dp │ └── dimens.xml │ ├── values-sw411dp-land │ └── dimens.xml │ ├── values-sw411dp │ └── dimens.xml │ ├── values-sw600dp-land │ └── dimens.xml │ ├── values-ta-rIN │ └── strings.xml │ ├── values-te-rIN │ └── strings.xml │ ├── values-tg │ └── strings.xml │ ├── values-th │ └── strings.xml │ ├── values-tk │ └── strings.xml │ ├── values-tl │ └── strings.xml │ ├── values-tr │ └── strings.xml │ ├── values-ug-rCN │ └── strings.xml │ ├── values-uk │ └── strings.xml │ ├── values-ur-rPK │ └── strings.xml │ ├── values-uz-rUZ │ └── strings.xml │ ├── values-vi │ └── strings.xml │ ├── values-zh-rCN │ └── strings.xml │ ├── values-zh-rHK │ └── strings.xml │ ├── values-zh-rTW │ └── strings.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── public.xml │ ├── strings.xml │ └── styles.xml ├── preference ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── res-public │ └── values │ │ ├── public_attrs.xml │ │ ├── public_styles.xml │ │ └── public_themes.xml ├── res │ ├── drawable-v21 │ │ ├── ic_arrow_down_24dp.xml │ │ └── preference_list_divider_material.xml │ ├── drawable │ │ ├── ic_arrow_down_24dp.xml │ │ └── preference_list_divider_material.xml │ ├── layout │ │ ├── expand_button.xml │ │ ├── image_frame.xml │ │ ├── preference.xml │ │ ├── preference_category_material.xml │ │ ├── preference_dialog_edittext.xml │ │ ├── preference_dropdown_material.xml │ │ ├── preference_information.xml │ │ ├── preference_information_material.xml │ │ ├── preference_list_fragment.xml │ │ ├── preference_material.xml │ │ ├── preference_widget_checkbox.xml │ │ ├── preference_widget_seekbar_material.xml │ │ ├── sesl_preference.xml │ │ ├── sesl_preference_category.xml │ │ ├── sesl_preference_category_empty.xml │ │ ├── sesl_preference_dialog_edittext.xml │ │ ├── sesl_preference_dialog_seekbar.xml │ │ ├── sesl_preference_dropdown.xml │ │ ├── sesl_preference_recyclerview.xml │ │ ├── sesl_preference_switch_large.xml │ │ ├── sesl_preference_widget_checkbox.xml │ │ ├── sesl_preference_widget_seekbar.xml │ │ ├── sesl_preference_widget_switch.xml │ │ ├── sesl_switch_preference_screen.xml │ │ ├── sesl_switch_preference_screen_large.xml │ │ └── sesl_switch_preference_screen_widget_divider.xml │ ├── values-af │ │ └── strings.xml │ ├── values-am │ │ └── strings.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-as │ │ └── strings.xml │ ├── values-az-rAZ │ │ └── strings.xml │ ├── values-az │ │ └── strings.xml │ ├── values-b+sr+Latn │ │ └── strings.xml │ ├── values-be-rBY │ │ └── strings.xml │ ├── values-be │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-bn-rBD │ │ └── strings.xml │ ├── values-bn-rIN │ │ └── strings.xml │ ├── values-bn │ │ └── strings.xml │ ├── values-bo │ │ └── strings.xml │ ├── values-bs │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rAU │ │ └── strings.xml │ ├── values-en-rCA │ │ └── strings.xml │ ├── values-en-rDI │ │ └── strings.xml │ ├── values-en-rGB │ │ └── strings.xml │ ├── values-en-rIN │ │ └── strings.xml │ ├── values-en-rPH │ │ └── strings.xml │ ├── values-en-rUS │ │ └── strings.xml │ ├── values-en-rXC │ │ └── strings.xml │ ├── values-en-rZG │ │ └── strings.xml │ ├── values-en │ │ └── strings.xml │ ├── values-es-rES │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-es │ │ └── strings.xml │ ├── values-et-rEE │ │ └── strings.xml │ ├── values-et │ │ └── strings.xml │ ├── values-eu-rES │ │ └── strings.xml │ ├── values-eu │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr-rCA │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-ga │ │ └── strings.xml │ ├── values-gl-rES │ │ └── strings.xml │ ├── values-gl │ │ └── strings.xml │ ├── values-gu-rIN │ │ └── strings.xml │ ├── values-gu │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-hy-rAM │ │ └── strings.xml │ ├── values-hy │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is-rIS │ │ └── strings.xml │ ├── values-is │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka-rGE │ │ └── strings.xml │ ├── values-ka │ │ └── strings.xml │ ├── values-kk-rKZ │ │ └── strings.xml │ ├── values-kk │ │ └── strings.xml │ ├── values-km-rKH │ │ └── strings.xml │ ├── values-km │ │ └── strings.xml │ ├── values-kn-rIN │ │ └── strings.xml │ ├── values-kn │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-ky-rKG │ │ └── strings.xml │ ├── values-ky │ │ └── strings.xml │ ├── values-lo-rLA │ │ └── strings.xml │ ├── values-lo │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mk-rMK │ │ └── strings.xml │ ├── values-mk │ │ └── strings.xml │ ├── values-ml-rIN │ │ └── strings.xml │ ├── values-ml │ │ └── strings.xml │ ├── values-mn-rMN │ │ └── strings.xml │ ├── values-mn │ │ └── strings.xml │ ├── values-mr-rIN │ │ └── strings.xml │ ├── values-mr │ │ └── strings.xml │ ├── values-ms-rMY │ │ └── strings.xml │ ├── values-ms │ │ └── strings.xml │ ├── values-my-rMM │ │ └── strings.xml │ ├── values-my-rZG │ │ └── strings.xml │ ├── values-my │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-ne-rNP │ │ └── strings.xml │ ├── values-ne │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-or │ │ └── strings.xml │ ├── values-pa-rIN │ │ └── strings.xml │ ├── values-pa │ │ └── strings.xml │ ├── values-pl-rSP │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-pt │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-si-rLK │ │ └── strings.xml │ ├── values-si │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sq-rAL │ │ └── strings.xml │ ├── values-sq │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-sw │ │ └── strings.xml │ ├── values-sw360dp │ │ └── config.xml │ ├── values-ta-rIN │ │ └── strings.xml │ ├── values-ta │ │ └── strings.xml │ ├── values-te-rIN │ │ └── strings.xml │ ├── values-te │ │ └── strings.xml │ ├── values-tg │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tk │ │ └── strings.xml │ ├── values-tl │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-ug-rCN │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur-rPK │ │ └── strings.xml │ ├── values-ur │ │ └── strings.xml │ ├── values-uz-rUZ │ │ └── strings.xml │ ├── values-uz │ │ └── strings.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rHK │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ ├── values-zu │ │ └── strings.xml │ └── values │ │ ├── attrs.xml │ │ ├── colors.xml │ │ ├── config.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── themes.xml └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── androidx │ └── preference │ ├── AndroidResources.java │ ├── CheckBoxPreference.java │ ├── DialogPreference.java │ ├── DropDownPreference.java │ ├── EditTextPreference.java │ ├── EditTextPreferenceDialogFragment.java │ ├── EditTextPreferenceDialogFragmentCompat.java │ ├── ExpandButton.java │ ├── ListPreference.java │ ├── ListPreferenceDialogFragment.java │ ├── ListPreferenceDialogFragmentCompat.java │ ├── MultiSelectListPreference.java │ ├── MultiSelectListPreferenceDialogFragment.java │ ├── MultiSelectListPreferenceDialogFragmentCompat.java │ ├── Preference.java │ ├── PreferenceCategory.java │ ├── PreferenceDataStore.java │ ├── PreferenceDialogFragment.java │ ├── PreferenceDialogFragmentCompat.java │ ├── PreferenceFragment.java │ ├── PreferenceFragmentCompat.java │ ├── PreferenceGroup.java │ ├── PreferenceGroupAdapter.java │ ├── PreferenceInflater.java │ ├── PreferenceManager.java │ ├── PreferenceRecyclerViewAccessibilityDelegate.java │ ├── PreferenceScreen.java │ ├── PreferenceViewHolder.java │ ├── SeekBarPreference.java │ ├── SeslRingtonePreference.java │ ├── SeslSeekBarDialogPreference.java │ ├── SeslSwitchPreferenceScreen.java │ ├── SwitchPreference.java │ ├── SwitchPreferenceCompat.java │ ├── TwoStatePreference.java │ ├── UnPressableLinearLayout.java │ ├── internal │ ├── PreferenceImageView.java │ └── package-info.java │ └── package-info.java ├── readme-res └── sesl-readme-header.png ├── recyclerview ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── res-public │ └── values │ │ └── public_attrs.xml ├── res │ ├── drawable-anydpi │ │ └── sesl_fastscroll_thumb_alpha.xml │ ├── drawable-hdpi │ │ └── sesl_fastscroll_thumb_alpha.png │ ├── drawable-ldpi │ │ └── sesl_fastscroll_thumb_alpha.png │ ├── drawable-mdpi │ │ └── sesl_fastscroll_thumb_alpha.png │ ├── drawable-xhdpi │ │ └── sesl_fastscroll_thumb_alpha.png │ ├── drawable-xxhdpi │ │ └── sesl_fastscroll_thumb_alpha.png │ ├── drawable-xxxhdpi │ │ └── sesl_fastscroll_thumb_alpha.png │ ├── drawable │ │ ├── sesl_fastscroll_label_left.xml │ │ ├── sesl_fastscroll_label_right.xml │ │ ├── sesl_fastscroll_thumb.xml │ │ ├── sesl_fastscroll_track.xml │ │ ├── sesl_fastscroll_track_alpha.9.png │ │ ├── sesl_go_to_top_background_dark.xml │ │ └── sesl_go_to_top_background_light.xml │ ├── values-ar │ │ └── strings.xml │ ├── values-as │ │ └── strings.xml │ ├── values-az-rAZ │ │ └── strings.xml │ ├── values-be-rBY │ │ └── strings.xml │ ├── values-bg │ │ └── strings.xml │ ├── values-bn-rBD │ │ └── strings.xml │ ├── values-bn-rIN │ │ └── strings.xml │ ├── values-bo │ │ └── strings.xml │ ├── values-bs │ │ └── strings.xml │ ├── values-ca │ │ └── strings.xml │ ├── values-cs │ │ └── strings.xml │ ├── values-da │ │ └── strings.xml │ ├── values-de │ │ └── strings.xml │ ├── values-el │ │ └── strings.xml │ ├── values-en-rCA │ │ └── strings.xml │ ├── values-en-rDI │ │ └── strings.xml │ ├── values-en-rPH │ │ └── strings.xml │ ├── values-en-rUS │ │ └── strings.xml │ ├── values-en-rZG │ │ └── strings.xml │ ├── values-en │ │ └── strings.xml │ ├── values-es-rES │ │ └── strings.xml │ ├── values-es-rUS │ │ └── strings.xml │ ├── values-et-rEE │ │ └── strings.xml │ ├── values-eu-rES │ │ └── strings.xml │ ├── values-fa │ │ └── strings.xml │ ├── values-fi │ │ └── strings.xml │ ├── values-fr-rCA │ │ └── strings.xml │ ├── values-fr │ │ └── strings.xml │ ├── values-ga │ │ └── strings.xml │ ├── values-gl-rES │ │ └── strings.xml │ ├── values-gu-rIN │ │ └── strings.xml │ ├── values-hi │ │ └── strings.xml │ ├── values-hr │ │ └── strings.xml │ ├── values-hu │ │ └── strings.xml │ ├── values-hy-rAM │ │ └── strings.xml │ ├── values-in │ │ └── strings.xml │ ├── values-is-rIS │ │ └── strings.xml │ ├── values-it │ │ └── strings.xml │ ├── values-iw │ │ └── strings.xml │ ├── values-ja │ │ └── strings.xml │ ├── values-ka-rGE │ │ └── strings.xml │ ├── values-kk-rKZ │ │ └── strings.xml │ ├── values-km-rKH │ │ └── strings.xml │ ├── values-kn-rIN │ │ └── strings.xml │ ├── values-ko │ │ └── strings.xml │ ├── values-ky-rKG │ │ └── strings.xml │ ├── values-lo-rLA │ │ └── strings.xml │ ├── values-lt │ │ └── strings.xml │ ├── values-lv │ │ └── strings.xml │ ├── values-mk-rMK │ │ └── strings.xml │ ├── values-ml-rIN │ │ └── strings.xml │ ├── values-mn-rMN │ │ └── strings.xml │ ├── values-mr-rIN │ │ └── strings.xml │ ├── values-ms-rMY │ │ └── strings.xml │ ├── values-my-rMM │ │ └── strings.xml │ ├── values-my-rZG │ │ └── strings.xml │ ├── values-nb │ │ └── strings.xml │ ├── values-ne-rNP │ │ └── strings.xml │ ├── values-ne │ │ └── strings.xml │ ├── values-nl │ │ └── strings.xml │ ├── values-or │ │ └── strings.xml │ ├── values-pa-rIN │ │ └── strings.xml │ ├── values-pl-rSP │ │ └── strings.xml │ ├── values-pl │ │ └── strings.xml │ ├── values-pt-rBR │ │ └── strings.xml │ ├── values-pt-rPT │ │ └── strings.xml │ ├── values-ro │ │ └── strings.xml │ ├── values-ru │ │ └── strings.xml │ ├── values-si-rLK │ │ └── strings.xml │ ├── values-si │ │ └── strings.xml │ ├── values-sk │ │ └── strings.xml │ ├── values-sl │ │ └── strings.xml │ ├── values-sq-rAL │ │ └── strings.xml │ ├── values-sr │ │ └── strings.xml │ ├── values-sv │ │ └── strings.xml │ ├── values-ta-rIN │ │ └── strings.xml │ ├── values-te-rIN │ │ └── strings.xml │ ├── values-tg │ │ └── strings.xml │ ├── values-th │ │ └── strings.xml │ ├── values-tk │ │ └── strings.xml │ ├── values-tl │ │ └── strings.xml │ ├── values-tr │ │ └── strings.xml │ ├── values-ug-rCN │ │ └── strings.xml │ ├── values-uk │ │ └── strings.xml │ ├── values-ur-rPK │ │ └── strings.xml │ ├── values-uz-rUZ │ │ └── strings.xml │ ├── values-vi │ │ └── strings.xml │ ├── values-zh-rCN │ │ └── strings.xml │ ├── values-zh-rHK │ │ └── strings.xml │ ├── values-zh-rTW │ │ └── strings.xml │ └── values │ │ ├── attrs.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── androidx │ └── recyclerview │ └── widget │ ├── AdapterHelper.java │ ├── AdapterListUpdateCallback.java │ ├── AsyncDifferConfig.java │ ├── AsyncListDiffer.java │ ├── AsyncListUtil.java │ ├── BatchingListUpdateCallback.java │ ├── ChildHelper.java │ ├── ConcatAdapter.java │ ├── ConcatAdapterController.java │ ├── DefaultItemAnimator.java │ ├── DiffUtil.java │ ├── DividerItemDecoration.java │ ├── FastScroller.java │ ├── GapWorker.java │ ├── GridLayoutManager.java │ ├── ItemTouchHelper.java │ ├── ItemTouchUIUtil.java │ ├── ItemTouchUIUtilImpl.java │ ├── LayoutState.java │ ├── LinearLayoutManager.java │ ├── LinearSmoothScroller.java │ ├── LinearSnapHelper.java │ ├── ListAdapter.java │ ├── ListUpdateCallback.java │ ├── MessageThreadUtil.java │ ├── NestedAdapterWrapper.java │ ├── OpReorderer.java │ ├── OrientationHelper.java │ ├── PagerSnapHelper.java │ ├── RecyclerView.java │ ├── RecyclerViewAccessibilityDelegate.java │ ├── ScrollbarHelper.java │ ├── SeslRecyclerViewFastScroller.java │ ├── SeslSwipeListAnimator.java │ ├── SimpleItemAnimator.java │ ├── SnapHelper.java │ ├── SortedList.java │ ├── SortedListAdapterCallback.java │ ├── StableIdStorage.java │ ├── StaggeredGridLayoutManager.java │ ├── ThreadUtil.java │ ├── TileList.java │ ├── ViewBoundsCheck.java │ ├── ViewInfoStore.java │ └── ViewTypeStorage.java ├── settings.gradle ├── swiperefreshlayout ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── androidx │ │ └── swiperefreshlayout │ │ └── widget │ │ ├── CircleImageView.java │ │ ├── CircularProgressDrawable.java │ │ └── SwipeRefreshLayout.java │ ├── res-public │ └── values │ │ └── attrs.xml │ └── res │ ├── anim │ ├── sesl_swipe_refresh_anim1.xml │ ├── sesl_swipe_refresh_anim2.xml │ ├── sesl_swipe_refresh_anim3.xml │ ├── sesl_swipe_refresh_anim4.xml │ ├── sesl_swipe_refresh_anim5.xml │ ├── sesl_swipe_refresh_anim6.xml │ ├── sesl_swipe_refresh_anim7.xml │ ├── sesl_swipe_refresh_anim8.xml │ ├── sesl_swipe_refresh_anim9.xml │ ├── sesl_swipe_refresh_interpolator.xml │ ├── sesl_swipe_refresh_interpolator2.xml │ └── sine_in_out_70.xml │ ├── drawable │ ├── sesl_swipe_refresh_animated.xml │ └── sesl_swipe_refresh_dot.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ └── styles.xml ├── viewpager ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── androidx │ └── viewpager │ └── widget │ ├── PagerAdapter.java │ ├── PagerTabStrip.java │ ├── PagerTitleStrip.java │ └── ViewPager.java └── viewpager2 ├── .gitignore ├── build.gradle └── src └── main ├── AndroidManifest.xml ├── java └── androidx │ └── viewpager2 │ ├── adapter │ ├── FragmentStateAdapter.java │ ├── FragmentViewHolder.java │ └── StatefulAdapter.java │ └── widget │ ├── AnimateLayoutChangeDetector.java │ ├── CompositeOnPageChangeCallback.java │ ├── CompositePageTransformer.java │ ├── FakeDrag.java │ ├── MarginPageTransformer.java │ ├── PageTransformerAdapter.java │ ├── ScrollEventAdapter.java │ └── ViewPager2.java └── res └── values └── attrs.xml /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/ 5 | .DS_Store 6 | /build 7 | /captures 8 | .externalNativeBuild 9 | .cxx 10 | local.properties 11 | -------------------------------------------------------------------------------- /appcompat/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /appcompat/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-hdpi/abc_text_select_handle_left_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-hdpi/abc_text_select_handle_left_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-hdpi/abc_text_select_handle_middle_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-hdpi/abc_text_select_handle_middle_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-hdpi/abc_text_select_handle_right_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-hdpi/abc_text_select_handle_right_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-hdpi/sesl_scrollbar_handle_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-hdpi/sesl_scrollbar_handle_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-ldrtl-xxhdpi/sesl_textfield_activated_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-ldrtl-xxhdpi/sesl_textfield_activated_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-ldrtl-xxhdpi/sesl_textfield_default_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-ldrtl-xxhdpi/sesl_textfield_default_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-ldrtl-xxxhdpi/sesl_textfield_activated_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-ldrtl-xxxhdpi/sesl_textfield_activated_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-ldrtl-xxxhdpi/sesl_textfield_default_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-ldrtl-xxxhdpi/sesl_textfield_default_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-mdpi/abc_text_select_handle_left_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-mdpi/abc_text_select_handle_left_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-mdpi/abc_text_select_handle_middle_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-mdpi/abc_text_select_handle_middle_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-mdpi/abc_text_select_handle_right_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-mdpi/abc_text_select_handle_right_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-mdpi/sesl_scrollbar_handle_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-mdpi/sesl_scrollbar_handle_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-mdpi/sesl_scrollbar_handle_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-mdpi/sesl_scrollbar_handle_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-mdpi/sesl_toast_frame_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-mdpi/sesl_toast_frame_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xhdpi/abc_text_select_handle_left_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xhdpi/abc_text_select_handle_left_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xhdpi/abc_text_select_handle_middle_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xhdpi/abc_text_select_handle_middle_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xhdpi/abc_text_select_handle_right_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xhdpi/abc_text_select_handle_right_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xhdpi/sesl_scrollbar_handle_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xhdpi/sesl_scrollbar_handle_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xhdpi/sesl_toast_frame_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xhdpi/sesl_toast_frame_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/abc_text_select_handle_left_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/abc_text_select_handle_left_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/abc_text_select_handle_middle_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/abc_text_select_handle_middle_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/abc_text_select_handle_right_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/abc_text_select_handle_right_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_action_bar_stacked_divider_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_action_bar_stacked_divider_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_progress_bar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_progress_bar.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_scrollbar_handle_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_scrollbar_handle_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_scrollbar_handle_mtrl_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_scrollbar_handle_mtrl_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_text_select_handle_left_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_text_select_handle_left_alpha.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_text_select_handle_middle_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_text_select_handle_middle_alpha.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_text_select_handle_right_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_text_select_handle_right_alpha.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_textfield_activated_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_textfield_activated_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_textfield_default_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_textfield_default_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxhdpi/sesl_toast_frame_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxhdpi/sesl_toast_frame_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxxhdpi/abc_text_select_handle_left_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxxhdpi/abc_text_select_handle_left_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxxhdpi/abc_text_select_handle_right_mtrl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxxhdpi/abc_text_select_handle_right_mtrl.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxxhdpi/sesl_textfield_activated_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxxhdpi/sesl_textfield_activated_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable-xxxhdpi/sesl_textfield_default_alpha.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable-xxxhdpi/sesl_textfield_default_alpha.9.png -------------------------------------------------------------------------------- /appcompat/src/main/res/drawable/sesl_vertical_bar_alpha.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/appcompat/src/main/res/drawable/sesl_vertical_bar_alpha.png -------------------------------------------------------------------------------- /apppickerview/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /apppickerview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_000.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_001.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_002.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_003.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_004.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_004.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_005.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_005.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_006.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_006.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_007.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_007.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_008.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_009.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_009.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_010.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_010.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_011.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_011.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_012.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_012.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_013.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_013.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_014.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_014.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_015.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_015.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_016.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_016.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_017.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_017.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_018.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_018.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_019.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_019.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_020.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_020.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_021.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_021.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_022.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_022.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_023.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_023.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_024.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_025.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_025.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_026.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_026.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_027.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_027.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_028.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_028.png -------------------------------------------------------------------------------- /apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_029.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/apppickerview/src/main/res/drawable-xxhdpi/sem_checkedtextview_check_to_on_mtrl_029.png -------------------------------------------------------------------------------- /coordinatorlayout/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /coordinatorlayout/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 16 | 17 | -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /core/proguard-rules.pro: -------------------------------------------------------------------------------- 1 | # Never inline methods, but allow shrinking and obfuscation. 2 | -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.ViewCompat$Api* { 3 | ; 4 | } 5 | -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.view.WindowInsetsCompat$*Impl* { 6 | ; 7 | } 8 | -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.app.NotificationCompat$*$Api*Impl { 9 | ; 10 | } 11 | -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.os.UserHandleCompat$Api*Impl { 12 | ; 13 | } 14 | -keepclassmembernames,allowobfuscation,allowshrinking class androidx.core.widget.EdgeEffectCompat$Api*Impl { 15 | ; 16 | } 17 | -------------------------------------------------------------------------------- /core/src/main/aidl/android/support/v4/os/ResultReceiver.aidl: -------------------------------------------------------------------------------- 1 | /* 2 | ** Copyright 2015, The Android Open Source Project 3 | ** 4 | ** Licensed under the Apache License, Version 2.0 (the "License"); 5 | ** you may not use this file except in compliance with the License. 6 | ** You may obtain a copy of the License at 7 | ** 8 | ** http://www.apache.org/licenses/LICENSE-2.0 9 | ** 10 | ** Unless required by applicable law or agreed to in writing, software 11 | ** distributed under the License is distributed on an "AS IS" BASIS, 12 | ** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | ** See the License for the specific language governing permissions and 14 | ** limitations under the License. 15 | */ 16 | 17 | package android.support.v4.os; 18 | 19 | parcelable ResultReceiver; 20 | -------------------------------------------------------------------------------- /core/src/main/aidl/androidx/core/app/unusedapprestrictions/IUnusedAppRestrictionsBackportCallback.aidl: -------------------------------------------------------------------------------- 1 | package androidx.core.app.unusedapprestrictions; 2 | 3 | /** @hide */ 4 | interface IUnusedAppRestrictionsBackportCallback { 5 | 6 | /** 7 | * This will be called with the results of the 8 | * IUnusedAppRestrictionsBackportService.isPermissionRevocationEnabledForApp API. 9 | * 10 | * @param success false if there was an error while checking if the app is 11 | * enabled, otherwise true. 12 | * @param isEnabled true if permission revocation is enabled for the app, 13 | * otherwise false. 14 | */ 15 | oneway void onIsPermissionRevocationEnabledForAppResult( 16 | boolean success, boolean isEnabled 17 | ); 18 | } -------------------------------------------------------------------------------- /core/src/main/java/androidx/core/accessibilityservice/OWNERS: -------------------------------------------------------------------------------- 1 | pweaver@google.com 2 | qasid@google.com -------------------------------------------------------------------------------- /core/src/main/java/androidx/core/internal/package-info.java: -------------------------------------------------------------------------------- 1 | /** 2 | * @hide 3 | */ 4 | @RestrictTo(LIBRARY_GROUP_PREFIX) 5 | package androidx.core.internal; 6 | 7 | import static androidx.annotation.RestrictTo.Scope.LIBRARY_GROUP_PREFIX; 8 | 9 | import androidx.annotation.RestrictTo; -------------------------------------------------------------------------------- /core/src/main/java/androidx/core/location/OWNERS: -------------------------------------------------------------------------------- 1 | wyattriley@google.com 2 | sooniln@google.com 3 | -------------------------------------------------------------------------------- /core/src/main/java/androidx/core/view/OWNERS: -------------------------------------------------------------------------------- 1 | per-file AccessibilityDelegateCompat.java = qasid@google.com, pweaver@google.com -------------------------------------------------------------------------------- /core/src/main/java/androidx/core/view/accessibility/OWNERS: -------------------------------------------------------------------------------- 1 | pweaver@google.com 2 | qasid@google.com -------------------------------------------------------------------------------- /core/src/main/res/drawable-hdpi/notification_bg_low_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-hdpi/notification_bg_low_normal.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-hdpi/notification_bg_low_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-hdpi/notification_bg_low_pressed.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-hdpi/notification_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-hdpi/notification_bg_normal.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-hdpi/notification_bg_normal_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-hdpi/notification_bg_normal_pressed.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-hdpi/notify_panel_notification_icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-hdpi/notify_panel_notification_icon_bg.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-mdpi/notification_bg_low_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-mdpi/notification_bg_low_normal.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-mdpi/notification_bg_low_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-mdpi/notification_bg_low_pressed.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-mdpi/notification_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-mdpi/notification_bg_normal.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-mdpi/notification_bg_normal_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-mdpi/notification_bg_normal_pressed.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-mdpi/notify_panel_notification_icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-mdpi/notify_panel_notification_icon_bg.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-xhdpi/notification_bg_low_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-xhdpi/notification_bg_low_normal.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-xhdpi/notification_bg_low_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-xhdpi/notification_bg_low_pressed.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-xhdpi/notification_bg_normal.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-xhdpi/notification_bg_normal.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-xhdpi/notification_bg_normal_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-xhdpi/notification_bg_normal_pressed.9.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-xhdpi/notify_panel_notification_icon_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OneUIProject/oneui-core/8c7734aeb9c89cdd74f814e96952709515370142/core/src/main/res/drawable-xhdpi/notify_panel_notification_icon_bg.png -------------------------------------------------------------------------------- /core/src/main/res/layout/custom_dialog.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 |