├── .gitignore ├── .idea ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── space │ │ └── siy │ │ └── waveformviewdemo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── jazz_in_paris.mp3 │ ├── java │ │ └── space │ │ │ └── siy │ │ │ └── waveformviewdemo │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── album_jazz_blues.jpg │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── space │ └── siy │ └── waveformviewdemo │ └── ExampleUnitTest.kt ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── sample1.png ├── sample2.png └── wfv.png ├── settings.gradle └── waveformview ├── .gitignore ├── build.gradle ├── build └── markdown │ ├── alltypes │ └── index.md │ ├── index.md │ ├── package-list │ └── space.siy.waveformview │ ├── -build-config │ ├── -a-p-p-l-i-c-a-t-i-o-n_-i-d.md │ ├── -b-u-i-l-d_-t-y-p-e.md │ ├── -d-e-b-u-g.md │ ├── -f-l-a-v-o-r.md │ ├── -init-.md │ ├── -v-e-r-s-i-o-n_-c-o-d-e.md │ ├── -v-e-r-s-i-o-n_-n-a-m-e.md │ └── index.md │ ├── -r │ ├── -init-.md │ ├── anim │ │ ├── -init-.md │ │ ├── abc_fade_in.md │ │ ├── abc_fade_out.md │ │ ├── abc_grow_fade_in_from_bottom.md │ │ ├── abc_popup_enter.md │ │ ├── abc_popup_exit.md │ │ ├── abc_shrink_fade_out_from_bottom.md │ │ ├── abc_slide_in_bottom.md │ │ ├── abc_slide_in_top.md │ │ ├── abc_slide_out_bottom.md │ │ ├── abc_slide_out_top.md │ │ ├── index.md │ │ ├── tooltip_enter.md │ │ └── tooltip_exit.md │ ├── attr │ │ ├── -init-.md │ │ ├── action-bar-divider.md │ │ ├── action-bar-item-background.md │ │ ├── action-bar-popup-theme.md │ │ ├── action-bar-size.md │ │ ├── action-bar-split-style.md │ │ ├── action-bar-style.md │ │ ├── action-bar-tab-bar-style.md │ │ ├── action-bar-tab-style.md │ │ ├── action-bar-tab-text-style.md │ │ ├── action-bar-theme.md │ │ ├── action-bar-widget-theme.md │ │ ├── action-button-style.md │ │ ├── action-drop-down-style.md │ │ ├── action-layout.md │ │ ├── action-menu-text-appearance.md │ │ ├── action-menu-text-color.md │ │ ├── action-mode-background.md │ │ ├── action-mode-close-button-style.md │ │ ├── action-mode-close-drawable.md │ │ ├── action-mode-copy-drawable.md │ │ ├── action-mode-cut-drawable.md │ │ ├── action-mode-find-drawable.md │ │ ├── action-mode-paste-drawable.md │ │ ├── action-mode-popup-window-style.md │ │ ├── action-mode-select-all-drawable.md │ │ ├── action-mode-share-drawable.md │ │ ├── action-mode-split-background.md │ │ ├── action-mode-style.md │ │ ├── action-mode-web-search-drawable.md │ │ ├── action-overflow-button-style.md │ │ ├── action-overflow-menu-style.md │ │ ├── action-provider-class.md │ │ ├── action-view-class.md │ │ ├── activity-chooser-view-style.md │ │ ├── alert-dialog-button-group-style.md │ │ ├── alert-dialog-center-buttons.md │ │ ├── alert-dialog-style.md │ │ ├── alert-dialog-theme.md │ │ ├── allow-stacking.md │ │ ├── alpha.md │ │ ├── alphabetic-modifiers.md │ │ ├── arrow-head-length.md │ │ ├── arrow-shaft-length.md │ │ ├── auto-complete-text-view-style.md │ │ ├── auto-size-max-text-size.md │ │ ├── auto-size-min-text-size.md │ │ ├── auto-size-preset-sizes.md │ │ ├── auto-size-step-granularity.md │ │ ├── auto-size-text-type.md │ │ ├── background-split.md │ │ ├── background-stacked.md │ │ ├── background-tint-mode.md │ │ ├── background-tint.md │ │ ├── background.md │ │ ├── bar-length.md │ │ ├── block-color-played.md │ │ ├── block-color.md │ │ ├── block-width.md │ │ ├── borderless-button-style.md │ │ ├── bottom-block-scale.md │ │ ├── button-bar-button-style.md │ │ ├── button-bar-negative-button-style.md │ │ ├── button-bar-neutral-button-style.md │ │ ├── button-bar-positive-button-style.md │ │ ├── button-bar-style.md │ │ ├── button-gravity.md │ │ ├── button-panel-side-layout.md │ │ ├── button-style-small.md │ │ ├── button-style.md │ │ ├── button-tint-mode.md │ │ ├── button-tint.md │ │ ├── checkbox-style.md │ │ ├── checked-text-view-style.md │ │ ├── close-icon.md │ │ ├── close-item-layout.md │ │ ├── collapse-content-description.md │ │ ├── collapse-icon.md │ │ ├── color-accent.md │ │ ├── color-background-floating.md │ │ ├── color-button-normal.md │ │ ├── color-control-activated.md │ │ ├── color-control-highlight.md │ │ ├── color-control-normal.md │ │ ├── color-error.md │ │ ├── color-primary-dark.md │ │ ├── color-primary.md │ │ ├── color-switch-thumb-normal.md │ │ ├── color.md │ │ ├── commit-icon.md │ │ ├── content-description.md │ │ ├── content-inset-end-with-actions.md │ │ ├── content-inset-end.md │ │ ├── content-inset-left.md │ │ ├── content-inset-right.md │ │ ├── content-inset-start-with-navigation.md │ │ ├── content-inset-start.md │ │ ├── control-background.md │ │ ├── custom-navigation-layout.md │ │ ├── default-query-hint.md │ │ ├── dialog-preferred-padding.md │ │ ├── dialog-theme.md │ │ ├── display-options.md │ │ ├── divider-horizontal.md │ │ ├── divider-padding.md │ │ ├── divider-vertical.md │ │ ├── divider.md │ │ ├── drawable-size.md │ │ ├── drawer-arrow-style.md │ │ ├── drop-down-list-view-style.md │ │ ├── dropdown-list-preferred-item-height.md │ │ ├── edit-text-background.md │ │ ├── edit-text-color.md │ │ ├── edit-text-style.md │ │ ├── elevation.md │ │ ├── expand-activity-overflow-button-drawable.md │ │ ├── font-family.md │ │ ├── font-provider-authority.md │ │ ├── font-provider-certs.md │ │ ├── font-provider-fetch-strategy.md │ │ ├── font-provider-fetch-timeout.md │ │ ├── font-provider-package.md │ │ ├── font-provider-query.md │ │ ├── font-style.md │ │ ├── font-weight.md │ │ ├── font.md │ │ ├── gap-between-bars.md │ │ ├── go-icon.md │ │ ├── height.md │ │ ├── hide-on-content-scroll.md │ │ ├── home-as-up-indicator.md │ │ ├── home-layout.md │ │ ├── icon-tint-mode.md │ │ ├── icon-tint.md │ │ ├── icon.md │ │ ├── iconified-by-default.md │ │ ├── image-button-style.md │ │ ├── indeterminate-progress-style.md │ │ ├── index.md │ │ ├── initial-activity-count.md │ │ ├── is-light-theme.md │ │ ├── item-padding.md │ │ ├── layout.md │ │ ├── list-choice-background-indicator.md │ │ ├── list-divider-alert-dialog.md │ │ ├── list-item-layout.md │ │ ├── list-layout.md │ │ ├── list-menu-view-style.md │ │ ├── list-popup-window-style.md │ │ ├── list-preferred-item-height-large.md │ │ ├── list-preferred-item-height-small.md │ │ ├── list-preferred-item-height.md │ │ ├── list-preferred-item-padding-left.md │ │ ├── list-preferred-item-padding-right.md │ │ ├── logo-description.md │ │ ├── logo.md │ │ ├── max-button-height.md │ │ ├── measure-with-largest-child.md │ │ ├── multi-choice-item-layout.md │ │ ├── navigation-content-description.md │ │ ├── navigation-icon.md │ │ ├── navigation-mode.md │ │ ├── numeric-modifiers.md │ │ ├── overlap-anchor.md │ │ ├── padding-bottom-no-buttons.md │ │ ├── padding-end.md │ │ ├── padding-start.md │ │ ├── padding-top-no-title.md │ │ ├── panel-background.md │ │ ├── panel-menu-list-theme.md │ │ ├── panel-menu-list-width.md │ │ ├── peak-mode.md │ │ ├── popup-menu-style.md │ │ ├── popup-theme.md │ │ ├── popup-window-style.md │ │ ├── preserve-icon-spacing.md │ │ ├── progress-bar-padding.md │ │ ├── progress-bar-style.md │ │ ├── query-background.md │ │ ├── query-hint.md │ │ ├── radio-button-style.md │ │ ├── rating-bar-style-indicator.md │ │ ├── rating-bar-style-small.md │ │ ├── rating-bar-style.md │ │ ├── search-hint-icon.md │ │ ├── search-icon.md │ │ ├── search-view-style.md │ │ ├── sec-per-block.md │ │ ├── seek-bar-style.md │ │ ├── selectable-item-background-borderless.md │ │ ├── selectable-item-background.md │ │ ├── show-as-action.md │ │ ├── show-dividers.md │ │ ├── show-text.md │ │ ├── show-time-text.md │ │ ├── show-title.md │ │ ├── single-choice-item-layout.md │ │ ├── spin-bars.md │ │ ├── spinner-drop-down-item-style.md │ │ ├── spinner-style.md │ │ ├── split-track.md │ │ ├── src-compat.md │ │ ├── state_above_anchor.md │ │ ├── sub-menu-arrow.md │ │ ├── submit-background.md │ │ ├── subtitle-text-appearance.md │ │ ├── subtitle-text-color.md │ │ ├── subtitle-text-style.md │ │ ├── subtitle.md │ │ ├── suggestion-row-layout.md │ │ ├── switch-min-width.md │ │ ├── switch-padding.md │ │ ├── switch-style.md │ │ ├── switch-text-appearance.md │ │ ├── text-all-caps.md │ │ ├── text-appearance-large-popup-menu.md │ │ ├── text-appearance-list-item-secondary.md │ │ ├── text-appearance-list-item-small.md │ │ ├── text-appearance-list-item.md │ │ ├── text-appearance-popup-menu-header.md │ │ ├── text-appearance-search-result-subtitle.md │ │ ├── text-appearance-search-result-title.md │ │ ├── text-appearance-small-popup-menu.md │ │ ├── text-bg-color.md │ │ ├── text-color-alert-dialog-list-item.md │ │ ├── text-color-search-url.md │ │ ├── text-color.md │ │ ├── theme.md │ │ ├── thickness.md │ │ ├── thumb-text-padding.md │ │ ├── thumb-tint-mode.md │ │ ├── thumb-tint.md │ │ ├── tick-mark-tint-mode.md │ │ ├── tick-mark-tint.md │ │ ├── tick-mark.md │ │ ├── tint-mode.md │ │ ├── tint.md │ │ ├── title-margin-bottom.md │ │ ├── title-margin-end.md │ │ ├── title-margin-start.md │ │ ├── title-margin-top.md │ │ ├── title-margin.md │ │ ├── title-margins.md │ │ ├── title-text-appearance.md │ │ ├── title-text-color.md │ │ ├── title-text-style.md │ │ ├── title.md │ │ ├── toolbar-navigation-button-style.md │ │ ├── toolbar-style.md │ │ ├── tooltip-foreground-color.md │ │ ├── tooltip-frame-background.md │ │ ├── tooltip-text.md │ │ ├── top-block-scale.md │ │ ├── track-tint-mode.md │ │ ├── track-tint.md │ │ ├── track.md │ │ ├── voice-icon.md │ │ ├── window-action-bar-overlay.md │ │ ├── window-action-bar.md │ │ ├── window-action-mode-overlay.md │ │ ├── window-fixed-height-major.md │ │ ├── window-fixed-height-minor.md │ │ ├── window-fixed-width-major.md │ │ ├── window-fixed-width-minor.md │ │ ├── window-min-width-major.md │ │ ├── window-min-width-minor.md │ │ └── window-no-title.md │ ├── bool │ │ ├── -init-.md │ │ ├── abc_action_bar_embed_tabs.md │ │ ├── abc_allow_stacked_button_bar.md │ │ ├── abc_config_action-menu-item-all-caps.md │ │ ├── abc_config_close-dialog-when-touch-outside.md │ │ ├── abc_config_show-menu-shortcuts-when-keyboard-present.md │ │ └── index.md │ ├── color │ │ ├── -init-.md │ │ ├── abc_background_cache_hint_selector_material_dark.md │ │ ├── abc_background_cache_hint_selector_material_light.md │ │ ├── abc_btn_colored_borderless_text_material.md │ │ ├── abc_btn_colored_text_material.md │ │ ├── abc_color_highlight_material.md │ │ ├── abc_hint_foreground_material_dark.md │ │ ├── abc_hint_foreground_material_light.md │ │ ├── abc_input_method_navigation_guard.md │ │ ├── abc_primary_text_disable_only_material_dark.md │ │ ├── abc_primary_text_disable_only_material_light.md │ │ ├── abc_primary_text_material_dark.md │ │ ├── abc_primary_text_material_light.md │ │ ├── abc_search_url_text.md │ │ ├── abc_search_url_text_normal.md │ │ ├── abc_search_url_text_pressed.md │ │ ├── abc_search_url_text_selected.md │ │ ├── abc_secondary_text_material_dark.md │ │ ├── abc_secondary_text_material_light.md │ │ ├── abc_tint_btn_checkable.md │ │ ├── abc_tint_default.md │ │ ├── abc_tint_edittext.md │ │ ├── abc_tint_seek_thumb.md │ │ ├── abc_tint_spinner.md │ │ ├── abc_tint_switch_track.md │ │ ├── accent_material_dark.md │ │ ├── accent_material_light.md │ │ ├── background_floating_material_dark.md │ │ ├── background_floating_material_light.md │ │ ├── background_material_dark.md │ │ ├── background_material_light.md │ │ ├── bright_foreground_disabled_material_dark.md │ │ ├── bright_foreground_disabled_material_light.md │ │ ├── bright_foreground_inverse_material_dark.md │ │ ├── bright_foreground_inverse_material_light.md │ │ ├── bright_foreground_material_dark.md │ │ ├── bright_foreground_material_light.md │ │ ├── button_material_dark.md │ │ ├── button_material_light.md │ │ ├── dim_foreground_disabled_material_dark.md │ │ ├── dim_foreground_disabled_material_light.md │ │ ├── dim_foreground_material_dark.md │ │ ├── dim_foreground_material_light.md │ │ ├── error_color_material.md │ │ ├── foreground_material_dark.md │ │ ├── foreground_material_light.md │ │ ├── highlighted_text_material_dark.md │ │ ├── highlighted_text_material_light.md │ │ ├── index.md │ │ ├── material_blue_grey_800.md │ │ ├── material_blue_grey_900.md │ │ ├── material_blue_grey_950.md │ │ ├── material_deep_teal_200.md │ │ ├── material_deep_teal_500.md │ │ ├── material_grey_100.md │ │ ├── material_grey_300.md │ │ ├── material_grey_50.md │ │ ├── material_grey_600.md │ │ ├── material_grey_800.md │ │ ├── material_grey_850.md │ │ ├── material_grey_900.md │ │ ├── notification_action_color_filter.md │ │ ├── notification_icon_bg_color.md │ │ ├── notification_material_background_media_default_color.md │ │ ├── primary_dark_material_dark.md │ │ ├── primary_dark_material_light.md │ │ ├── primary_material_dark.md │ │ ├── primary_material_light.md │ │ ├── primary_text_default_material_dark.md │ │ ├── primary_text_default_material_light.md │ │ ├── primary_text_disabled_material_dark.md │ │ ├── primary_text_disabled_material_light.md │ │ ├── ripple_material_dark.md │ │ ├── ripple_material_light.md │ │ ├── secondary_text_default_material_dark.md │ │ ├── secondary_text_default_material_light.md │ │ ├── secondary_text_disabled_material_dark.md │ │ ├── secondary_text_disabled_material_light.md │ │ ├── switch_thumb_disabled_material_dark.md │ │ ├── switch_thumb_disabled_material_light.md │ │ ├── switch_thumb_material_dark.md │ │ ├── switch_thumb_material_light.md │ │ ├── switch_thumb_normal_material_dark.md │ │ ├── switch_thumb_normal_material_light.md │ │ ├── tooltip_background_dark.md │ │ └── tooltip_background_light.md │ ├── dimen │ │ ├── -init-.md │ │ ├── abc_action_bar_content_inset_material.md │ │ ├── abc_action_bar_content_inset_with_nav.md │ │ ├── abc_action_bar_default_height_material.md │ │ ├── abc_action_bar_default_padding_end_material.md │ │ ├── abc_action_bar_default_padding_start_material.md │ │ ├── abc_action_bar_elevation_material.md │ │ ├── abc_action_bar_icon_vertical_padding_material.md │ │ ├── abc_action_bar_overflow_padding_end_material.md │ │ ├── abc_action_bar_overflow_padding_start_material.md │ │ ├── abc_action_bar_progress_bar_size.md │ │ ├── abc_action_bar_stacked_max_height.md │ │ ├── abc_action_bar_stacked_tab_max_width.md │ │ ├── abc_action_bar_subtitle_bottom_margin_material.md │ │ ├── abc_action_bar_subtitle_top_margin_material.md │ │ ├── abc_action_button_min_height_material.md │ │ ├── abc_action_button_min_width_material.md │ │ ├── abc_action_button_min_width_overflow_material.md │ │ ├── abc_alert_dialog_button_bar_height.md │ │ ├── abc_button_inset_horizontal_material.md │ │ ├── abc_button_inset_vertical_material.md │ │ ├── abc_button_padding_horizontal_material.md │ │ ├── abc_button_padding_vertical_material.md │ │ ├── abc_cascading_menus_min_smallest_width.md │ │ ├── abc_config_pref-dialog-width.md │ │ ├── abc_control_corner_material.md │ │ ├── abc_control_inset_material.md │ │ ├── abc_control_padding_material.md │ │ ├── abc_dialog_fixed_height_major.md │ │ ├── abc_dialog_fixed_height_minor.md │ │ ├── abc_dialog_fixed_width_major.md │ │ ├── abc_dialog_fixed_width_minor.md │ │ ├── abc_dialog_list_padding_bottom_no_buttons.md │ │ ├── abc_dialog_list_padding_top_no_title.md │ │ ├── abc_dialog_min_width_major.md │ │ ├── abc_dialog_min_width_minor.md │ │ ├── abc_dialog_padding_material.md │ │ ├── abc_dialog_padding_top_material.md │ │ ├── abc_dialog_title_divider_material.md │ │ ├── abc_disabled_alpha_material_dark.md │ │ ├── abc_disabled_alpha_material_light.md │ │ ├── abc_dropdownitem_icon_width.md │ │ ├── abc_dropdownitem_text_padding_left.md │ │ ├── abc_dropdownitem_text_padding_right.md │ │ ├── abc_edit_text_inset_bottom_material.md │ │ ├── abc_edit_text_inset_horizontal_material.md │ │ ├── abc_edit_text_inset_top_material.md │ │ ├── abc_floating_window_z.md │ │ ├── abc_list_item_padding_horizontal_material.md │ │ ├── abc_panel_menu_list_width.md │ │ ├── abc_progress_bar_height_material.md │ │ ├── abc_search_view_preferred_height.md │ │ ├── abc_search_view_preferred_width.md │ │ ├── abc_seekbar_track_background_height_material.md │ │ ├── abc_seekbar_track_progress_height_material.md │ │ ├── abc_select_dialog_padding_start_material.md │ │ ├── abc_switch_padding.md │ │ ├── abc_text_size_body_1_material.md │ │ ├── abc_text_size_body_2_material.md │ │ ├── abc_text_size_button_material.md │ │ ├── abc_text_size_caption_material.md │ │ ├── abc_text_size_display_1_material.md │ │ ├── abc_text_size_display_2_material.md │ │ ├── abc_text_size_display_3_material.md │ │ ├── abc_text_size_display_4_material.md │ │ ├── abc_text_size_headline_material.md │ │ ├── abc_text_size_large_material.md │ │ ├── abc_text_size_medium_material.md │ │ ├── abc_text_size_menu_header_material.md │ │ ├── abc_text_size_menu_material.md │ │ ├── abc_text_size_small_material.md │ │ ├── abc_text_size_subhead_material.md │ │ ├── abc_text_size_subtitle_material_toolbar.md │ │ ├── abc_text_size_title_material.md │ │ ├── abc_text_size_title_material_toolbar.md │ │ ├── compat_button_inset_horizontal_material.md │ │ ├── compat_button_inset_vertical_material.md │ │ ├── compat_button_padding_horizontal_material.md │ │ ├── compat_button_padding_vertical_material.md │ │ ├── compat_control_corner_material.md │ │ ├── disabled_alpha_material_dark.md │ │ ├── disabled_alpha_material_light.md │ │ ├── highlight_alpha_material_colored.md │ │ ├── highlight_alpha_material_dark.md │ │ ├── highlight_alpha_material_light.md │ │ ├── hint_alpha_material_dark.md │ │ ├── hint_alpha_material_light.md │ │ ├── hint_pressed_alpha_material_dark.md │ │ ├── hint_pressed_alpha_material_light.md │ │ ├── index.md │ │ ├── notification_action_icon_size.md │ │ ├── notification_action_text_size.md │ │ ├── notification_big_circle_margin.md │ │ ├── notification_content_margin_start.md │ │ ├── notification_large_icon_height.md │ │ ├── notification_large_icon_width.md │ │ ├── notification_main_column_padding_top.md │ │ ├── notification_media_narrow_margin.md │ │ ├── notification_right_icon_size.md │ │ ├── notification_right_side_padding_top.md │ │ ├── notification_small_icon_background_padding.md │ │ ├── notification_small_icon_size_as_large.md │ │ ├── notification_subtext_size.md │ │ ├── notification_top_pad.md │ │ ├── notification_top_pad_large_text.md │ │ ├── tooltip_corner_radius.md │ │ ├── tooltip_horizontal_padding.md │ │ ├── tooltip_margin.md │ │ ├── tooltip_precise_anchor_extra_offset.md │ │ ├── tooltip_precise_anchor_threshold.md │ │ ├── tooltip_vertical_padding.md │ │ ├── tooltip_y_offset_non_touch.md │ │ └── tooltip_y_offset_touch.md │ ├── drawable │ │ ├── -init-.md │ │ ├── abc_ab_share_pack_mtrl_alpha.md │ │ ├── abc_action_bar_item_background_material.md │ │ ├── abc_btn_borderless_material.md │ │ ├── abc_btn_check_material.md │ │ ├── abc_btn_check_to_on_mtrl_000.md │ │ ├── abc_btn_check_to_on_mtrl_015.md │ │ ├── abc_btn_colored_material.md │ │ ├── abc_btn_default_mtrl_shape.md │ │ ├── abc_btn_radio_material.md │ │ ├── abc_btn_radio_to_on_mtrl_000.md │ │ ├── abc_btn_radio_to_on_mtrl_015.md │ │ ├── abc_btn_switch_to_on_mtrl_00001.md │ │ ├── abc_btn_switch_to_on_mtrl_00012.md │ │ ├── abc_cab_background_internal_bg.md │ │ ├── abc_cab_background_top_material.md │ │ ├── abc_cab_background_top_mtrl_alpha.md │ │ ├── abc_control_background_material.md │ │ ├── abc_dialog_material_background.md │ │ ├── abc_edit_text_material.md │ │ ├── abc_ic_ab_back_material.md │ │ ├── abc_ic_arrow_drop_right_black_24dp.md │ │ ├── abc_ic_clear_material.md │ │ ├── abc_ic_commit_search_api_mtrl_alpha.md │ │ ├── abc_ic_go_search_api_material.md │ │ ├── abc_ic_menu_copy_mtrl_am_alpha.md │ │ ├── abc_ic_menu_cut_mtrl_alpha.md │ │ ├── abc_ic_menu_overflow_material.md │ │ ├── abc_ic_menu_paste_mtrl_am_alpha.md │ │ ├── abc_ic_menu_selectall_mtrl_alpha.md │ │ ├── abc_ic_menu_share_mtrl_alpha.md │ │ ├── abc_ic_search_api_material.md │ │ ├── abc_ic_star_black_16dp.md │ │ ├── abc_ic_star_black_36dp.md │ │ ├── abc_ic_star_black_48dp.md │ │ ├── abc_ic_star_half_black_16dp.md │ │ ├── abc_ic_star_half_black_36dp.md │ │ ├── abc_ic_star_half_black_48dp.md │ │ ├── abc_ic_voice_search_api_material.md │ │ ├── abc_item_background_holo_dark.md │ │ ├── abc_item_background_holo_light.md │ │ ├── abc_list_divider_mtrl_alpha.md │ │ ├── abc_list_focused_holo.md │ │ ├── abc_list_longpressed_holo.md │ │ ├── abc_list_pressed_holo_dark.md │ │ ├── abc_list_pressed_holo_light.md │ │ ├── abc_list_selector_background_transition_holo_dark.md │ │ ├── abc_list_selector_background_transition_holo_light.md │ │ ├── abc_list_selector_disabled_holo_dark.md │ │ ├── abc_list_selector_disabled_holo_light.md │ │ ├── abc_list_selector_holo_dark.md │ │ ├── abc_list_selector_holo_light.md │ │ ├── abc_menu_hardkey_panel_mtrl_mult.md │ │ ├── abc_popup_background_mtrl_mult.md │ │ ├── abc_ratingbar_indicator_material.md │ │ ├── abc_ratingbar_material.md │ │ ├── abc_ratingbar_small_material.md │ │ ├── abc_scrubber_control_off_mtrl_alpha.md │ │ ├── abc_scrubber_control_to_pressed_mtrl_000.md │ │ ├── abc_scrubber_control_to_pressed_mtrl_005.md │ │ ├── abc_scrubber_primary_mtrl_alpha.md │ │ ├── abc_scrubber_track_mtrl_alpha.md │ │ ├── abc_seekbar_thumb_material.md │ │ ├── abc_seekbar_tick_mark_material.md │ │ ├── abc_seekbar_track_material.md │ │ ├── abc_spinner_mtrl_am_alpha.md │ │ ├── abc_spinner_textfield_background_material.md │ │ ├── abc_switch_thumb_material.md │ │ ├── abc_switch_track_mtrl_alpha.md │ │ ├── abc_tab_indicator_material.md │ │ ├── abc_tab_indicator_mtrl_alpha.md │ │ ├── abc_text_cursor_material.md │ │ ├── abc_text_select_handle_left_mtrl_dark.md │ │ ├── abc_text_select_handle_left_mtrl_light.md │ │ ├── abc_text_select_handle_middle_mtrl_dark.md │ │ ├── abc_text_select_handle_middle_mtrl_light.md │ │ ├── abc_text_select_handle_right_mtrl_dark.md │ │ ├── abc_text_select_handle_right_mtrl_light.md │ │ ├── abc_textfield_activated_mtrl_alpha.md │ │ ├── abc_textfield_default_mtrl_alpha.md │ │ ├── abc_textfield_search_activated_mtrl_alpha.md │ │ ├── abc_textfield_search_default_mtrl_alpha.md │ │ ├── abc_textfield_search_material.md │ │ ├── abc_vector_test.md │ │ ├── index.md │ │ ├── notification_action_background.md │ │ ├── notification_bg.md │ │ ├── notification_bg_low.md │ │ ├── notification_bg_low_normal.md │ │ ├── notification_bg_low_pressed.md │ │ ├── notification_bg_normal.md │ │ ├── notification_bg_normal_pressed.md │ │ ├── notification_icon_background.md │ │ ├── notification_template_icon_bg.md │ │ ├── notification_template_icon_low_bg.md │ │ ├── notification_tile_bg.md │ │ ├── notify_panel_notification_icon_bg.md │ │ ├── tooltip_frame_dark.md │ │ └── tooltip_frame_light.md │ ├── id │ │ ├── -init-.md │ │ ├── action0.md │ │ ├── action_bar.md │ │ ├── action_bar_activity_content.md │ │ ├── action_bar_container.md │ │ ├── action_bar_root.md │ │ ├── action_bar_spinner.md │ │ ├── action_bar_subtitle.md │ │ ├── action_bar_title.md │ │ ├── action_container.md │ │ ├── action_context_bar.md │ │ ├── action_divider.md │ │ ├── action_image.md │ │ ├── action_menu_divider.md │ │ ├── action_menu_presenter.md │ │ ├── action_mode_bar.md │ │ ├── action_mode_bar_stub.md │ │ ├── action_mode_close_button.md │ │ ├── action_text.md │ │ ├── actions.md │ │ ├── activity_chooser_view_content.md │ │ ├── add.md │ │ ├── alert-title.md │ │ ├── async.md │ │ ├── blocking.md │ │ ├── button-panel.md │ │ ├── cancel_action.md │ │ ├── checkbox.md │ │ ├── chronometer.md │ │ ├── content-panel.md │ │ ├── custom-panel.md │ │ ├── custom.md │ │ ├── decor_content_parent.md │ │ ├── default_activity_button.md │ │ ├── edit_query.md │ │ ├── end_padder.md │ │ ├── expand_activities_button.md │ │ ├── expanded_menu.md │ │ ├── forever.md │ │ ├── home.md │ │ ├── icon.md │ │ ├── icon_group.md │ │ ├── image.md │ │ ├── index.md │ │ ├── info.md │ │ ├── italic.md │ │ ├── line1.md │ │ ├── line3.md │ │ ├── list-mode.md │ │ ├── list_item.md │ │ ├── media_actions.md │ │ ├── message.md │ │ ├── multiply.md │ │ ├── none.md │ │ ├── normal.md │ │ ├── notification_background.md │ │ ├── notification_main_column.md │ │ ├── notification_main_column_container.md │ │ ├── parent-panel.md │ │ ├── peakmode_average.md │ │ ├── peakmode_max.md │ │ ├── progress_circular.md │ │ ├── progress_horizontal.md │ │ ├── radio.md │ │ ├── right_icon.md │ │ ├── right_side.md │ │ ├── screen.md │ │ ├── scroll-indicator-down.md │ │ ├── scroll-indicator-up.md │ │ ├── scroll-view.md │ │ ├── search_badge.md │ │ ├── search_bar.md │ │ ├── search_button.md │ │ ├── search_close_btn.md │ │ ├── search_edit_frame.md │ │ ├── search_go_btn.md │ │ ├── search_mag_icon.md │ │ ├── search_plate.md │ │ ├── search_src_text.md │ │ ├── search_voice_btn.md │ │ ├── select_dialog_listview.md │ │ ├── shortcut.md │ │ ├── spacer.md │ │ ├── split_action_bar.md │ │ ├── src_atop.md │ │ ├── src_in.md │ │ ├── src_over.md │ │ ├── status_bar_latest_event_content.md │ │ ├── submenuarrow.md │ │ ├── submit_area.md │ │ ├── tab-mode.md │ │ ├── text-spacer-no-buttons.md │ │ ├── text-spacer-no-title.md │ │ ├── text.md │ │ ├── text2.md │ │ ├── time.md │ │ ├── title-divider-no-custom.md │ │ ├── title.md │ │ ├── title_template.md │ │ ├── top-panel.md │ │ ├── uniform.md │ │ ├── up.md │ │ └── wrap_content.md │ ├── index.md │ ├── integer │ │ ├── -init-.md │ │ ├── abc_config_activity-default-dur.md │ │ ├── abc_config_activity-short-dur.md │ │ ├── cancel_button_image_alpha.md │ │ ├── config_tooltip-anim-time.md │ │ ├── index.md │ │ └── status_bar_notification_info_maxnum.md │ ├── layout │ │ ├── -init-.md │ │ ├── abc_action_bar_title_item.md │ │ ├── abc_action_bar_up_container.md │ │ ├── abc_action_bar_view_list_nav_layout.md │ │ ├── abc_action_menu_item_layout.md │ │ ├── abc_action_menu_layout.md │ │ ├── abc_action_mode_bar.md │ │ ├── abc_action_mode_close_item_material.md │ │ ├── abc_activity_chooser_view.md │ │ ├── abc_activity_chooser_view_list_item.md │ │ ├── abc_alert_dialog_button_bar_material.md │ │ ├── abc_alert_dialog_material.md │ │ ├── abc_alert_dialog_title_material.md │ │ ├── abc_dialog_title_material.md │ │ ├── abc_expanded_menu_layout.md │ │ ├── abc_list_menu_item_checkbox.md │ │ ├── abc_list_menu_item_icon.md │ │ ├── abc_list_menu_item_layout.md │ │ ├── abc_list_menu_item_radio.md │ │ ├── abc_popup_menu_header_item_layout.md │ │ ├── abc_popup_menu_item_layout.md │ │ ├── abc_screen_content_include.md │ │ ├── abc_screen_simple.md │ │ ├── abc_screen_simple_overlay_action_mode.md │ │ ├── abc_screen_toolbar.md │ │ ├── abc_search_dropdown_item_icons_2line.md │ │ ├── abc_search_view.md │ │ ├── abc_select_dialog_material.md │ │ ├── index.md │ │ ├── notification_action.md │ │ ├── notification_action_tombstone.md │ │ ├── notification_media_action.md │ │ ├── notification_media_cancel_action.md │ │ ├── notification_template_big_media.md │ │ ├── notification_template_big_media_custom.md │ │ ├── notification_template_big_media_narrow.md │ │ ├── notification_template_big_media_narrow_custom.md │ │ ├── notification_template_custom_big.md │ │ ├── notification_template_icon_group.md │ │ ├── notification_template_lines_media.md │ │ ├── notification_template_media.md │ │ ├── notification_template_media_custom.md │ │ ├── notification_template_part_chronometer.md │ │ ├── notification_template_part_time.md │ │ ├── select_dialog_item_material.md │ │ ├── select_dialog_multichoice_material.md │ │ ├── select_dialog_singlechoice_material.md │ │ ├── support_simple_spinner_dropdown_item.md │ │ └── tooltip.md │ ├── string │ │ ├── -init-.md │ │ ├── abc_action_bar_home_description.md │ │ ├── abc_action_bar_home_description_format.md │ │ ├── abc_action_bar_home_subtitle_description_format.md │ │ ├── abc_action_bar_up_description.md │ │ ├── abc_action_menu_overflow_description.md │ │ ├── abc_action_mode_done.md │ │ ├── abc_activity_chooser_view_see_all.md │ │ ├── abc_activitychooserview_choose_application.md │ │ ├── abc_capital_off.md │ │ ├── abc_capital_on.md │ │ ├── abc_font_family_body_1_material.md │ │ ├── abc_font_family_body_2_material.md │ │ ├── abc_font_family_button_material.md │ │ ├── abc_font_family_caption_material.md │ │ ├── abc_font_family_display_1_material.md │ │ ├── abc_font_family_display_2_material.md │ │ ├── abc_font_family_display_3_material.md │ │ ├── abc_font_family_display_4_material.md │ │ ├── abc_font_family_headline_material.md │ │ ├── abc_font_family_menu_material.md │ │ ├── abc_font_family_subhead_material.md │ │ ├── abc_font_family_title_material.md │ │ ├── abc_search_hint.md │ │ ├── abc_searchview_description_clear.md │ │ ├── abc_searchview_description_query.md │ │ ├── abc_searchview_description_search.md │ │ ├── abc_searchview_description_submit.md │ │ ├── abc_searchview_description_voice.md │ │ ├── abc_shareactionprovider_share_with.md │ │ ├── abc_shareactionprovider_share_with_application.md │ │ ├── abc_toolbar_collapse_description.md │ │ ├── app_name.md │ │ ├── index.md │ │ ├── search_menu_title.md │ │ └── status_bar_notification_info_overflow.md │ ├── style │ │ ├── -alert-dialog_-app-compat.md │ │ ├── -alert-dialog_-app-compat_-light.md │ │ ├── -animation_-app-compat_-dialog.md │ │ ├── -animation_-app-compat_-drop-down-up.md │ │ ├── -animation_-app-compat_-tooltip.md │ │ ├── -base_-alert-dialog_-app-compat.md │ │ ├── -base_-alert-dialog_-app-compat_-light.md │ │ ├── -base_-animation_-app-compat_-dialog.md │ │ ├── -base_-animation_-app-compat_-drop-down-up.md │ │ ├── -base_-animation_-app-compat_-tooltip.md │ │ ├── -base_-dialog-window-title-background_-app-compat.md │ │ ├── -base_-dialog-window-title_-app-compat.md │ │ ├── -base_-text-appearance_-app-compat.md │ │ ├── -base_-text-appearance_-app-compat_-body1.md │ │ ├── -base_-text-appearance_-app-compat_-body2.md │ │ ├── -base_-text-appearance_-app-compat_-button.md │ │ ├── -base_-text-appearance_-app-compat_-caption.md │ │ ├── -base_-text-appearance_-app-compat_-display1.md │ │ ├── -base_-text-appearance_-app-compat_-display2.md │ │ ├── -base_-text-appearance_-app-compat_-display3.md │ │ ├── -base_-text-appearance_-app-compat_-display4.md │ │ ├── -base_-text-appearance_-app-compat_-headline.md │ │ ├── -base_-text-appearance_-app-compat_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-large.md │ │ ├── -base_-text-appearance_-app-compat_-large_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-light_-widget_-popup-menu_-large.md │ │ ├── -base_-text-appearance_-app-compat_-light_-widget_-popup-menu_-small.md │ │ ├── -base_-text-appearance_-app-compat_-medium.md │ │ ├── -base_-text-appearance_-app-compat_-medium_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-menu.md │ │ ├── -base_-text-appearance_-app-compat_-search-result.md │ │ ├── -base_-text-appearance_-app-compat_-search-result_-subtitle.md │ │ ├── -base_-text-appearance_-app-compat_-search-result_-title.md │ │ ├── -base_-text-appearance_-app-compat_-small.md │ │ ├── -base_-text-appearance_-app-compat_-small_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-subhead.md │ │ ├── -base_-text-appearance_-app-compat_-subhead_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-title.md │ │ ├── -base_-text-appearance_-app-compat_-title_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-tooltip.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-action-bar_-menu.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-action-bar_-subtitle.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-action-bar_-subtitle_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-action-bar_-title.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-action-bar_-title_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-action-mode_-subtitle.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-action-mode_-title.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-button.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-button_-borderless_-colored.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-button_-colored.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-button_-inverse.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-drop-down-item.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-popup-menu_-header.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-popup-menu_-large.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-popup-menu_-small.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-switch.md │ │ ├── -base_-text-appearance_-app-compat_-widget_-text-view_-spinner-item.md │ │ ├── -base_-text-appearance_-widget_-app-compat_-expanded-menu_-item.md │ │ ├── -base_-text-appearance_-widget_-app-compat_-toolbar_-subtitle.md │ │ ├── -base_-text-appearance_-widget_-app-compat_-toolbar_-title.md │ │ ├── -base_-theme-overlay_-app-compat.md │ │ ├── -base_-theme-overlay_-app-compat_-action-bar.md │ │ ├── -base_-theme-overlay_-app-compat_-dark.md │ │ ├── -base_-theme-overlay_-app-compat_-dark_-action-bar.md │ │ ├── -base_-theme-overlay_-app-compat_-dialog.md │ │ ├── -base_-theme-overlay_-app-compat_-dialog_-alert.md │ │ ├── -base_-theme-overlay_-app-compat_-light.md │ │ ├── -base_-theme_-app-compat.md │ │ ├── -base_-theme_-app-compat_-compact-menu.md │ │ ├── -base_-theme_-app-compat_-dialog-when-large.md │ │ ├── -base_-theme_-app-compat_-dialog.md │ │ ├── -base_-theme_-app-compat_-dialog_-alert.md │ │ ├── -base_-theme_-app-compat_-dialog_-fixed-size.md │ │ ├── -base_-theme_-app-compat_-dialog_-min-width.md │ │ ├── -base_-theme_-app-compat_-light.md │ │ ├── -base_-theme_-app-compat_-light_-dark-action-bar.md │ │ ├── -base_-theme_-app-compat_-light_-dialog-when-large.md │ │ ├── -base_-theme_-app-compat_-light_-dialog.md │ │ ├── -base_-theme_-app-compat_-light_-dialog_-alert.md │ │ ├── -base_-theme_-app-compat_-light_-dialog_-fixed-size.md │ │ ├── -base_-theme_-app-compat_-light_-dialog_-min-width.md │ │ ├── -base_-v11_-theme-overlay_-app-compat_-dialog.md │ │ ├── -base_-v11_-theme_-app-compat_-dialog.md │ │ ├── -base_-v11_-theme_-app-compat_-light_-dialog.md │ │ ├── -base_-v12_-widget_-app-compat_-auto-complete-text-view.md │ │ ├── -base_-v12_-widget_-app-compat_-edit-text.md │ │ ├── -base_-v21_-theme-overlay_-app-compat_-dialog.md │ │ ├── -base_-v21_-theme_-app-compat.md │ │ ├── -base_-v21_-theme_-app-compat_-dialog.md │ │ ├── -base_-v21_-theme_-app-compat_-light.md │ │ ├── -base_-v21_-theme_-app-compat_-light_-dialog.md │ │ ├── -base_-v22_-theme_-app-compat.md │ │ ├── -base_-v22_-theme_-app-compat_-light.md │ │ ├── -base_-v23_-theme_-app-compat.md │ │ ├── -base_-v23_-theme_-app-compat_-light.md │ │ ├── -base_-v26_-theme_-app-compat.md │ │ ├── -base_-v26_-theme_-app-compat_-light.md │ │ ├── -base_-v26_-widget_-app-compat_-toolbar.md │ │ ├── -base_-v7_-theme-overlay_-app-compat_-dialog.md │ │ ├── -base_-v7_-theme_-app-compat.md │ │ ├── -base_-v7_-theme_-app-compat_-dialog.md │ │ ├── -base_-v7_-theme_-app-compat_-light.md │ │ ├── -base_-v7_-theme_-app-compat_-light_-dialog.md │ │ ├── -base_-v7_-widget_-app-compat_-auto-complete-text-view.md │ │ ├── -base_-v7_-widget_-app-compat_-edit-text.md │ │ ├── -base_-v7_-widget_-app-compat_-toolbar.md │ │ ├── -base_-widget_-app-compat_-action-bar.md │ │ ├── -base_-widget_-app-compat_-action-bar_-solid.md │ │ ├── -base_-widget_-app-compat_-action-bar_-tab-bar.md │ │ ├── -base_-widget_-app-compat_-action-bar_-tab-text.md │ │ ├── -base_-widget_-app-compat_-action-bar_-tab-view.md │ │ ├── -base_-widget_-app-compat_-action-button.md │ │ ├── -base_-widget_-app-compat_-action-button_-close-mode.md │ │ ├── -base_-widget_-app-compat_-action-button_-overflow.md │ │ ├── -base_-widget_-app-compat_-action-mode.md │ │ ├── -base_-widget_-app-compat_-activity-chooser-view.md │ │ ├── -base_-widget_-app-compat_-auto-complete-text-view.md │ │ ├── -base_-widget_-app-compat_-button-bar.md │ │ ├── -base_-widget_-app-compat_-button-bar_-alert-dialog.md │ │ ├── -base_-widget_-app-compat_-button.md │ │ ├── -base_-widget_-app-compat_-button_-borderless.md │ │ ├── -base_-widget_-app-compat_-button_-borderless_-colored.md │ │ ├── -base_-widget_-app-compat_-button_-button-bar_-alert-dialog.md │ │ ├── -base_-widget_-app-compat_-button_-colored.md │ │ ├── -base_-widget_-app-compat_-button_-small.md │ │ ├── -base_-widget_-app-compat_-compound-button_-check-box.md │ │ ├── -base_-widget_-app-compat_-compound-button_-radio-button.md │ │ ├── -base_-widget_-app-compat_-compound-button_-switch.md │ │ ├── -base_-widget_-app-compat_-drawer-arrow-toggle.md │ │ ├── -base_-widget_-app-compat_-drawer-arrow-toggle_-common.md │ │ ├── -base_-widget_-app-compat_-drop-down-item_-spinner.md │ │ ├── -base_-widget_-app-compat_-edit-text.md │ │ ├── -base_-widget_-app-compat_-image-button.md │ │ ├── -base_-widget_-app-compat_-light_-action-bar.md │ │ ├── -base_-widget_-app-compat_-light_-action-bar_-solid.md │ │ ├── -base_-widget_-app-compat_-light_-action-bar_-tab-bar.md │ │ ├── -base_-widget_-app-compat_-light_-action-bar_-tab-text.md │ │ ├── -base_-widget_-app-compat_-light_-action-bar_-tab-text_-inverse.md │ │ ├── -base_-widget_-app-compat_-light_-action-bar_-tab-view.md │ │ ├── -base_-widget_-app-compat_-light_-popup-menu.md │ │ ├── -base_-widget_-app-compat_-light_-popup-menu_-overflow.md │ │ ├── -base_-widget_-app-compat_-list-menu-view.md │ │ ├── -base_-widget_-app-compat_-list-popup-window.md │ │ ├── -base_-widget_-app-compat_-list-view.md │ │ ├── -base_-widget_-app-compat_-list-view_-drop-down.md │ │ ├── -base_-widget_-app-compat_-list-view_-menu.md │ │ ├── -base_-widget_-app-compat_-popup-menu.md │ │ ├── -base_-widget_-app-compat_-popup-menu_-overflow.md │ │ ├── -base_-widget_-app-compat_-popup-window.md │ │ ├── -base_-widget_-app-compat_-progress-bar.md │ │ ├── -base_-widget_-app-compat_-progress-bar_-horizontal.md │ │ ├── -base_-widget_-app-compat_-rating-bar.md │ │ ├── -base_-widget_-app-compat_-rating-bar_-indicator.md │ │ ├── -base_-widget_-app-compat_-rating-bar_-small.md │ │ ├── -base_-widget_-app-compat_-search-view.md │ │ ├── -base_-widget_-app-compat_-search-view_-action-bar.md │ │ ├── -base_-widget_-app-compat_-seek-bar.md │ │ ├── -base_-widget_-app-compat_-seek-bar_-discrete.md │ │ ├── -base_-widget_-app-compat_-spinner.md │ │ ├── -base_-widget_-app-compat_-spinner_-underlined.md │ │ ├── -base_-widget_-app-compat_-text-view_-spinner-item.md │ │ ├── -base_-widget_-app-compat_-toolbar.md │ │ ├── -base_-widget_-app-compat_-toolbar_-button_-navigation.md │ │ ├── -init-.md │ │ ├── -platform_-app-compat.md │ │ ├── -platform_-app-compat_-light.md │ │ ├── -platform_-theme-overlay_-app-compat.md │ │ ├── -platform_-theme-overlay_-app-compat_-dark.md │ │ ├── -platform_-theme-overlay_-app-compat_-light.md │ │ ├── -platform_-v11_-app-compat.md │ │ ├── -platform_-v11_-app-compat_-light.md │ │ ├── -platform_-v14_-app-compat.md │ │ ├── -platform_-v14_-app-compat_-light.md │ │ ├── -platform_-v21_-app-compat.md │ │ ├── -platform_-v21_-app-compat_-light.md │ │ ├── -platform_-v25_-app-compat.md │ │ ├── -platform_-v25_-app-compat_-light.md │ │ ├── -platform_-widget_-app-compat_-spinner.md │ │ ├── -rtl-overlay_-dialog-window-title_-app-compat.md │ │ ├── -rtl-overlay_-widget_-app-compat_-action-bar_-title-item.md │ │ ├── -rtl-overlay_-widget_-app-compat_-dialog-title_-icon.md │ │ ├── -rtl-overlay_-widget_-app-compat_-popup-menu-item.md │ │ ├── -rtl-overlay_-widget_-app-compat_-popup-menu-item_-internal-group.md │ │ ├── -rtl-overlay_-widget_-app-compat_-popup-menu-item_-text.md │ │ ├── -rtl-overlay_-widget_-app-compat_-search-view_-mag-icon.md │ │ ├── -rtl-overlay_-widget_-app-compat_-search_-drop-down.md │ │ ├── -rtl-overlay_-widget_-app-compat_-search_-drop-down_-icon1.md │ │ ├── -rtl-overlay_-widget_-app-compat_-search_-drop-down_-icon2.md │ │ ├── -rtl-overlay_-widget_-app-compat_-search_-drop-down_-query.md │ │ ├── -rtl-overlay_-widget_-app-compat_-search_-drop-down_-text.md │ │ ├── -rtl-underlay_-widget_-app-compat_-action-button.md │ │ ├── -rtl-underlay_-widget_-app-compat_-action-button_-overflow.md │ │ ├── -text-appearance_-app-compat.md │ │ ├── -text-appearance_-app-compat_-body1.md │ │ ├── -text-appearance_-app-compat_-body2.md │ │ ├── -text-appearance_-app-compat_-button.md │ │ ├── -text-appearance_-app-compat_-caption.md │ │ ├── -text-appearance_-app-compat_-display1.md │ │ ├── -text-appearance_-app-compat_-display2.md │ │ ├── -text-appearance_-app-compat_-display3.md │ │ ├── -text-appearance_-app-compat_-display4.md │ │ ├── -text-appearance_-app-compat_-headline.md │ │ ├── -text-appearance_-app-compat_-inverse.md │ │ ├── -text-appearance_-app-compat_-large.md │ │ ├── -text-appearance_-app-compat_-large_-inverse.md │ │ ├── -text-appearance_-app-compat_-light_-search-result_-subtitle.md │ │ ├── -text-appearance_-app-compat_-light_-search-result_-title.md │ │ ├── -text-appearance_-app-compat_-light_-widget_-popup-menu_-large.md │ │ ├── -text-appearance_-app-compat_-light_-widget_-popup-menu_-small.md │ │ ├── -text-appearance_-app-compat_-medium.md │ │ ├── -text-appearance_-app-compat_-medium_-inverse.md │ │ ├── -text-appearance_-app-compat_-menu.md │ │ ├── -text-appearance_-app-compat_-notification.md │ │ ├── -text-appearance_-app-compat_-notification_-info.md │ │ ├── -text-appearance_-app-compat_-notification_-info_-media.md │ │ ├── -text-appearance_-app-compat_-notification_-line2.md │ │ ├── -text-appearance_-app-compat_-notification_-line2_-media.md │ │ ├── -text-appearance_-app-compat_-notification_-media.md │ │ ├── -text-appearance_-app-compat_-notification_-time.md │ │ ├── -text-appearance_-app-compat_-notification_-time_-media.md │ │ ├── -text-appearance_-app-compat_-notification_-title.md │ │ ├── -text-appearance_-app-compat_-notification_-title_-media.md │ │ ├── -text-appearance_-app-compat_-search-result_-subtitle.md │ │ ├── -text-appearance_-app-compat_-search-result_-title.md │ │ ├── -text-appearance_-app-compat_-small.md │ │ ├── -text-appearance_-app-compat_-small_-inverse.md │ │ ├── -text-appearance_-app-compat_-subhead.md │ │ ├── -text-appearance_-app-compat_-subhead_-inverse.md │ │ ├── -text-appearance_-app-compat_-title.md │ │ ├── -text-appearance_-app-compat_-title_-inverse.md │ │ ├── -text-appearance_-app-compat_-tooltip.md │ │ ├── -text-appearance_-app-compat_-widget_-action-bar_-menu.md │ │ ├── -text-appearance_-app-compat_-widget_-action-bar_-subtitle.md │ │ ├── -text-appearance_-app-compat_-widget_-action-bar_-subtitle_-inverse.md │ │ ├── -text-appearance_-app-compat_-widget_-action-bar_-title.md │ │ ├── -text-appearance_-app-compat_-widget_-action-bar_-title_-inverse.md │ │ ├── -text-appearance_-app-compat_-widget_-action-mode_-subtitle.md │ │ ├── -text-appearance_-app-compat_-widget_-action-mode_-subtitle_-inverse.md │ │ ├── -text-appearance_-app-compat_-widget_-action-mode_-title.md │ │ ├── -text-appearance_-app-compat_-widget_-action-mode_-title_-inverse.md │ │ ├── -text-appearance_-app-compat_-widget_-button.md │ │ ├── -text-appearance_-app-compat_-widget_-button_-borderless_-colored.md │ │ ├── -text-appearance_-app-compat_-widget_-button_-colored.md │ │ ├── -text-appearance_-app-compat_-widget_-button_-inverse.md │ │ ├── -text-appearance_-app-compat_-widget_-drop-down-item.md │ │ ├── -text-appearance_-app-compat_-widget_-popup-menu_-header.md │ │ ├── -text-appearance_-app-compat_-widget_-popup-menu_-large.md │ │ ├── -text-appearance_-app-compat_-widget_-popup-menu_-small.md │ │ ├── -text-appearance_-app-compat_-widget_-switch.md │ │ ├── -text-appearance_-app-compat_-widget_-text-view_-spinner-item.md │ │ ├── -text-appearance_-compat_-notification.md │ │ ├── -text-appearance_-compat_-notification_-info.md │ │ ├── -text-appearance_-compat_-notification_-info_-media.md │ │ ├── -text-appearance_-compat_-notification_-line2.md │ │ ├── -text-appearance_-compat_-notification_-line2_-media.md │ │ ├── -text-appearance_-compat_-notification_-media.md │ │ ├── -text-appearance_-compat_-notification_-time.md │ │ ├── -text-appearance_-compat_-notification_-time_-media.md │ │ ├── -text-appearance_-compat_-notification_-title.md │ │ ├── -text-appearance_-compat_-notification_-title_-media.md │ │ ├── -text-appearance_-widget_-app-compat_-expanded-menu_-item.md │ │ ├── -text-appearance_-widget_-app-compat_-toolbar_-subtitle.md │ │ ├── -text-appearance_-widget_-app-compat_-toolbar_-title.md │ │ ├── -theme-overlay_-app-compat.md │ │ ├── -theme-overlay_-app-compat_-action-bar.md │ │ ├── -theme-overlay_-app-compat_-dark.md │ │ ├── -theme-overlay_-app-compat_-dark_-action-bar.md │ │ ├── -theme-overlay_-app-compat_-dialog.md │ │ ├── -theme-overlay_-app-compat_-dialog_-alert.md │ │ ├── -theme-overlay_-app-compat_-light.md │ │ ├── -theme_-app-compat.md │ │ ├── -theme_-app-compat_-compact-menu.md │ │ ├── -theme_-app-compat_-day-night.md │ │ ├── -theme_-app-compat_-day-night_-dark-action-bar.md │ │ ├── -theme_-app-compat_-day-night_-dialog-when-large.md │ │ ├── -theme_-app-compat_-day-night_-dialog.md │ │ ├── -theme_-app-compat_-day-night_-dialog_-alert.md │ │ ├── -theme_-app-compat_-day-night_-dialog_-min-width.md │ │ ├── -theme_-app-compat_-day-night_-no-action-bar.md │ │ ├── -theme_-app-compat_-dialog-when-large.md │ │ ├── -theme_-app-compat_-dialog.md │ │ ├── -theme_-app-compat_-dialog_-alert.md │ │ ├── -theme_-app-compat_-dialog_-min-width.md │ │ ├── -theme_-app-compat_-light.md │ │ ├── -theme_-app-compat_-light_-dark-action-bar.md │ │ ├── -theme_-app-compat_-light_-dialog-when-large.md │ │ ├── -theme_-app-compat_-light_-dialog.md │ │ ├── -theme_-app-compat_-light_-dialog_-alert.md │ │ ├── -theme_-app-compat_-light_-dialog_-min-width.md │ │ ├── -theme_-app-compat_-light_-no-action-bar.md │ │ ├── -theme_-app-compat_-no-action-bar.md │ │ ├── -widget_-app-compat_-action-bar.md │ │ ├── -widget_-app-compat_-action-bar_-solid.md │ │ ├── -widget_-app-compat_-action-bar_-tab-bar.md │ │ ├── -widget_-app-compat_-action-bar_-tab-text.md │ │ ├── -widget_-app-compat_-action-bar_-tab-view.md │ │ ├── -widget_-app-compat_-action-button.md │ │ ├── -widget_-app-compat_-action-button_-close-mode.md │ │ ├── -widget_-app-compat_-action-button_-overflow.md │ │ ├── -widget_-app-compat_-action-mode.md │ │ ├── -widget_-app-compat_-activity-chooser-view.md │ │ ├── -widget_-app-compat_-auto-complete-text-view.md │ │ ├── -widget_-app-compat_-button-bar.md │ │ ├── -widget_-app-compat_-button-bar_-alert-dialog.md │ │ ├── -widget_-app-compat_-button.md │ │ ├── -widget_-app-compat_-button_-borderless.md │ │ ├── -widget_-app-compat_-button_-borderless_-colored.md │ │ ├── -widget_-app-compat_-button_-button-bar_-alert-dialog.md │ │ ├── -widget_-app-compat_-button_-colored.md │ │ ├── -widget_-app-compat_-button_-small.md │ │ ├── -widget_-app-compat_-compound-button_-check-box.md │ │ ├── -widget_-app-compat_-compound-button_-radio-button.md │ │ ├── -widget_-app-compat_-compound-button_-switch.md │ │ ├── -widget_-app-compat_-drawer-arrow-toggle.md │ │ ├── -widget_-app-compat_-drop-down-item_-spinner.md │ │ ├── -widget_-app-compat_-edit-text.md │ │ ├── -widget_-app-compat_-image-button.md │ │ ├── -widget_-app-compat_-light_-action-bar.md │ │ ├── -widget_-app-compat_-light_-action-bar_-solid.md │ │ ├── -widget_-app-compat_-light_-action-bar_-solid_-inverse.md │ │ ├── -widget_-app-compat_-light_-action-bar_-tab-bar.md │ │ ├── -widget_-app-compat_-light_-action-bar_-tab-bar_-inverse.md │ │ ├── -widget_-app-compat_-light_-action-bar_-tab-text.md │ │ ├── -widget_-app-compat_-light_-action-bar_-tab-text_-inverse.md │ │ ├── -widget_-app-compat_-light_-action-bar_-tab-view.md │ │ ├── -widget_-app-compat_-light_-action-bar_-tab-view_-inverse.md │ │ ├── -widget_-app-compat_-light_-action-button.md │ │ ├── -widget_-app-compat_-light_-action-button_-close-mode.md │ │ ├── -widget_-app-compat_-light_-action-button_-overflow.md │ │ ├── -widget_-app-compat_-light_-action-mode_-inverse.md │ │ ├── -widget_-app-compat_-light_-activity-chooser-view.md │ │ ├── -widget_-app-compat_-light_-auto-complete-text-view.md │ │ ├── -widget_-app-compat_-light_-drop-down-item_-spinner.md │ │ ├── -widget_-app-compat_-light_-list-popup-window.md │ │ ├── -widget_-app-compat_-light_-list-view_-drop-down.md │ │ ├── -widget_-app-compat_-light_-popup-menu.md │ │ ├── -widget_-app-compat_-light_-popup-menu_-overflow.md │ │ ├── -widget_-app-compat_-light_-search-view.md │ │ ├── -widget_-app-compat_-light_-spinner_-drop-down_-action-bar.md │ │ ├── -widget_-app-compat_-list-menu-view.md │ │ ├── -widget_-app-compat_-list-popup-window.md │ │ ├── -widget_-app-compat_-list-view.md │ │ ├── -widget_-app-compat_-list-view_-drop-down.md │ │ ├── -widget_-app-compat_-list-view_-menu.md │ │ ├── -widget_-app-compat_-popup-menu.md │ │ ├── -widget_-app-compat_-popup-menu_-overflow.md │ │ ├── -widget_-app-compat_-popup-window.md │ │ ├── -widget_-app-compat_-progress-bar.md │ │ ├── -widget_-app-compat_-progress-bar_-horizontal.md │ │ ├── -widget_-app-compat_-rating-bar.md │ │ ├── -widget_-app-compat_-rating-bar_-indicator.md │ │ ├── -widget_-app-compat_-rating-bar_-small.md │ │ ├── -widget_-app-compat_-search-view.md │ │ ├── -widget_-app-compat_-search-view_-action-bar.md │ │ ├── -widget_-app-compat_-seek-bar.md │ │ ├── -widget_-app-compat_-seek-bar_-discrete.md │ │ ├── -widget_-app-compat_-spinner.md │ │ ├── -widget_-app-compat_-spinner_-drop-down.md │ │ ├── -widget_-app-compat_-spinner_-drop-down_-action-bar.md │ │ ├── -widget_-app-compat_-spinner_-underlined.md │ │ ├── -widget_-app-compat_-text-view_-spinner-item.md │ │ ├── -widget_-app-compat_-toolbar.md │ │ ├── -widget_-app-compat_-toolbar_-button_-navigation.md │ │ ├── -widget_-compat_-notification-action-container.md │ │ ├── -widget_-compat_-notification-action-text.md │ │ └── index.md │ └── styleable │ │ ├── -action-bar-layout.md │ │ ├── -action-bar-layout_android_layout_gravity.md │ │ ├── -action-bar.md │ │ ├── -action-bar_background-split.md │ │ ├── -action-bar_background-stacked.md │ │ ├── -action-bar_background.md │ │ ├── -action-bar_content-inset-end-with-actions.md │ │ ├── -action-bar_content-inset-end.md │ │ ├── -action-bar_content-inset-left.md │ │ ├── -action-bar_content-inset-right.md │ │ ├── -action-bar_content-inset-start-with-navigation.md │ │ ├── -action-bar_content-inset-start.md │ │ ├── -action-bar_custom-navigation-layout.md │ │ ├── -action-bar_display-options.md │ │ ├── -action-bar_divider.md │ │ ├── -action-bar_elevation.md │ │ ├── -action-bar_height.md │ │ ├── -action-bar_hide-on-content-scroll.md │ │ ├── -action-bar_home-as-up-indicator.md │ │ ├── -action-bar_home-layout.md │ │ ├── -action-bar_icon.md │ │ ├── -action-bar_indeterminate-progress-style.md │ │ ├── -action-bar_item-padding.md │ │ ├── -action-bar_logo.md │ │ ├── -action-bar_navigation-mode.md │ │ ├── -action-bar_popup-theme.md │ │ ├── -action-bar_progress-bar-padding.md │ │ ├── -action-bar_progress-bar-style.md │ │ ├── -action-bar_subtitle-text-style.md │ │ ├── -action-bar_subtitle.md │ │ ├── -action-bar_title-text-style.md │ │ ├── -action-bar_title.md │ │ ├── -action-menu-item-view.md │ │ ├── -action-menu-item-view_android_min-width.md │ │ ├── -action-mode.md │ │ ├── -action-mode_background-split.md │ │ ├── -action-mode_background.md │ │ ├── -action-mode_close-item-layout.md │ │ ├── -action-mode_height.md │ │ ├── -action-mode_subtitle-text-style.md │ │ ├── -action-mode_title-text-style.md │ │ ├── -activity-chooser-view.md │ │ ├── -activity-chooser-view_expand-activity-overflow-button-drawable.md │ │ ├── -activity-chooser-view_initial-activity-count.md │ │ ├── -alert-dialog.md │ │ ├── -alert-dialog_android_layout.md │ │ ├── -alert-dialog_button-panel-side-layout.md │ │ ├── -alert-dialog_list-item-layout.md │ │ ├── -alert-dialog_list-layout.md │ │ ├── -alert-dialog_multi-choice-item-layout.md │ │ ├── -alert-dialog_show-title.md │ │ ├── -alert-dialog_single-choice-item-layout.md │ │ ├── -app-compat-image-view.md │ │ ├── -app-compat-image-view_android_src.md │ │ ├── -app-compat-image-view_src-compat.md │ │ ├── -app-compat-image-view_tint-mode.md │ │ ├── -app-compat-image-view_tint.md │ │ ├── -app-compat-seek-bar.md │ │ ├── -app-compat-seek-bar_android_thumb.md │ │ ├── -app-compat-seek-bar_tick-mark-tint-mode.md │ │ ├── -app-compat-seek-bar_tick-mark-tint.md │ │ ├── -app-compat-seek-bar_tick-mark.md │ │ ├── -app-compat-text-helper.md │ │ ├── -app-compat-text-helper_android_drawable-bottom.md │ │ ├── -app-compat-text-helper_android_drawable-end.md │ │ ├── -app-compat-text-helper_android_drawable-left.md │ │ ├── -app-compat-text-helper_android_drawable-right.md │ │ ├── -app-compat-text-helper_android_drawable-start.md │ │ ├── -app-compat-text-helper_android_drawable-top.md │ │ ├── -app-compat-text-helper_android_text-appearance.md │ │ ├── -app-compat-text-view.md │ │ ├── -app-compat-text-view_android_text-appearance.md │ │ ├── -app-compat-text-view_auto-size-max-text-size.md │ │ ├── -app-compat-text-view_auto-size-min-text-size.md │ │ ├── -app-compat-text-view_auto-size-preset-sizes.md │ │ ├── -app-compat-text-view_auto-size-step-granularity.md │ │ ├── -app-compat-text-view_auto-size-text-type.md │ │ ├── -app-compat-text-view_font-family.md │ │ ├── -app-compat-text-view_text-all-caps.md │ │ ├── -app-compat-theme.md │ │ ├── -app-compat-theme_action-bar-divider.md │ │ ├── -app-compat-theme_action-bar-item-background.md │ │ ├── -app-compat-theme_action-bar-popup-theme.md │ │ ├── -app-compat-theme_action-bar-size.md │ │ ├── -app-compat-theme_action-bar-split-style.md │ │ ├── -app-compat-theme_action-bar-style.md │ │ ├── -app-compat-theme_action-bar-tab-bar-style.md │ │ ├── -app-compat-theme_action-bar-tab-style.md │ │ ├── -app-compat-theme_action-bar-tab-text-style.md │ │ ├── -app-compat-theme_action-bar-theme.md │ │ ├── -app-compat-theme_action-bar-widget-theme.md │ │ ├── -app-compat-theme_action-button-style.md │ │ ├── -app-compat-theme_action-drop-down-style.md │ │ ├── -app-compat-theme_action-menu-text-appearance.md │ │ ├── -app-compat-theme_action-menu-text-color.md │ │ ├── -app-compat-theme_action-mode-background.md │ │ ├── -app-compat-theme_action-mode-close-button-style.md │ │ ├── -app-compat-theme_action-mode-close-drawable.md │ │ ├── -app-compat-theme_action-mode-copy-drawable.md │ │ ├── -app-compat-theme_action-mode-cut-drawable.md │ │ ├── -app-compat-theme_action-mode-find-drawable.md │ │ ├── -app-compat-theme_action-mode-paste-drawable.md │ │ ├── -app-compat-theme_action-mode-popup-window-style.md │ │ ├── -app-compat-theme_action-mode-select-all-drawable.md │ │ ├── -app-compat-theme_action-mode-share-drawable.md │ │ ├── -app-compat-theme_action-mode-split-background.md │ │ ├── -app-compat-theme_action-mode-style.md │ │ ├── -app-compat-theme_action-mode-web-search-drawable.md │ │ ├── -app-compat-theme_action-overflow-button-style.md │ │ ├── -app-compat-theme_action-overflow-menu-style.md │ │ ├── -app-compat-theme_activity-chooser-view-style.md │ │ ├── -app-compat-theme_alert-dialog-button-group-style.md │ │ ├── -app-compat-theme_alert-dialog-center-buttons.md │ │ ├── -app-compat-theme_alert-dialog-style.md │ │ ├── -app-compat-theme_alert-dialog-theme.md │ │ ├── -app-compat-theme_android_window-animation-style.md │ │ ├── -app-compat-theme_android_window-is-floating.md │ │ ├── -app-compat-theme_auto-complete-text-view-style.md │ │ ├── -app-compat-theme_borderless-button-style.md │ │ ├── -app-compat-theme_button-bar-button-style.md │ │ ├── -app-compat-theme_button-bar-negative-button-style.md │ │ ├── -app-compat-theme_button-bar-neutral-button-style.md │ │ ├── -app-compat-theme_button-bar-positive-button-style.md │ │ ├── -app-compat-theme_button-bar-style.md │ │ ├── -app-compat-theme_button-style-small.md │ │ ├── -app-compat-theme_button-style.md │ │ ├── -app-compat-theme_checkbox-style.md │ │ ├── -app-compat-theme_checked-text-view-style.md │ │ ├── -app-compat-theme_color-accent.md │ │ ├── -app-compat-theme_color-background-floating.md │ │ ├── -app-compat-theme_color-button-normal.md │ │ ├── -app-compat-theme_color-control-activated.md │ │ ├── -app-compat-theme_color-control-highlight.md │ │ ├── -app-compat-theme_color-control-normal.md │ │ ├── -app-compat-theme_color-error.md │ │ ├── -app-compat-theme_color-primary-dark.md │ │ ├── -app-compat-theme_color-primary.md │ │ ├── -app-compat-theme_color-switch-thumb-normal.md │ │ ├── -app-compat-theme_control-background.md │ │ ├── -app-compat-theme_dialog-preferred-padding.md │ │ ├── -app-compat-theme_dialog-theme.md │ │ ├── -app-compat-theme_divider-horizontal.md │ │ ├── -app-compat-theme_divider-vertical.md │ │ ├── -app-compat-theme_drop-down-list-view-style.md │ │ ├── -app-compat-theme_dropdown-list-preferred-item-height.md │ │ ├── -app-compat-theme_edit-text-background.md │ │ ├── -app-compat-theme_edit-text-color.md │ │ ├── -app-compat-theme_edit-text-style.md │ │ ├── -app-compat-theme_home-as-up-indicator.md │ │ ├── -app-compat-theme_image-button-style.md │ │ ├── -app-compat-theme_list-choice-background-indicator.md │ │ ├── -app-compat-theme_list-divider-alert-dialog.md │ │ ├── -app-compat-theme_list-menu-view-style.md │ │ ├── -app-compat-theme_list-popup-window-style.md │ │ ├── -app-compat-theme_list-preferred-item-height-large.md │ │ ├── -app-compat-theme_list-preferred-item-height-small.md │ │ ├── -app-compat-theme_list-preferred-item-height.md │ │ ├── -app-compat-theme_list-preferred-item-padding-left.md │ │ ├── -app-compat-theme_list-preferred-item-padding-right.md │ │ ├── -app-compat-theme_panel-background.md │ │ ├── -app-compat-theme_panel-menu-list-theme.md │ │ ├── -app-compat-theme_panel-menu-list-width.md │ │ ├── -app-compat-theme_popup-menu-style.md │ │ ├── -app-compat-theme_popup-window-style.md │ │ ├── -app-compat-theme_radio-button-style.md │ │ ├── -app-compat-theme_rating-bar-style-indicator.md │ │ ├── -app-compat-theme_rating-bar-style-small.md │ │ ├── -app-compat-theme_rating-bar-style.md │ │ ├── -app-compat-theme_search-view-style.md │ │ ├── -app-compat-theme_seek-bar-style.md │ │ ├── -app-compat-theme_selectable-item-background-borderless.md │ │ ├── -app-compat-theme_selectable-item-background.md │ │ ├── -app-compat-theme_spinner-drop-down-item-style.md │ │ ├── -app-compat-theme_spinner-style.md │ │ ├── -app-compat-theme_switch-style.md │ │ ├── -app-compat-theme_text-appearance-large-popup-menu.md │ │ ├── -app-compat-theme_text-appearance-list-item-secondary.md │ │ ├── -app-compat-theme_text-appearance-list-item-small.md │ │ ├── -app-compat-theme_text-appearance-list-item.md │ │ ├── -app-compat-theme_text-appearance-popup-menu-header.md │ │ ├── -app-compat-theme_text-appearance-search-result-subtitle.md │ │ ├── -app-compat-theme_text-appearance-search-result-title.md │ │ ├── -app-compat-theme_text-appearance-small-popup-menu.md │ │ ├── -app-compat-theme_text-color-alert-dialog-list-item.md │ │ ├── -app-compat-theme_text-color-search-url.md │ │ ├── -app-compat-theme_toolbar-navigation-button-style.md │ │ ├── -app-compat-theme_toolbar-style.md │ │ ├── -app-compat-theme_tooltip-foreground-color.md │ │ ├── -app-compat-theme_tooltip-frame-background.md │ │ ├── -app-compat-theme_window-action-bar-overlay.md │ │ ├── -app-compat-theme_window-action-bar.md │ │ ├── -app-compat-theme_window-action-mode-overlay.md │ │ ├── -app-compat-theme_window-fixed-height-major.md │ │ ├── -app-compat-theme_window-fixed-height-minor.md │ │ ├── -app-compat-theme_window-fixed-width-major.md │ │ ├── -app-compat-theme_window-fixed-width-minor.md │ │ ├── -app-compat-theme_window-min-width-major.md │ │ ├── -app-compat-theme_window-min-width-minor.md │ │ ├── -app-compat-theme_window-no-title.md │ │ ├── -button-bar-layout.md │ │ ├── -button-bar-layout_allow-stacking.md │ │ ├── -color-state-list-item.md │ │ ├── -color-state-list-item_alpha.md │ │ ├── -color-state-list-item_android_alpha.md │ │ ├── -color-state-list-item_android_color.md │ │ ├── -compound-button.md │ │ ├── -compound-button_android_button.md │ │ ├── -compound-button_button-tint-mode.md │ │ ├── -compound-button_button-tint.md │ │ ├── -drawer-arrow-toggle.md │ │ ├── -drawer-arrow-toggle_arrow-head-length.md │ │ ├── -drawer-arrow-toggle_arrow-shaft-length.md │ │ ├── -drawer-arrow-toggle_bar-length.md │ │ ├── -drawer-arrow-toggle_color.md │ │ ├── -drawer-arrow-toggle_drawable-size.md │ │ ├── -drawer-arrow-toggle_gap-between-bars.md │ │ ├── -drawer-arrow-toggle_spin-bars.md │ │ ├── -drawer-arrow-toggle_thickness.md │ │ ├── -font-family-font.md │ │ ├── -font-family-font_font-style.md │ │ ├── -font-family-font_font-weight.md │ │ ├── -font-family-font_font.md │ │ ├── -font-family.md │ │ ├── -font-family_font-provider-authority.md │ │ ├── -font-family_font-provider-certs.md │ │ ├── -font-family_font-provider-fetch-strategy.md │ │ ├── -font-family_font-provider-fetch-timeout.md │ │ ├── -font-family_font-provider-package.md │ │ ├── -font-family_font-provider-query.md │ │ ├── -init-.md │ │ ├── -linear-layout-compat.md │ │ ├── -linear-layout-compat_-layout.md │ │ ├── -linear-layout-compat_-layout_android_layout_gravity.md │ │ ├── -linear-layout-compat_-layout_android_layout_height.md │ │ ├── -linear-layout-compat_-layout_android_layout_weight.md │ │ ├── -linear-layout-compat_-layout_android_layout_width.md │ │ ├── -linear-layout-compat_android_baseline-aligned-child-index.md │ │ ├── -linear-layout-compat_android_baseline-aligned.md │ │ ├── -linear-layout-compat_android_gravity.md │ │ ├── -linear-layout-compat_android_orientation.md │ │ ├── -linear-layout-compat_android_weight-sum.md │ │ ├── -linear-layout-compat_divider-padding.md │ │ ├── -linear-layout-compat_divider.md │ │ ├── -linear-layout-compat_measure-with-largest-child.md │ │ ├── -linear-layout-compat_show-dividers.md │ │ ├── -list-popup-window.md │ │ ├── -list-popup-window_android_drop-down-horizontal-offset.md │ │ ├── -list-popup-window_android_drop-down-vertical-offset.md │ │ ├── -menu-group.md │ │ ├── -menu-group_android_checkable-behavior.md │ │ ├── -menu-group_android_enabled.md │ │ ├── -menu-group_android_id.md │ │ ├── -menu-group_android_menu-category.md │ │ ├── -menu-group_android_order-in-category.md │ │ ├── -menu-group_android_visible.md │ │ ├── -menu-item.md │ │ ├── -menu-item_action-layout.md │ │ ├── -menu-item_action-provider-class.md │ │ ├── -menu-item_action-view-class.md │ │ ├── -menu-item_alphabetic-modifiers.md │ │ ├── -menu-item_android_alphabetic-shortcut.md │ │ ├── -menu-item_android_checkable.md │ │ ├── -menu-item_android_checked.md │ │ ├── -menu-item_android_enabled.md │ │ ├── -menu-item_android_icon.md │ │ ├── -menu-item_android_id.md │ │ ├── -menu-item_android_menu-category.md │ │ ├── -menu-item_android_numeric-shortcut.md │ │ ├── -menu-item_android_on-click.md │ │ ├── -menu-item_android_order-in-category.md │ │ ├── -menu-item_android_title-condensed.md │ │ ├── -menu-item_android_title.md │ │ ├── -menu-item_android_visible.md │ │ ├── -menu-item_content-description.md │ │ ├── -menu-item_icon-tint-mode.md │ │ ├── -menu-item_icon-tint.md │ │ ├── -menu-item_numeric-modifiers.md │ │ ├── -menu-item_show-as-action.md │ │ ├── -menu-item_tooltip-text.md │ │ ├── -menu-view.md │ │ ├── -menu-view_android_header-background.md │ │ ├── -menu-view_android_horizontal-divider.md │ │ ├── -menu-view_android_item-background.md │ │ ├── -menu-view_android_item-icon-disabled-alpha.md │ │ ├── -menu-view_android_item-text-appearance.md │ │ ├── -menu-view_android_vertical-divider.md │ │ ├── -menu-view_android_window-animation-style.md │ │ ├── -menu-view_preserve-icon-spacing.md │ │ ├── -menu-view_sub-menu-arrow.md │ │ ├── -popup-window-background-state.md │ │ ├── -popup-window-background-state_state_above_anchor.md │ │ ├── -popup-window.md │ │ ├── -popup-window_android_popup-animation-style.md │ │ ├── -popup-window_android_popup-background.md │ │ ├── -popup-window_overlap-anchor.md │ │ ├── -recycle-list-view.md │ │ ├── -recycle-list-view_padding-bottom-no-buttons.md │ │ ├── -recycle-list-view_padding-top-no-title.md │ │ ├── -search-view.md │ │ ├── -search-view_android_focusable.md │ │ ├── -search-view_android_ime-options.md │ │ ├── -search-view_android_input-type.md │ │ ├── -search-view_android_max-width.md │ │ ├── -search-view_close-icon.md │ │ ├── -search-view_commit-icon.md │ │ ├── -search-view_default-query-hint.md │ │ ├── -search-view_go-icon.md │ │ ├── -search-view_iconified-by-default.md │ │ ├── -search-view_layout.md │ │ ├── -search-view_query-background.md │ │ ├── -search-view_query-hint.md │ │ ├── -search-view_search-hint-icon.md │ │ ├── -search-view_search-icon.md │ │ ├── -search-view_submit-background.md │ │ ├── -search-view_suggestion-row-layout.md │ │ ├── -search-view_voice-icon.md │ │ ├── -spinner.md │ │ ├── -spinner_android_drop-down-width.md │ │ ├── -spinner_android_entries.md │ │ ├── -spinner_android_popup-background.md │ │ ├── -spinner_android_prompt.md │ │ ├── -spinner_popup-theme.md │ │ ├── -switch-compat.md │ │ ├── -switch-compat_android_text-off.md │ │ ├── -switch-compat_android_text-on.md │ │ ├── -switch-compat_android_thumb.md │ │ ├── -switch-compat_show-text.md │ │ ├── -switch-compat_split-track.md │ │ ├── -switch-compat_switch-min-width.md │ │ ├── -switch-compat_switch-padding.md │ │ ├── -switch-compat_switch-text-appearance.md │ │ ├── -switch-compat_thumb-text-padding.md │ │ ├── -switch-compat_thumb-tint-mode.md │ │ ├── -switch-compat_thumb-tint.md │ │ ├── -switch-compat_track-tint-mode.md │ │ ├── -switch-compat_track-tint.md │ │ ├── -switch-compat_track.md │ │ ├── -text-appearance.md │ │ ├── -text-appearance_android_font-family.md │ │ ├── -text-appearance_android_shadow-color.md │ │ ├── -text-appearance_android_shadow-dx.md │ │ ├── -text-appearance_android_shadow-dy.md │ │ ├── -text-appearance_android_shadow-radius.md │ │ ├── -text-appearance_android_text-color-hint.md │ │ ├── -text-appearance_android_text-color-link.md │ │ ├── -text-appearance_android_text-color.md │ │ ├── -text-appearance_android_text-size.md │ │ ├── -text-appearance_android_text-style.md │ │ ├── -text-appearance_android_typeface.md │ │ ├── -text-appearance_font-family.md │ │ ├── -text-appearance_text-all-caps.md │ │ ├── -toolbar.md │ │ ├── -toolbar_android_gravity.md │ │ ├── -toolbar_android_min-height.md │ │ ├── -toolbar_button-gravity.md │ │ ├── -toolbar_collapse-content-description.md │ │ ├── -toolbar_collapse-icon.md │ │ ├── -toolbar_content-inset-end-with-actions.md │ │ ├── -toolbar_content-inset-end.md │ │ ├── -toolbar_content-inset-left.md │ │ ├── -toolbar_content-inset-right.md │ │ ├── -toolbar_content-inset-start-with-navigation.md │ │ ├── -toolbar_content-inset-start.md │ │ ├── -toolbar_logo-description.md │ │ ├── -toolbar_logo.md │ │ ├── -toolbar_max-button-height.md │ │ ├── -toolbar_navigation-content-description.md │ │ ├── -toolbar_navigation-icon.md │ │ ├── -toolbar_popup-theme.md │ │ ├── -toolbar_subtitle-text-appearance.md │ │ ├── -toolbar_subtitle-text-color.md │ │ ├── -toolbar_subtitle.md │ │ ├── -toolbar_title-margin-bottom.md │ │ ├── -toolbar_title-margin-end.md │ │ ├── -toolbar_title-margin-start.md │ │ ├── -toolbar_title-margin-top.md │ │ ├── -toolbar_title-margin.md │ │ ├── -toolbar_title-margins.md │ │ ├── -toolbar_title-text-appearance.md │ │ ├── -toolbar_title-text-color.md │ │ ├── -toolbar_title.md │ │ ├── -view-background-helper.md │ │ ├── -view-background-helper_android_background.md │ │ ├── -view-background-helper_background-tint-mode.md │ │ ├── -view-background-helper_background-tint.md │ │ ├── -view-stub-compat.md │ │ ├── -view-stub-compat_android_id.md │ │ ├── -view-stub-compat_android_inflated-id.md │ │ ├── -view-stub-compat_android_layout.md │ │ ├── -view.md │ │ ├── -view_android_focusable.md │ │ ├── -view_android_theme.md │ │ ├── -view_padding-end.md │ │ ├── -view_padding-start.md │ │ ├── -view_theme.md │ │ ├── -wave-form-view.md │ │ ├── -wave-form-view_block-color-played.md │ │ ├── -wave-form-view_block-color.md │ │ ├── -wave-form-view_block-width.md │ │ ├── -wave-form-view_bottom-block-scale.md │ │ ├── -wave-form-view_peak-mode.md │ │ ├── -wave-form-view_sec-per-block.md │ │ ├── -wave-form-view_show-time-text.md │ │ ├── -wave-form-view_text-bg-color.md │ │ ├── -wave-form-view_text-color.md │ │ ├── -wave-form-view_top-block-scale.md │ │ └── index.md │ ├── -wave-form-data │ ├── -c-r-e-a-t-o-r │ │ ├── create-from-parcel.md │ │ ├── index.md │ │ └── new-array.md │ ├── -factory │ │ ├── -callback │ │ │ ├── index.md │ │ │ ├── on-complete.md │ │ │ └── on-progress.md │ │ ├── -init-.md │ │ ├── build.md │ │ └── index.md │ ├── channel.md │ ├── create-from-parcel.md │ ├── describe-contents.md │ ├── duration.md │ ├── index.md │ ├── new-array.md │ ├── sample-rate.md │ ├── samples.md │ └── write-to-parcel.md │ ├── -wave-form-view │ ├── -callback │ │ ├── index.md │ │ ├── on-play-pause.md │ │ └── on-seek.md │ ├── -init-.md │ ├── -p-e-a-k-m-o-d-e_-a-v-e-r-a-g-e.md │ ├── -p-e-a-k-m-o-d-e_-m-a-x.md │ ├── block-color-played.md │ ├── block-color.md │ ├── block-width.md │ ├── bottom-block-scale.md │ ├── callback.md │ ├── controller.md │ ├── data.md │ ├── index.md │ ├── on-draw.md │ ├── on-touch-event.md │ ├── peak-mode.md │ ├── position.md │ ├── sec-per-block.md │ ├── show-time-text.md │ ├── text-bg-color.md │ ├── text-color.md │ └── top-block-scale.md │ └── index.md ├── proguard-rules.pro └── src ├── androidTest └── java │ └── space │ └── siy │ └── waveformview │ └── ExampleInstrumentedTest.java ├── main ├── AndroidManifest.xml ├── java │ └── space │ │ └── siy │ │ └── waveformview │ │ ├── WaveFormData.kt │ │ └── WaveFormView.kt └── res │ └── values │ ├── attrs.xml │ └── strings.xml └── test └── java └── space └── siy └── waveformview └── ExampleUnitTest.java /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | .externalNativeBuild 10 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/src/main/assets/jazz_in_paris.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/assets/jazz_in_paris.mp3 -------------------------------------------------------------------------------- /app/src/main/res/drawable/album_jazz_blues.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/drawable/album_jazz_blues.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #ffffff 7 | #ff0000 8 | #AA000000 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | WaveFormViewDemo 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Mar 06 20:45:35 JST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.1-all.zip 7 | -------------------------------------------------------------------------------- /screenshots/sample1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/screenshots/sample1.png -------------------------------------------------------------------------------- /screenshots/sample2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/screenshots/sample2.png -------------------------------------------------------------------------------- /screenshots/wfv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SIY1121/WaveFormViewDemo/0a27395c8b59d7d33c3cf909ca0e3e3a542017a4/screenshots/wfv.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':waveformview' 2 | -------------------------------------------------------------------------------- /waveformview/.gitignore: -------------------------------------------------------------------------------- 1 | /build/* 2 | !/build/markdown -------------------------------------------------------------------------------- /waveformview/build/markdown/index.md: -------------------------------------------------------------------------------- 1 | 2 | 3 | ### Packages 4 | 5 | | Name | Summary | 6 | |---|---| 7 | | [space.siy.waveformview](space.siy.waveformview/index.md) | | 8 | 9 | ### Index 10 | 11 | [All Types](alltypes/index.md) -------------------------------------------------------------------------------- /waveformview/build/markdown/package-list: -------------------------------------------------------------------------------- 1 | $dokka.format:gfm 2 | $dokka.linkExtension:md 3 | 4 | space.siy.waveformview 5 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/-a-p-p-l-i-c-a-t-i-o-n_-i-d.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](index.md) / [APPLICATION_ID](./-a-p-p-l-i-c-a-t-i-o-n_-i-d.md) 2 | 3 | # APPLICATION_ID 4 | 5 | `static val APPLICATION_ID: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 6 | `static val APPLICATION_ID: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/-b-u-i-l-d_-t-y-p-e.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](index.md) / [BUILD_TYPE](./-b-u-i-l-d_-t-y-p-e.md) 2 | 3 | # BUILD_TYPE 4 | 5 | `static val BUILD_TYPE: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 6 | `static val BUILD_TYPE: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/-d-e-b-u-g.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](index.md) / [DEBUG](./-d-e-b-u-g.md) 2 | 3 | # DEBUG 4 | 5 | `static val DEBUG: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 6 | `static val DEBUG: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/-f-l-a-v-o-r.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](index.md) / [FLAVOR](./-f-l-a-v-o-r.md) 2 | 3 | # FLAVOR 4 | 5 | `static val FLAVOR: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 6 | `static val FLAVOR: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `BuildConfig()` 6 | `BuildConfig()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/-v-e-r-s-i-o-n_-c-o-d-e.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](index.md) / [VERSION_CODE](./-v-e-r-s-i-o-n_-c-o-d-e.md) 2 | 3 | # VERSION_CODE 4 | 5 | `static val VERSION_CODE: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static val VERSION_CODE: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/-v-e-r-s-i-o-n_-n-a-m-e.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](index.md) / [VERSION_NAME](./-v-e-r-s-i-o-n_-n-a-m-e.md) 2 | 3 | # VERSION_NAME 4 | 5 | `static val VERSION_NAME: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) 6 | `static val VERSION_NAME: `[`String`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-string/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-build-config/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [BuildConfig](./index.md) 2 | 3 | # BuildConfig 4 | 5 | `class BuildConfig` 6 | `class BuildConfig` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [R](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `R()` 6 | `R()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `anim()` 6 | `anim()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_fade_in.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_fade_in](./abc_fade_in.md) 2 | 3 | # abc_fade_in 4 | 5 | `static var abc_fade_in: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_fade_in: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_fade_out.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_fade_out](./abc_fade_out.md) 2 | 3 | # abc_fade_out 4 | 5 | `static var abc_fade_out: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_fade_out: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_popup_enter.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_popup_enter](./abc_popup_enter.md) 2 | 3 | # abc_popup_enter 4 | 5 | `static var abc_popup_enter: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_popup_enter: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_popup_exit.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_popup_exit](./abc_popup_exit.md) 2 | 3 | # abc_popup_exit 4 | 5 | `static var abc_popup_exit: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_popup_exit: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_slide_in_bottom.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_slide_in_bottom](./abc_slide_in_bottom.md) 2 | 3 | # abc_slide_in_bottom 4 | 5 | `static var abc_slide_in_bottom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_slide_in_bottom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_slide_in_top.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_slide_in_top](./abc_slide_in_top.md) 2 | 3 | # abc_slide_in_top 4 | 5 | `static var abc_slide_in_top: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_slide_in_top: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_slide_out_bottom.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_slide_out_bottom](./abc_slide_out_bottom.md) 2 | 3 | # abc_slide_out_bottom 4 | 5 | `static var abc_slide_out_bottom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_slide_out_bottom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/abc_slide_out_top.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [abc_slide_out_top](./abc_slide_out_top.md) 2 | 3 | # abc_slide_out_top 4 | 5 | `static var abc_slide_out_top: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_slide_out_top: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](./index.md) 2 | 3 | # anim 4 | 5 | `class anim` 6 | `class anim` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/tooltip_enter.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [tooltip_enter](./tooltip_enter.md) 2 | 3 | # tooltip_enter 4 | 5 | `static var tooltip_enter: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tooltip_enter: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/anim/tooltip_exit.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [anim](index.md) / [tooltip_exit](./tooltip_exit.md) 2 | 3 | # tooltip_exit 4 | 5 | `static var tooltip_exit: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tooltip_exit: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `attr()` 6 | `attr()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-bar-divider.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionBarDivider](./action-bar-divider.md) 2 | 3 | # actionBarDivider 4 | 5 | `static var actionBarDivider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionBarDivider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-bar-popup-theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionBarPopupTheme](./action-bar-popup-theme.md) 2 | 3 | # actionBarPopupTheme 4 | 5 | `static var actionBarPopupTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionBarPopupTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-bar-size.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionBarSize](./action-bar-size.md) 2 | 3 | # actionBarSize 4 | 5 | `static var actionBarSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionBarSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-bar-split-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionBarSplitStyle](./action-bar-split-style.md) 2 | 3 | # actionBarSplitStyle 4 | 5 | `static var actionBarSplitStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionBarSplitStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-bar-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionBarStyle](./action-bar-style.md) 2 | 3 | # actionBarStyle 4 | 5 | `static var actionBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-bar-tab-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionBarTabStyle](./action-bar-tab-style.md) 2 | 3 | # actionBarTabStyle 4 | 5 | `static var actionBarTabStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionBarTabStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-bar-theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionBarTheme](./action-bar-theme.md) 2 | 3 | # actionBarTheme 4 | 5 | `static var actionBarTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionBarTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-button-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionButtonStyle](./action-button-style.md) 2 | 3 | # actionButtonStyle 4 | 5 | `static var actionButtonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionButtonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-drop-down-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionDropDownStyle](./action-drop-down-style.md) 2 | 3 | # actionDropDownStyle 4 | 5 | `static var actionDropDownStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionDropDownStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionLayout](./action-layout.md) 2 | 3 | # actionLayout 4 | 5 | `static var actionLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-menu-text-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionMenuTextColor](./action-menu-text-color.md) 2 | 3 | # actionMenuTextColor 4 | 5 | `static var actionMenuTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionMenuTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-mode-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionModeStyle](./action-mode-style.md) 2 | 3 | # actionModeStyle 4 | 5 | `static var actionModeStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionModeStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-provider-class.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionProviderClass](./action-provider-class.md) 2 | 3 | # actionProviderClass 4 | 5 | `static var actionProviderClass: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionProviderClass: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/action-view-class.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [actionViewClass](./action-view-class.md) 2 | 3 | # actionViewClass 4 | 5 | `static var actionViewClass: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actionViewClass: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/alert-dialog-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [alertDialogStyle](./alert-dialog-style.md) 2 | 3 | # alertDialogStyle 4 | 5 | `static var alertDialogStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var alertDialogStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/alert-dialog-theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [alertDialogTheme](./alert-dialog-theme.md) 2 | 3 | # alertDialogTheme 4 | 5 | `static var alertDialogTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var alertDialogTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/allow-stacking.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [allowStacking](./allow-stacking.md) 2 | 3 | # allowStacking 4 | 5 | `static var allowStacking: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var allowStacking: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/alpha.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [alpha](./alpha.md) 2 | 3 | # alpha 4 | 5 | `static var alpha: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var alpha: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/alphabetic-modifiers.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [alphabeticModifiers](./alphabetic-modifiers.md) 2 | 3 | # alphabeticModifiers 4 | 5 | `static var alphabeticModifiers: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var alphabeticModifiers: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/arrow-head-length.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [arrowHeadLength](./arrow-head-length.md) 2 | 3 | # arrowHeadLength 4 | 5 | `static var arrowHeadLength: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var arrowHeadLength: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/arrow-shaft-length.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [arrowShaftLength](./arrow-shaft-length.md) 2 | 3 | # arrowShaftLength 4 | 5 | `static var arrowShaftLength: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var arrowShaftLength: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/auto-size-max-text-size.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [autoSizeMaxTextSize](./auto-size-max-text-size.md) 2 | 3 | # autoSizeMaxTextSize 4 | 5 | `static var autoSizeMaxTextSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var autoSizeMaxTextSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/auto-size-min-text-size.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [autoSizeMinTextSize](./auto-size-min-text-size.md) 2 | 3 | # autoSizeMinTextSize 4 | 5 | `static var autoSizeMinTextSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var autoSizeMinTextSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/auto-size-preset-sizes.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [autoSizePresetSizes](./auto-size-preset-sizes.md) 2 | 3 | # autoSizePresetSizes 4 | 5 | `static var autoSizePresetSizes: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var autoSizePresetSizes: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/auto-size-text-type.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [autoSizeTextType](./auto-size-text-type.md) 2 | 3 | # autoSizeTextType 4 | 5 | `static var autoSizeTextType: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var autoSizeTextType: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/background-split.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [backgroundSplit](./background-split.md) 2 | 3 | # backgroundSplit 4 | 5 | `static var backgroundSplit: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var backgroundSplit: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/background-stacked.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [backgroundStacked](./background-stacked.md) 2 | 3 | # backgroundStacked 4 | 5 | `static var backgroundStacked: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var backgroundStacked: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/background-tint-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [backgroundTintMode](./background-tint-mode.md) 2 | 3 | # backgroundTintMode 4 | 5 | `static var backgroundTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var backgroundTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/background-tint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [backgroundTint](./background-tint.md) 2 | 3 | # backgroundTint 4 | 5 | `static var backgroundTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var backgroundTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/background.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [background](./background.md) 2 | 3 | # background 4 | 5 | `static var background: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var background: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/bar-length.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [barLength](./bar-length.md) 2 | 3 | # barLength 4 | 5 | `static var barLength: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var barLength: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/block-color-played.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [blockColorPlayed](./block-color-played.md) 2 | 3 | # blockColorPlayed 4 | 5 | `static var blockColorPlayed: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var blockColorPlayed: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/block-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [blockColor](./block-color.md) 2 | 3 | # blockColor 4 | 5 | `static var blockColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var blockColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/block-width.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [blockWidth](./block-width.md) 2 | 3 | # blockWidth 4 | 5 | `static var blockWidth: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var blockWidth: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/bottom-block-scale.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [bottomBlockScale](./bottom-block-scale.md) 2 | 3 | # bottomBlockScale 4 | 5 | `static var bottomBlockScale: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var bottomBlockScale: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/button-bar-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [buttonBarStyle](./button-bar-style.md) 2 | 3 | # buttonBarStyle 4 | 5 | `static var buttonBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var buttonBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/button-gravity.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [buttonGravity](./button-gravity.md) 2 | 3 | # buttonGravity 4 | 5 | `static var buttonGravity: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var buttonGravity: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/button-style-small.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [buttonStyleSmall](./button-style-small.md) 2 | 3 | # buttonStyleSmall 4 | 5 | `static var buttonStyleSmall: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var buttonStyleSmall: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/button-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [buttonStyle](./button-style.md) 2 | 3 | # buttonStyle 4 | 5 | `static var buttonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var buttonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/button-tint-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [buttonTintMode](./button-tint-mode.md) 2 | 3 | # buttonTintMode 4 | 5 | `static var buttonTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var buttonTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/button-tint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [buttonTint](./button-tint.md) 2 | 3 | # buttonTint 4 | 5 | `static var buttonTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var buttonTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/checkbox-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [checkboxStyle](./checkbox-style.md) 2 | 3 | # checkboxStyle 4 | 5 | `static var checkboxStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var checkboxStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/close-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [closeIcon](./close-icon.md) 2 | 3 | # closeIcon 4 | 5 | `static var closeIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var closeIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/close-item-layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [closeItemLayout](./close-item-layout.md) 2 | 3 | # closeItemLayout 4 | 5 | `static var closeItemLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var closeItemLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/collapse-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [collapseIcon](./collapse-icon.md) 2 | 3 | # collapseIcon 4 | 5 | `static var collapseIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var collapseIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/color-accent.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [colorAccent](./color-accent.md) 2 | 3 | # colorAccent 4 | 5 | `static var colorAccent: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var colorAccent: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/color-button-normal.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [colorButtonNormal](./color-button-normal.md) 2 | 3 | # colorButtonNormal 4 | 5 | `static var colorButtonNormal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var colorButtonNormal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/color-control-normal.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [colorControlNormal](./color-control-normal.md) 2 | 3 | # colorControlNormal 4 | 5 | `static var colorControlNormal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var colorControlNormal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/color-error.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [colorError](./color-error.md) 2 | 3 | # colorError 4 | 5 | `static var colorError: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var colorError: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/color-primary-dark.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [colorPrimaryDark](./color-primary-dark.md) 2 | 3 | # colorPrimaryDark 4 | 5 | `static var colorPrimaryDark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var colorPrimaryDark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/color-primary.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [colorPrimary](./color-primary.md) 2 | 3 | # colorPrimary 4 | 5 | `static var colorPrimary: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var colorPrimary: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [color](./color.md) 2 | 3 | # color 4 | 5 | `static var color: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var color: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/commit-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [commitIcon](./commit-icon.md) 2 | 3 | # commitIcon 4 | 5 | `static var commitIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var commitIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/content-description.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [contentDescription](./content-description.md) 2 | 3 | # contentDescription 4 | 5 | `static var contentDescription: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var contentDescription: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/content-inset-end.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [contentInsetEnd](./content-inset-end.md) 2 | 3 | # contentInsetEnd 4 | 5 | `static var contentInsetEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var contentInsetEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/content-inset-left.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [contentInsetLeft](./content-inset-left.md) 2 | 3 | # contentInsetLeft 4 | 5 | `static var contentInsetLeft: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var contentInsetLeft: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/content-inset-right.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [contentInsetRight](./content-inset-right.md) 2 | 3 | # contentInsetRight 4 | 5 | `static var contentInsetRight: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var contentInsetRight: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/content-inset-start.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [contentInsetStart](./content-inset-start.md) 2 | 3 | # contentInsetStart 4 | 5 | `static var contentInsetStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var contentInsetStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/control-background.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [controlBackground](./control-background.md) 2 | 3 | # controlBackground 4 | 5 | `static var controlBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var controlBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/default-query-hint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [defaultQueryHint](./default-query-hint.md) 2 | 3 | # defaultQueryHint 4 | 5 | `static var defaultQueryHint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var defaultQueryHint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/dialog-theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [dialogTheme](./dialog-theme.md) 2 | 3 | # dialogTheme 4 | 5 | `static var dialogTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var dialogTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/display-options.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [displayOptions](./display-options.md) 2 | 3 | # displayOptions 4 | 5 | `static var displayOptions: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var displayOptions: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/divider-horizontal.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [dividerHorizontal](./divider-horizontal.md) 2 | 3 | # dividerHorizontal 4 | 5 | `static var dividerHorizontal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var dividerHorizontal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/divider-padding.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [dividerPadding](./divider-padding.md) 2 | 3 | # dividerPadding 4 | 5 | `static var dividerPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var dividerPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/divider-vertical.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [dividerVertical](./divider-vertical.md) 2 | 3 | # dividerVertical 4 | 5 | `static var dividerVertical: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var dividerVertical: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/divider.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [divider](./divider.md) 2 | 3 | # divider 4 | 5 | `static var divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/drawable-size.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [drawableSize](./drawable-size.md) 2 | 3 | # drawableSize 4 | 5 | `static var drawableSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var drawableSize: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/drawer-arrow-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [drawerArrowStyle](./drawer-arrow-style.md) 2 | 3 | # drawerArrowStyle 4 | 5 | `static var drawerArrowStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var drawerArrowStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/edit-text-background.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [editTextBackground](./edit-text-background.md) 2 | 3 | # editTextBackground 4 | 5 | `static var editTextBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var editTextBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/edit-text-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [editTextColor](./edit-text-color.md) 2 | 3 | # editTextColor 4 | 5 | `static var editTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var editTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/edit-text-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [editTextStyle](./edit-text-style.md) 2 | 3 | # editTextStyle 4 | 5 | `static var editTextStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var editTextStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/elevation.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [elevation](./elevation.md) 2 | 3 | # elevation 4 | 5 | `static var elevation: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var elevation: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/font-family.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [fontFamily](./font-family.md) 2 | 3 | # fontFamily 4 | 5 | `static var fontFamily: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var fontFamily: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/font-provider-certs.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [fontProviderCerts](./font-provider-certs.md) 2 | 3 | # fontProviderCerts 4 | 5 | `static var fontProviderCerts: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var fontProviderCerts: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/font-provider-package.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [fontProviderPackage](./font-provider-package.md) 2 | 3 | # fontProviderPackage 4 | 5 | `static var fontProviderPackage: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var fontProviderPackage: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/font-provider-query.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [fontProviderQuery](./font-provider-query.md) 2 | 3 | # fontProviderQuery 4 | 5 | `static var fontProviderQuery: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var fontProviderQuery: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/font-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [fontStyle](./font-style.md) 2 | 3 | # fontStyle 4 | 5 | `static var fontStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var fontStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/font-weight.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [fontWeight](./font-weight.md) 2 | 3 | # fontWeight 4 | 5 | `static var fontWeight: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var fontWeight: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/font.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [font](./font.md) 2 | 3 | # font 4 | 5 | `static var font: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var font: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/gap-between-bars.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [gapBetweenBars](./gap-between-bars.md) 2 | 3 | # gapBetweenBars 4 | 5 | `static var gapBetweenBars: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var gapBetweenBars: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/go-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [goIcon](./go-icon.md) 2 | 3 | # goIcon 4 | 5 | `static var goIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var goIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/height.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [height](./height.md) 2 | 3 | # height 4 | 5 | `static var height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/hide-on-content-scroll.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [hideOnContentScroll](./hide-on-content-scroll.md) 2 | 3 | # hideOnContentScroll 4 | 5 | `static var hideOnContentScroll: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var hideOnContentScroll: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/home-as-up-indicator.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [homeAsUpIndicator](./home-as-up-indicator.md) 2 | 3 | # homeAsUpIndicator 4 | 5 | `static var homeAsUpIndicator: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var homeAsUpIndicator: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/home-layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [homeLayout](./home-layout.md) 2 | 3 | # homeLayout 4 | 5 | `static var homeLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var homeLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/icon-tint-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [iconTintMode](./icon-tint-mode.md) 2 | 3 | # iconTintMode 4 | 5 | `static var iconTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var iconTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/icon-tint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [iconTint](./icon-tint.md) 2 | 3 | # iconTint 4 | 5 | `static var iconTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var iconTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [icon](./icon.md) 2 | 3 | # icon 4 | 5 | `static var icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/iconified-by-default.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [iconifiedByDefault](./iconified-by-default.md) 2 | 3 | # iconifiedByDefault 4 | 5 | `static var iconifiedByDefault: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var iconifiedByDefault: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/image-button-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [imageButtonStyle](./image-button-style.md) 2 | 3 | # imageButtonStyle 4 | 5 | `static var imageButtonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var imageButtonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](./index.md) 2 | 3 | # attr 4 | 5 | `class attr` 6 | `class attr` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/is-light-theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [isLightTheme](./is-light-theme.md) 2 | 3 | # isLightTheme 4 | 5 | `static var isLightTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var isLightTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/item-padding.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [itemPadding](./item-padding.md) 2 | 3 | # itemPadding 4 | 5 | `static var itemPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var itemPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [layout](./layout.md) 2 | 3 | # layout 4 | 5 | `static var layout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var layout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/list-item-layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [listItemLayout](./list-item-layout.md) 2 | 3 | # listItemLayout 4 | 5 | `static var listItemLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var listItemLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/list-layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [listLayout](./list-layout.md) 2 | 3 | # listLayout 4 | 5 | `static var listLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var listLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/list-menu-view-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [listMenuViewStyle](./list-menu-view-style.md) 2 | 3 | # listMenuViewStyle 4 | 5 | `static var listMenuViewStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var listMenuViewStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/logo-description.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [logoDescription](./logo-description.md) 2 | 3 | # logoDescription 4 | 5 | `static var logoDescription: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var logoDescription: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/logo.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [logo](./logo.md) 2 | 3 | # logo 4 | 5 | `static var logo: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var logo: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/max-button-height.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [maxButtonHeight](./max-button-height.md) 2 | 3 | # maxButtonHeight 4 | 5 | `static var maxButtonHeight: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var maxButtonHeight: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/navigation-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [navigationIcon](./navigation-icon.md) 2 | 3 | # navigationIcon 4 | 5 | `static var navigationIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var navigationIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/navigation-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [navigationMode](./navigation-mode.md) 2 | 3 | # navigationMode 4 | 5 | `static var navigationMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var navigationMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/numeric-modifiers.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [numericModifiers](./numeric-modifiers.md) 2 | 3 | # numericModifiers 4 | 5 | `static var numericModifiers: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var numericModifiers: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/overlap-anchor.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [overlapAnchor](./overlap-anchor.md) 2 | 3 | # overlapAnchor 4 | 5 | `static var overlapAnchor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var overlapAnchor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/padding-end.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [paddingEnd](./padding-end.md) 2 | 3 | # paddingEnd 4 | 5 | `static var paddingEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var paddingEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/padding-start.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [paddingStart](./padding-start.md) 2 | 3 | # paddingStart 4 | 5 | `static var paddingStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var paddingStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/padding-top-no-title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [paddingTopNoTitle](./padding-top-no-title.md) 2 | 3 | # paddingTopNoTitle 4 | 5 | `static var paddingTopNoTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var paddingTopNoTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/panel-background.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [panelBackground](./panel-background.md) 2 | 3 | # panelBackground 4 | 5 | `static var panelBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var panelBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/panel-menu-list-theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [panelMenuListTheme](./panel-menu-list-theme.md) 2 | 3 | # panelMenuListTheme 4 | 5 | `static var panelMenuListTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var panelMenuListTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/panel-menu-list-width.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [panelMenuListWidth](./panel-menu-list-width.md) 2 | 3 | # panelMenuListWidth 4 | 5 | `static var panelMenuListWidth: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var panelMenuListWidth: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/peak-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [peakMode](./peak-mode.md) 2 | 3 | # peakMode 4 | 5 | `static var peakMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var peakMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/popup-menu-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [popupMenuStyle](./popup-menu-style.md) 2 | 3 | # popupMenuStyle 4 | 5 | `static var popupMenuStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var popupMenuStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/popup-theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [popupTheme](./popup-theme.md) 2 | 3 | # popupTheme 4 | 5 | `static var popupTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var popupTheme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/popup-window-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [popupWindowStyle](./popup-window-style.md) 2 | 3 | # popupWindowStyle 4 | 5 | `static var popupWindowStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var popupWindowStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/preserve-icon-spacing.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [preserveIconSpacing](./preserve-icon-spacing.md) 2 | 3 | # preserveIconSpacing 4 | 5 | `static var preserveIconSpacing: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var preserveIconSpacing: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/progress-bar-padding.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [progressBarPadding](./progress-bar-padding.md) 2 | 3 | # progressBarPadding 4 | 5 | `static var progressBarPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var progressBarPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/progress-bar-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [progressBarStyle](./progress-bar-style.md) 2 | 3 | # progressBarStyle 4 | 5 | `static var progressBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var progressBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/query-background.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [queryBackground](./query-background.md) 2 | 3 | # queryBackground 4 | 5 | `static var queryBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var queryBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/query-hint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [queryHint](./query-hint.md) 2 | 3 | # queryHint 4 | 5 | `static var queryHint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var queryHint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/radio-button-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [radioButtonStyle](./radio-button-style.md) 2 | 3 | # radioButtonStyle 4 | 5 | `static var radioButtonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var radioButtonStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/rating-bar-style-small.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [ratingBarStyleSmall](./rating-bar-style-small.md) 2 | 3 | # ratingBarStyleSmall 4 | 5 | `static var ratingBarStyleSmall: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ratingBarStyleSmall: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/rating-bar-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [ratingBarStyle](./rating-bar-style.md) 2 | 3 | # ratingBarStyle 4 | 5 | `static var ratingBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ratingBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/search-hint-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [searchHintIcon](./search-hint-icon.md) 2 | 3 | # searchHintIcon 4 | 5 | `static var searchHintIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var searchHintIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/search-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [searchIcon](./search-icon.md) 2 | 3 | # searchIcon 4 | 5 | `static var searchIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var searchIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/search-view-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [searchViewStyle](./search-view-style.md) 2 | 3 | # searchViewStyle 4 | 5 | `static var searchViewStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var searchViewStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/sec-per-block.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [secPerBlock](./sec-per-block.md) 2 | 3 | # secPerBlock 4 | 5 | `static var secPerBlock: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var secPerBlock: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/seek-bar-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [seekBarStyle](./seek-bar-style.md) 2 | 3 | # seekBarStyle 4 | 5 | `static var seekBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var seekBarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/show-as-action.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [showAsAction](./show-as-action.md) 2 | 3 | # showAsAction 4 | 5 | `static var showAsAction: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var showAsAction: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/show-dividers.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [showDividers](./show-dividers.md) 2 | 3 | # showDividers 4 | 5 | `static var showDividers: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var showDividers: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/show-text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [showText](./show-text.md) 2 | 3 | # showText 4 | 5 | `static var showText: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var showText: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/show-time-text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [showTimeText](./show-time-text.md) 2 | 3 | # showTimeText 4 | 5 | `static var showTimeText: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var showTimeText: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/show-title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [showTitle](./show-title.md) 2 | 3 | # showTitle 4 | 5 | `static var showTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var showTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/spin-bars.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [spinBars](./spin-bars.md) 2 | 3 | # spinBars 4 | 5 | `static var spinBars: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var spinBars: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/spinner-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [spinnerStyle](./spinner-style.md) 2 | 3 | # spinnerStyle 4 | 5 | `static var spinnerStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var spinnerStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/split-track.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [splitTrack](./split-track.md) 2 | 3 | # splitTrack 4 | 5 | `static var splitTrack: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var splitTrack: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/src-compat.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [srcCompat](./src-compat.md) 2 | 3 | # srcCompat 4 | 5 | `static var srcCompat: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var srcCompat: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/state_above_anchor.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [state_above_anchor](./state_above_anchor.md) 2 | 3 | # state_above_anchor 4 | 5 | `static var state_above_anchor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var state_above_anchor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/sub-menu-arrow.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [subMenuArrow](./sub-menu-arrow.md) 2 | 3 | # subMenuArrow 4 | 5 | `static var subMenuArrow: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var subMenuArrow: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/submit-background.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [submitBackground](./submit-background.md) 2 | 3 | # submitBackground 4 | 5 | `static var submitBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var submitBackground: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/subtitle-text-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [subtitleTextColor](./subtitle-text-color.md) 2 | 3 | # subtitleTextColor 4 | 5 | `static var subtitleTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var subtitleTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/subtitle-text-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [subtitleTextStyle](./subtitle-text-style.md) 2 | 3 | # subtitleTextStyle 4 | 5 | `static var subtitleTextStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var subtitleTextStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/subtitle.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [subtitle](./subtitle.md) 2 | 3 | # subtitle 4 | 5 | `static var subtitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var subtitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/suggestion-row-layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [suggestionRowLayout](./suggestion-row-layout.md) 2 | 3 | # suggestionRowLayout 4 | 5 | `static var suggestionRowLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var suggestionRowLayout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/switch-min-width.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [switchMinWidth](./switch-min-width.md) 2 | 3 | # switchMinWidth 4 | 5 | `static var switchMinWidth: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var switchMinWidth: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/switch-padding.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [switchPadding](./switch-padding.md) 2 | 3 | # switchPadding 4 | 5 | `static var switchPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var switchPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/switch-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [switchStyle](./switch-style.md) 2 | 3 | # switchStyle 4 | 5 | `static var switchStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var switchStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/text-all-caps.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [textAllCaps](./text-all-caps.md) 2 | 3 | # textAllCaps 4 | 5 | `static var textAllCaps: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var textAllCaps: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/text-bg-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [textBgColor](./text-bg-color.md) 2 | 3 | # textBgColor 4 | 5 | `static var textBgColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var textBgColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/text-color-search-url.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [textColorSearchUrl](./text-color-search-url.md) 2 | 3 | # textColorSearchUrl 4 | 5 | `static var textColorSearchUrl: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var textColorSearchUrl: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/text-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [textColor](./text-color.md) 2 | 3 | # textColor 4 | 5 | `static var textColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var textColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [theme](./theme.md) 2 | 3 | # theme 4 | 5 | `static var theme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var theme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/thickness.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [thickness](./thickness.md) 2 | 3 | # thickness 4 | 5 | `static var thickness: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var thickness: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/thumb-text-padding.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [thumbTextPadding](./thumb-text-padding.md) 2 | 3 | # thumbTextPadding 4 | 5 | `static var thumbTextPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var thumbTextPadding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/thumb-tint-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [thumbTintMode](./thumb-tint-mode.md) 2 | 3 | # thumbTintMode 4 | 5 | `static var thumbTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var thumbTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/thumb-tint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [thumbTint](./thumb-tint.md) 2 | 3 | # thumbTint 4 | 5 | `static var thumbTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var thumbTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/tick-mark-tint-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [tickMarkTintMode](./tick-mark-tint-mode.md) 2 | 3 | # tickMarkTintMode 4 | 5 | `static var tickMarkTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tickMarkTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/tick-mark-tint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [tickMarkTint](./tick-mark-tint.md) 2 | 3 | # tickMarkTint 4 | 5 | `static var tickMarkTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tickMarkTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/tick-mark.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [tickMark](./tick-mark.md) 2 | 3 | # tickMark 4 | 5 | `static var tickMark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tickMark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/tint-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [tintMode](./tint-mode.md) 2 | 3 | # tintMode 4 | 5 | `static var tintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/tint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [tint](./tint.md) 2 | 3 | # tint 4 | 5 | `static var tint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-margin-bottom.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleMarginBottom](./title-margin-bottom.md) 2 | 3 | # titleMarginBottom 4 | 5 | `static var titleMarginBottom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleMarginBottom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-margin-end.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleMarginEnd](./title-margin-end.md) 2 | 3 | # titleMarginEnd 4 | 5 | `static var titleMarginEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleMarginEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-margin-start.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleMarginStart](./title-margin-start.md) 2 | 3 | # titleMarginStart 4 | 5 | `static var titleMarginStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleMarginStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-margin-top.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleMarginTop](./title-margin-top.md) 2 | 3 | # titleMarginTop 4 | 5 | `static var titleMarginTop: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleMarginTop: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-margin.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleMargin](./title-margin.md) 2 | 3 | # titleMargin 4 | 5 | `static var titleMargin: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleMargin: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-margins.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleMargins](./title-margins.md) 2 | 3 | # titleMargins 4 | 5 | `static var titleMargins: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleMargins: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-text-appearance.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleTextAppearance](./title-text-appearance.md) 2 | 3 | # titleTextAppearance 4 | 5 | `static var titleTextAppearance: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleTextAppearance: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-text-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleTextColor](./title-text-color.md) 2 | 3 | # titleTextColor 4 | 5 | `static var titleTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleTextColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title-text-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [titleTextStyle](./title-text-style.md) 2 | 3 | # titleTextStyle 4 | 5 | `static var titleTextStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var titleTextStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [title](./title.md) 2 | 3 | # title 4 | 5 | `static var title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/toolbar-style.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [toolbarStyle](./toolbar-style.md) 2 | 3 | # toolbarStyle 4 | 5 | `static var toolbarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var toolbarStyle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/tooltip-text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [tooltipText](./tooltip-text.md) 2 | 3 | # tooltipText 4 | 5 | `static var tooltipText: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tooltipText: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/top-block-scale.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [topBlockScale](./top-block-scale.md) 2 | 3 | # topBlockScale 4 | 5 | `static var topBlockScale: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var topBlockScale: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/track-tint-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [trackTintMode](./track-tint-mode.md) 2 | 3 | # trackTintMode 4 | 5 | `static var trackTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var trackTintMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/track-tint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [trackTint](./track-tint.md) 2 | 3 | # trackTint 4 | 5 | `static var trackTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var trackTint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/track.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [track](./track.md) 2 | 3 | # track 4 | 5 | `static var track: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var track: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/voice-icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [voiceIcon](./voice-icon.md) 2 | 3 | # voiceIcon 4 | 5 | `static var voiceIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var voiceIcon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/window-action-bar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [windowActionBar](./window-action-bar.md) 2 | 3 | # windowActionBar 4 | 5 | `static var windowActionBar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var windowActionBar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/window-min-width-major.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [windowMinWidthMajor](./window-min-width-major.md) 2 | 3 | # windowMinWidthMajor 4 | 5 | `static var windowMinWidthMajor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var windowMinWidthMajor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/window-min-width-minor.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [windowMinWidthMinor](./window-min-width-minor.md) 2 | 3 | # windowMinWidthMinor 4 | 5 | `static var windowMinWidthMinor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var windowMinWidthMinor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/attr/window-no-title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [attr](index.md) / [windowNoTitle](./window-no-title.md) 2 | 3 | # windowNoTitle 4 | 5 | `static var windowNoTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var windowNoTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/bool/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [bool](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `bool()` 6 | `bool()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/bool/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [bool](./index.md) 2 | 3 | # bool 4 | 5 | `class bool` 6 | `class bool` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `color()` 6 | `color()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/abc_search_url_text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [abc_search_url_text](./abc_search_url_text.md) 2 | 3 | # abc_search_url_text 4 | 5 | `static var abc_search_url_text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_search_url_text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/abc_tint_default.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [abc_tint_default](./abc_tint_default.md) 2 | 3 | # abc_tint_default 4 | 5 | `static var abc_tint_default: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_tint_default: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/abc_tint_edittext.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [abc_tint_edittext](./abc_tint_edittext.md) 2 | 3 | # abc_tint_edittext 4 | 5 | `static var abc_tint_edittext: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_tint_edittext: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/abc_tint_seek_thumb.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [abc_tint_seek_thumb](./abc_tint_seek_thumb.md) 2 | 3 | # abc_tint_seek_thumb 4 | 5 | `static var abc_tint_seek_thumb: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_tint_seek_thumb: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/abc_tint_spinner.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [abc_tint_spinner](./abc_tint_spinner.md) 2 | 3 | # abc_tint_spinner 4 | 5 | `static var abc_tint_spinner: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_tint_spinner: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/accent_material_dark.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [accent_material_dark](./accent_material_dark.md) 2 | 3 | # accent_material_dark 4 | 5 | `static var accent_material_dark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var accent_material_dark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/button_material_dark.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [button_material_dark](./button_material_dark.md) 2 | 3 | # button_material_dark 4 | 5 | `static var button_material_dark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var button_material_dark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/error_color_material.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [error_color_material](./error_color_material.md) 2 | 3 | # error_color_material 4 | 5 | `static var error_color_material: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var error_color_material: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](./index.md) 2 | 3 | # color 4 | 5 | `class color` 6 | `class color` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/material_grey_100.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [material_grey_100](./material_grey_100.md) 2 | 3 | # material_grey_100 4 | 5 | `static var material_grey_100: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var material_grey_100: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/material_grey_300.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [material_grey_300](./material_grey_300.md) 2 | 3 | # material_grey_300 4 | 5 | `static var material_grey_300: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var material_grey_300: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/material_grey_50.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [material_grey_50](./material_grey_50.md) 2 | 3 | # material_grey_50 4 | 5 | `static var material_grey_50: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var material_grey_50: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/material_grey_600.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [material_grey_600](./material_grey_600.md) 2 | 3 | # material_grey_600 4 | 5 | `static var material_grey_600: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var material_grey_600: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/material_grey_800.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [material_grey_800](./material_grey_800.md) 2 | 3 | # material_grey_800 4 | 5 | `static var material_grey_800: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var material_grey_800: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/material_grey_850.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [material_grey_850](./material_grey_850.md) 2 | 3 | # material_grey_850 4 | 5 | `static var material_grey_850: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var material_grey_850: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/color/material_grey_900.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [color](index.md) / [material_grey_900](./material_grey_900.md) 2 | 3 | # material_grey_900 4 | 5 | `static var material_grey_900: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var material_grey_900: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/dimen/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [dimen](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `dimen()` 6 | `dimen()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/dimen/abc_switch_padding.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [dimen](index.md) / [abc_switch_padding](./abc_switch_padding.md) 2 | 3 | # abc_switch_padding 4 | 5 | `static var abc_switch_padding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_switch_padding: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/dimen/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [dimen](./index.md) 2 | 3 | # dimen 4 | 5 | `class dimen` 6 | `class dimen` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/dimen/tooltip_margin.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [dimen](index.md) / [tooltip_margin](./tooltip_margin.md) 2 | 3 | # tooltip_margin 4 | 5 | `static var tooltip_margin: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tooltip_margin: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/drawable/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [drawable](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `drawable()` 6 | `drawable()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/drawable/abc_vector_test.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [drawable](index.md) / [abc_vector_test](./abc_vector_test.md) 2 | 3 | # abc_vector_test 4 | 5 | `static var abc_vector_test: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_vector_test: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/drawable/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [drawable](./index.md) 2 | 3 | # drawable 4 | 5 | `class drawable` 6 | `class drawable` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/drawable/notification_bg.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [drawable](index.md) / [notification_bg](./notification_bg.md) 2 | 3 | # notification_bg 4 | 5 | `static var notification_bg: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var notification_bg: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/drawable/tooltip_frame_dark.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [drawable](index.md) / [tooltip_frame_dark](./tooltip_frame_dark.md) 2 | 3 | # tooltip_frame_dark 4 | 5 | `static var tooltip_frame_dark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tooltip_frame_dark: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `id()` 6 | `id()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action0.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action0](./action0.md) 2 | 3 | # action0 4 | 5 | `static var action0: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action0: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_bar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_bar](./action_bar.md) 2 | 3 | # action_bar 4 | 5 | `static var action_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_bar_container.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_bar_container](./action_bar_container.md) 2 | 3 | # action_bar_container 4 | 5 | `static var action_bar_container: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_bar_container: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_bar_root.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_bar_root](./action_bar_root.md) 2 | 3 | # action_bar_root 4 | 5 | `static var action_bar_root: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_bar_root: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_bar_spinner.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_bar_spinner](./action_bar_spinner.md) 2 | 3 | # action_bar_spinner 4 | 5 | `static var action_bar_spinner: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_bar_spinner: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_bar_subtitle.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_bar_subtitle](./action_bar_subtitle.md) 2 | 3 | # action_bar_subtitle 4 | 5 | `static var action_bar_subtitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_bar_subtitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_bar_title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_bar_title](./action_bar_title.md) 2 | 3 | # action_bar_title 4 | 5 | `static var action_bar_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_bar_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_container.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_container](./action_container.md) 2 | 3 | # action_container 4 | 5 | `static var action_container: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_container: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_context_bar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_context_bar](./action_context_bar.md) 2 | 3 | # action_context_bar 4 | 5 | `static var action_context_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_context_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_divider.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_divider](./action_divider.md) 2 | 3 | # action_divider 4 | 5 | `static var action_divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_image.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_image](./action_image.md) 2 | 3 | # action_image 4 | 5 | `static var action_image: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_image: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_menu_divider.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_menu_divider](./action_menu_divider.md) 2 | 3 | # action_menu_divider 4 | 5 | `static var action_menu_divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_menu_divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_mode_bar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_mode_bar](./action_mode_bar.md) 2 | 3 | # action_mode_bar 4 | 5 | `static var action_mode_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_mode_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_mode_bar_stub.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_mode_bar_stub](./action_mode_bar_stub.md) 2 | 3 | # action_mode_bar_stub 4 | 5 | `static var action_mode_bar_stub: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_mode_bar_stub: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/action_text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [action_text](./action_text.md) 2 | 3 | # action_text 4 | 5 | `static var action_text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var action_text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/actions.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [actions](./actions.md) 2 | 3 | # actions 4 | 5 | `static var actions: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var actions: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/add.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [add](./add.md) 2 | 3 | # add 4 | 5 | `static var add: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var add: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/alert-title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [alertTitle](./alert-title.md) 2 | 3 | # alertTitle 4 | 5 | `static var alertTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var alertTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/async.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [async](./async.md) 2 | 3 | # async 4 | 5 | `static var async: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var async: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/blocking.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [blocking](./blocking.md) 2 | 3 | # blocking 4 | 5 | `static var blocking: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var blocking: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/button-panel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [buttonPanel](./button-panel.md) 2 | 3 | # buttonPanel 4 | 5 | `static var buttonPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var buttonPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/cancel_action.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [cancel_action](./cancel_action.md) 2 | 3 | # cancel_action 4 | 5 | `static var cancel_action: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var cancel_action: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/checkbox.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [checkbox](./checkbox.md) 2 | 3 | # checkbox 4 | 5 | `static var checkbox: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var checkbox: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/chronometer.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [chronometer](./chronometer.md) 2 | 3 | # chronometer 4 | 5 | `static var chronometer: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var chronometer: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/content-panel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [contentPanel](./content-panel.md) 2 | 3 | # contentPanel 4 | 5 | `static var contentPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var contentPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/custom-panel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [customPanel](./custom-panel.md) 2 | 3 | # customPanel 4 | 5 | `static var customPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var customPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/custom.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [custom](./custom.md) 2 | 3 | # custom 4 | 5 | `static var custom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var custom: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/decor_content_parent.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [decor_content_parent](./decor_content_parent.md) 2 | 3 | # decor_content_parent 4 | 5 | `static var decor_content_parent: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var decor_content_parent: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/edit_query.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [edit_query](./edit_query.md) 2 | 3 | # edit_query 4 | 5 | `static var edit_query: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var edit_query: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/end_padder.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [end_padder](./end_padder.md) 2 | 3 | # end_padder 4 | 5 | `static var end_padder: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var end_padder: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/expanded_menu.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [expanded_menu](./expanded_menu.md) 2 | 3 | # expanded_menu 4 | 5 | `static var expanded_menu: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var expanded_menu: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/forever.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [forever](./forever.md) 2 | 3 | # forever 4 | 5 | `static var forever: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var forever: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/home.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [home](./home.md) 2 | 3 | # home 4 | 5 | `static var home: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var home: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [icon](./icon.md) 2 | 3 | # icon 4 | 5 | `static var icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/icon_group.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [icon_group](./icon_group.md) 2 | 3 | # icon_group 4 | 5 | `static var icon_group: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var icon_group: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/image.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [image](./image.md) 2 | 3 | # image 4 | 5 | `static var image: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var image: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](./index.md) 2 | 3 | # id 4 | 5 | `class id` 6 | `class id` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/info.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [info](./info.md) 2 | 3 | # info 4 | 5 | `static var info: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var info: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/italic.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [italic](./italic.md) 2 | 3 | # italic 4 | 5 | `static var italic: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var italic: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/line1.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [line1](./line1.md) 2 | 3 | # line1 4 | 5 | `static var line1: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var line1: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/line3.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [line3](./line3.md) 2 | 3 | # line3 4 | 5 | `static var line3: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var line3: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/list-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [listMode](./list-mode.md) 2 | 3 | # listMode 4 | 5 | `static var listMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var listMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/list_item.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [list_item](./list_item.md) 2 | 3 | # list_item 4 | 5 | `static var list_item: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var list_item: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/media_actions.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [media_actions](./media_actions.md) 2 | 3 | # media_actions 4 | 5 | `static var media_actions: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var media_actions: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/message.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [message](./message.md) 2 | 3 | # message 4 | 5 | `static var message: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var message: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/multiply.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [multiply](./multiply.md) 2 | 3 | # multiply 4 | 5 | `static var multiply: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var multiply: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/none.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [none](./none.md) 2 | 3 | # none 4 | 5 | `static var none: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var none: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/normal.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [normal](./normal.md) 2 | 3 | # normal 4 | 5 | `static var normal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var normal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/parent-panel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [parentPanel](./parent-panel.md) 2 | 3 | # parentPanel 4 | 5 | `static var parentPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var parentPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/peakmode_average.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [peakmode_average](./peakmode_average.md) 2 | 3 | # peakmode_average 4 | 5 | `static var peakmode_average: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var peakmode_average: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/peakmode_max.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [peakmode_max](./peakmode_max.md) 2 | 3 | # peakmode_max 4 | 5 | `static var peakmode_max: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var peakmode_max: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/progress_circular.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [progress_circular](./progress_circular.md) 2 | 3 | # progress_circular 4 | 5 | `static var progress_circular: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var progress_circular: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/progress_horizontal.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [progress_horizontal](./progress_horizontal.md) 2 | 3 | # progress_horizontal 4 | 5 | `static var progress_horizontal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var progress_horizontal: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/radio.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [radio](./radio.md) 2 | 3 | # radio 4 | 5 | `static var radio: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var radio: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/right_icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [right_icon](./right_icon.md) 2 | 3 | # right_icon 4 | 5 | `static var right_icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var right_icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/right_side.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [right_side](./right_side.md) 2 | 3 | # right_side 4 | 5 | `static var right_side: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var right_side: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/screen.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [screen](./screen.md) 2 | 3 | # screen 4 | 5 | `static var screen: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var screen: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/scroll-indicator-down.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [scrollIndicatorDown](./scroll-indicator-down.md) 2 | 3 | # scrollIndicatorDown 4 | 5 | `static var scrollIndicatorDown: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var scrollIndicatorDown: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/scroll-indicator-up.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [scrollIndicatorUp](./scroll-indicator-up.md) 2 | 3 | # scrollIndicatorUp 4 | 5 | `static var scrollIndicatorUp: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var scrollIndicatorUp: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/scroll-view.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [scrollView](./scroll-view.md) 2 | 3 | # scrollView 4 | 5 | `static var scrollView: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var scrollView: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_badge.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_badge](./search_badge.md) 2 | 3 | # search_badge 4 | 5 | `static var search_badge: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_badge: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_bar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_bar](./search_bar.md) 2 | 3 | # search_bar 4 | 5 | `static var search_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_button.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_button](./search_button.md) 2 | 3 | # search_button 4 | 5 | `static var search_button: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_button: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_close_btn.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_close_btn](./search_close_btn.md) 2 | 3 | # search_close_btn 4 | 5 | `static var search_close_btn: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_close_btn: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_edit_frame.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_edit_frame](./search_edit_frame.md) 2 | 3 | # search_edit_frame 4 | 5 | `static var search_edit_frame: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_edit_frame: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_go_btn.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_go_btn](./search_go_btn.md) 2 | 3 | # search_go_btn 4 | 5 | `static var search_go_btn: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_go_btn: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_mag_icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_mag_icon](./search_mag_icon.md) 2 | 3 | # search_mag_icon 4 | 5 | `static var search_mag_icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_mag_icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_plate.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_plate](./search_plate.md) 2 | 3 | # search_plate 4 | 5 | `static var search_plate: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_plate: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_src_text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_src_text](./search_src_text.md) 2 | 3 | # search_src_text 4 | 5 | `static var search_src_text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_src_text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/search_voice_btn.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [search_voice_btn](./search_voice_btn.md) 2 | 3 | # search_voice_btn 4 | 5 | `static var search_voice_btn: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_voice_btn: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/shortcut.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [shortcut](./shortcut.md) 2 | 3 | # shortcut 4 | 5 | `static var shortcut: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var shortcut: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/spacer.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [spacer](./spacer.md) 2 | 3 | # spacer 4 | 5 | `static var spacer: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var spacer: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/split_action_bar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [split_action_bar](./split_action_bar.md) 2 | 3 | # split_action_bar 4 | 5 | `static var split_action_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var split_action_bar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/src_atop.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [src_atop](./src_atop.md) 2 | 3 | # src_atop 4 | 5 | `static var src_atop: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var src_atop: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/src_in.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [src_in](./src_in.md) 2 | 3 | # src_in 4 | 5 | `static var src_in: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var src_in: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/src_over.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [src_over](./src_over.md) 2 | 3 | # src_over 4 | 5 | `static var src_over: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var src_over: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/submenuarrow.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [submenuarrow](./submenuarrow.md) 2 | 3 | # submenuarrow 4 | 5 | `static var submenuarrow: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var submenuarrow: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/submit_area.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [submit_area](./submit_area.md) 2 | 3 | # submit_area 4 | 5 | `static var submit_area: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var submit_area: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/tab-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [tabMode](./tab-mode.md) 2 | 3 | # tabMode 4 | 5 | `static var tabMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tabMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/text-spacer-no-buttons.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [textSpacerNoButtons](./text-spacer-no-buttons.md) 2 | 3 | # textSpacerNoButtons 4 | 5 | `static var textSpacerNoButtons: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var textSpacerNoButtons: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/text-spacer-no-title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [textSpacerNoTitle](./text-spacer-no-title.md) 2 | 3 | # textSpacerNoTitle 4 | 5 | `static var textSpacerNoTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var textSpacerNoTitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [text](./text.md) 2 | 3 | # text 4 | 5 | `static var text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var text: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/text2.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [text2](./text2.md) 2 | 3 | # text2 4 | 5 | `static var text2: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var text2: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/time.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [time](./time.md) 2 | 3 | # time 4 | 5 | `static var time: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var time: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [title](./title.md) 2 | 3 | # title 4 | 5 | `static var title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/title_template.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [title_template](./title_template.md) 2 | 3 | # title_template 4 | 5 | `static var title_template: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var title_template: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/top-panel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [topPanel](./top-panel.md) 2 | 3 | # topPanel 4 | 5 | `static var topPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var topPanel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/uniform.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [uniform](./uniform.md) 2 | 3 | # uniform 4 | 5 | `static var uniform: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var uniform: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/up.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [up](./up.md) 2 | 3 | # up 4 | 5 | `static var up: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var up: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/id/wrap_content.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [id](index.md) / [wrap_content](./wrap_content.md) 2 | 3 | # wrap_content 4 | 5 | `static var wrap_content: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var wrap_content: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [R](./index.md) 2 | 3 | # R 4 | 5 | `class R` 6 | `class R` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/integer/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [integer](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `integer()` 6 | `integer()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/integer/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [integer](./index.md) 2 | 3 | # integer 4 | 5 | `class integer` 6 | `class integer` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/layout/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [layout](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `layout()` 6 | `layout()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/layout/abc_screen_simple.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [layout](index.md) / [abc_screen_simple](./abc_screen_simple.md) 2 | 3 | # abc_screen_simple 4 | 5 | `static var abc_screen_simple: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_screen_simple: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/layout/abc_screen_toolbar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [layout](index.md) / [abc_screen_toolbar](./abc_screen_toolbar.md) 2 | 3 | # abc_screen_toolbar 4 | 5 | `static var abc_screen_toolbar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_screen_toolbar: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/layout/abc_search_view.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [layout](index.md) / [abc_search_view](./abc_search_view.md) 2 | 3 | # abc_search_view 4 | 5 | `static var abc_search_view: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_search_view: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/layout/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [layout](./index.md) 2 | 3 | # layout 4 | 5 | `class layout` 6 | `class layout` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/layout/tooltip.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [layout](index.md) / [tooltip](./tooltip.md) 2 | 3 | # tooltip 4 | 5 | `static var tooltip: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var tooltip: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/string/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [string](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `string()` 6 | `string()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/string/abc_capital_off.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [string](index.md) / [abc_capital_off](./abc_capital_off.md) 2 | 3 | # abc_capital_off 4 | 5 | `static var abc_capital_off: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_capital_off: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/string/abc_capital_on.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [string](index.md) / [abc_capital_on](./abc_capital_on.md) 2 | 3 | # abc_capital_on 4 | 5 | `static var abc_capital_on: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_capital_on: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/string/abc_search_hint.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [string](index.md) / [abc_search_hint](./abc_search_hint.md) 2 | 3 | # abc_search_hint 4 | 5 | `static var abc_search_hint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var abc_search_hint: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/string/app_name.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [string](index.md) / [app_name](./app_name.md) 2 | 3 | # app_name 4 | 5 | `static var app_name: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var app_name: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/string/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [string](./index.md) 2 | 3 | # string 4 | 5 | `class string` 6 | `class string` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/string/search_menu_title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [string](index.md) / [search_menu_title](./search_menu_title.md) 2 | 3 | # search_menu_title 4 | 5 | `static var search_menu_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var search_menu_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/style/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [style](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `style()` 6 | `style()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/style/-platform_-app-compat.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [style](index.md) / [Platform_AppCompat](./-platform_-app-compat.md) 2 | 3 | # Platform_AppCompat 4 | 5 | `static var Platform_AppCompat: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var Platform_AppCompat: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/style/-theme_-app-compat.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [style](index.md) / [Theme_AppCompat](./-theme_-app-compat.md) 2 | 3 | # Theme_AppCompat 4 | 5 | `static var Theme_AppCompat: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var Theme_AppCompat: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/style/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [style](./index.md) 2 | 3 | # style 4 | 5 | `class style` 6 | `class style` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-bar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionBar](./-action-bar.md) 2 | 3 | # ActionBar 4 | 5 | `static var ActionBar: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var ActionBar: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-bar_divider.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionBar_divider](./-action-bar_divider.md) 2 | 3 | # ActionBar_divider 4 | 5 | `static var ActionBar_divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ActionBar_divider: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-bar_height.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionBar_height](./-action-bar_height.md) 2 | 3 | # ActionBar_height 4 | 5 | `static var ActionBar_height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ActionBar_height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-bar_icon.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionBar_icon](./-action-bar_icon.md) 2 | 3 | # ActionBar_icon 4 | 5 | `static var ActionBar_icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ActionBar_icon: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-bar_logo.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionBar_logo](./-action-bar_logo.md) 2 | 3 | # ActionBar_logo 4 | 5 | `static var ActionBar_logo: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ActionBar_logo: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-bar_title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionBar_title](./-action-bar_title.md) 2 | 3 | # ActionBar_title 4 | 5 | `static var ActionBar_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ActionBar_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionMode](./-action-mode.md) 2 | 3 | # ActionMode 4 | 5 | `static var ActionMode: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var ActionMode: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-action-mode_height.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [ActionMode_height](./-action-mode_height.md) 2 | 3 | # ActionMode_height 4 | 5 | `static var ActionMode_height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var ActionMode_height: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-alert-dialog.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [AlertDialog](./-alert-dialog.md) 2 | 3 | # AlertDialog 4 | 5 | `static var AlertDialog: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var AlertDialog: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-font-family.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [FontFamily](./-font-family.md) 2 | 3 | # FontFamily 4 | 5 | `static var FontFamily: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var FontFamily: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-init-.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [<init>](./-init-.md) 2 | 3 | # <init> 4 | 5 | `styleable()` 6 | `styleable()` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-menu-group.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [MenuGroup](./-menu-group.md) 2 | 3 | # MenuGroup 4 | 5 | `static var MenuGroup: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var MenuGroup: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-menu-item.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [MenuItem](./-menu-item.md) 2 | 3 | # MenuItem 4 | 5 | `static var MenuItem: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var MenuItem: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-menu-view.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [MenuView](./-menu-view.md) 2 | 3 | # MenuView 4 | 5 | `static var MenuView: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var MenuView: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-popup-window.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [PopupWindow](./-popup-window.md) 2 | 3 | # PopupWindow 4 | 5 | `static var PopupWindow: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var PopupWindow: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-search-view.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [SearchView](./-search-view.md) 2 | 3 | # SearchView 4 | 5 | `static var SearchView: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var SearchView: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-search-view_layout.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [SearchView_layout](./-search-view_layout.md) 2 | 3 | # SearchView_layout 4 | 5 | `static var SearchView_layout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var SearchView_layout: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-spinner.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [Spinner](./-spinner.md) 2 | 3 | # Spinner 4 | 5 | `static var Spinner: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var Spinner: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-switch-compat.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [SwitchCompat](./-switch-compat.md) 2 | 3 | # SwitchCompat 4 | 5 | `static var SwitchCompat: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var SwitchCompat: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-toolbar.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [Toolbar](./-toolbar.md) 2 | 3 | # Toolbar 4 | 5 | `static var Toolbar: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var Toolbar: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-toolbar_logo.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [Toolbar_logo](./-toolbar_logo.md) 2 | 3 | # Toolbar_logo 4 | 5 | `static var Toolbar_logo: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var Toolbar_logo: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-toolbar_subtitle.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [Toolbar_subtitle](./-toolbar_subtitle.md) 2 | 3 | # Toolbar_subtitle 4 | 5 | `static var Toolbar_subtitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var Toolbar_subtitle: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-toolbar_title.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [Toolbar_title](./-toolbar_title.md) 2 | 3 | # Toolbar_title 4 | 5 | `static var Toolbar_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var Toolbar_title: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-view.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [View](./-view.md) 2 | 3 | # View 4 | 5 | `static var View: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var View: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-view_padding-end.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [View_paddingEnd](./-view_padding-end.md) 2 | 3 | # View_paddingEnd 4 | 5 | `static var View_paddingEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var View_paddingEnd: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-view_padding-start.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [View_paddingStart](./-view_padding-start.md) 2 | 3 | # View_paddingStart 4 | 5 | `static var View_paddingStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var View_paddingStart: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-view_theme.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [View_theme](./-view_theme.md) 2 | 3 | # View_theme 4 | 5 | `static var View_theme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | `static var View_theme: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/-wave-form-view.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](index.md) / [WaveFormView](./-wave-form-view.md) 2 | 3 | # WaveFormView 4 | 5 | `static var WaveFormView: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) 6 | `static var WaveFormView: `[`IntArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int-array/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-r/styleable/index.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [R](../index.md) / [styleable](./index.md) 2 | 3 | # styleable 4 | 5 | `class styleable` 6 | `class styleable` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/-c-r-e-a-t-o-r/create-from-parcel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [WaveFormData](../index.md) / [CREATOR](index.md) / [createFromParcel](./create-from-parcel.md) 2 | 3 | # createFromParcel 4 | 5 | `fun createFromParcel(parcel: Parcel): `[`WaveFormData`](../index.md) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/-c-r-e-a-t-o-r/new-array.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [WaveFormData](../index.md) / [CREATOR](index.md) / [newArray](./new-array.md) 2 | 3 | # newArray 4 | 5 | `fun newArray(size: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`): `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`WaveFormData`](../index.md)`?>` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/channel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [channel](./channel.md) 2 | 3 | # channel 4 | 5 | `val channel: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Count of channel 8 | 9 | ### Property 10 | 11 | `channel` - Count of channel -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/create-from-parcel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [createFromParcel](./create-from-parcel.md) 2 | 3 | # createFromParcel 4 | 5 | `fun createFromParcel(parcel: Parcel): `[`WaveFormData`](index.md) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/describe-contents.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [describeContents](./describe-contents.md) 2 | 3 | # describeContents 4 | 5 | `fun describeContents(): `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/duration.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [duration](./duration.md) 2 | 3 | # duration 4 | 5 | `val duration: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 6 | 7 | Duration of data in milliseconds 8 | 9 | ### Property 10 | 11 | `duration` - Duration of data in milliseconds -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/new-array.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [newArray](./new-array.md) 2 | 3 | # newArray 4 | 5 | `fun newArray(size: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`): `[`Array`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-array/index.html)`<`[`WaveFormData`](index.md)`?>` -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/sample-rate.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [sampleRate](./sample-rate.md) 2 | 3 | # sampleRate 4 | 5 | `val sampleRate: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Sample rate of data 8 | 9 | ### Property 10 | 11 | `sampleRate` - Sample rate of data -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/samples.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [samples](./samples.md) 2 | 3 | # samples 4 | 5 | `var samples: `[`ShortArray`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-short-array/index.html) 6 | 7 | Raw sample data 8 | 9 | ### Property 10 | 11 | `samples` - Raw sample data -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-data/write-to-parcel.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormData](index.md) / [writeToParcel](./write-to-parcel.md) 2 | 3 | # writeToParcel 4 | 5 | `fun writeToParcel(parcel: Parcel, flags: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html)`): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/-callback/on-play-pause.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../../index.md) / [WaveFormView](../index.md) / [Callback](index.md) / [onPlayPause](./on-play-pause.md) 2 | 3 | # onPlayPause 4 | 5 | `abstract fun onPlayPause(): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) 6 | 7 | Called when view clicked 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/-p-e-a-k-m-o-d-e_-a-v-e-r-a-g-e.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [PEAKMODE_AVERAGE](./-p-e-a-k-m-o-d-e_-a-v-e-r-a-g-e.md) 2 | 3 | # PEAKMODE_AVERAGE 4 | 5 | `const val PEAKMODE_AVERAGE: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Flag to use average in specific range 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/-p-e-a-k-m-o-d-e_-m-a-x.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [PEAKMODE_MAX](./-p-e-a-k-m-o-d-e_-m-a-x.md) 2 | 3 | # PEAKMODE_MAX 4 | 5 | `const val PEAKMODE_MAX: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Flag to use the maximum value in specific range 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/block-color-played.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [blockColorPlayed](./block-color-played.md) 2 | 3 | # blockColorPlayed 4 | 5 | `var blockColorPlayed: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Color used in played blocks 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/block-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [blockColor](./block-color.md) 2 | 3 | # blockColor 4 | 5 | `var blockColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Color used in blocks default 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/block-width.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [blockWidth](./block-width.md) 2 | 3 | # blockWidth 4 | 5 | `var blockWidth: `[`Float`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html) 6 | 7 | Width each block 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/bottom-block-scale.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [bottomBlockScale](./bottom-block-scale.md) 2 | 3 | # bottomBlockScale 4 | 5 | `var bottomBlockScale: `[`Float`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html) 6 | 7 | Scale of bottom blocks 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/callback.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [callback](./callback.md) 2 | 3 | # callback 4 | 5 | `var callback: `[`Callback`](-callback/index.md)`?` 6 | 7 | **See Also** 8 | 9 | [Callback](-callback/index.md) 10 | 11 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/controller.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [controller](./controller.md) 2 | 3 | # controller 4 | 5 | `var controller: MediaControllerCompat?` 6 | 7 | You can set a MediaController 8 | It enables to automate media control and setting position 9 | 10 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/data.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [data](./data.md) 2 | 3 | # data 4 | 5 | `var data: `[`WaveFormData`](../-wave-form-data/index.md)`?` 6 | 7 | WaveFormData show in view 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/on-draw.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [onDraw](./on-draw.md) 2 | 3 | # onDraw 4 | 5 | `protected fun onDraw(canvas: Canvas): `[`Unit`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-unit/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/on-touch-event.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [onTouchEvent](./on-touch-event.md) 2 | 3 | # onTouchEvent 4 | 5 | `fun onTouchEvent(event: MotionEvent): `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/peak-mode.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [peakMode](./peak-mode.md) 2 | 3 | # peakMode 4 | 5 | `var peakMode: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Method to detect blocks height 8 | 9 | Use [PEAKMODE_AVERAGE](-p-e-a-k-m-o-d-e_-a-v-e-r-a-g-e.md) or [PEAKMODE_MAX](-p-e-a-k-m-o-d-e_-m-a-x.md) 10 | 11 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/position.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [position](./position.md) 2 | 3 | # position 4 | 5 | `var position: `[`Long`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-long/index.html) 6 | 7 | position in milliseconds 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/sec-per-block.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [secPerBlock](./sec-per-block.md) 2 | 3 | # secPerBlock 4 | 5 | `var secPerBlock: `[`Float`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html) 6 | 7 | Duration which a block represent 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/show-time-text.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [showTimeText](./show-time-text.md) 2 | 3 | # showTimeText 4 | 5 | `var showTimeText: `[`Boolean`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-boolean/index.html) 6 | 7 | If you want to hide, set false 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/text-bg-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [textBgColor](./text-bg-color.md) 2 | 3 | # textBgColor 4 | 5 | `var textBgColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Color used in the text background 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/text-color.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [textColor](./text-color.md) 2 | 3 | # textColor 4 | 5 | `var textColor: `[`Int`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-int/index.html) 6 | 7 | Color used in the text 8 | 9 | -------------------------------------------------------------------------------- /waveformview/build/markdown/space.siy.waveformview/-wave-form-view/top-block-scale.md: -------------------------------------------------------------------------------- 1 | [space.siy.waveformview](../index.md) / [WaveFormView](index.md) / [topBlockScale](./top-block-scale.md) 2 | 3 | # topBlockScale 4 | 5 | `var topBlockScale: `[`Float`](https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/-float/index.html) 6 | 7 | Scale of top blocks 8 | 9 | -------------------------------------------------------------------------------- /waveformview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /waveformview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | WaveFormView 3 | 4 | --------------------------------------------------------------------------------