Repository: sergivonavi/MaterialBanner Branch: master Commit: 28826ee19253 Files: 69 Total size: 155.6 KB Directory structure: gitextract_a3vb64fo/ ├── .gitignore ├── LICENSE ├── README.md ├── app/ │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── assets/ │ │ ├── fonts/ │ │ │ └── LICENSE.txt │ │ └── pics/ │ │ └── CREDITS.txt │ ├── java/ │ │ └── com/ │ │ └── sergivonavi/ │ │ └── materialbanner/ │ │ └── app/ │ │ ├── AboutActivity.kt │ │ ├── App.kt │ │ ├── MainActivity.kt │ │ ├── activities/ │ │ │ ├── BaseSampleActivity.kt │ │ │ ├── FromCodeActivity.kt │ │ │ ├── FromLayoutActivity.kt │ │ │ ├── GlobalStyleActivity.kt │ │ │ ├── ShowcaseActivity.kt │ │ │ ├── StyledBannerActivity.kt │ │ │ ├── WithPaddingActivity.kt │ │ │ └── adapter/ │ │ │ ├── ItemViewHolder.kt │ │ │ ├── ItemsAdapter.kt │ │ │ └── SampleData.kt │ │ └── utils/ │ │ └── SnackbarHelper.kt │ └── res/ │ ├── drawable/ │ │ ├── ic_banner_circle_40dp.xml │ │ ├── ic_launcher_background.xml │ │ └── ic_signal_wifi_off_40dp.xml │ ├── drawable-v24/ │ │ └── ic_launcher_foreground.xml │ ├── layout/ │ │ ├── activity_about.xml │ │ ├── activity_main.xml │ │ ├── item_list.xml │ │ ├── sample_activity_from_code.xml │ │ ├── sample_activity_from_layout.xml │ │ ├── sample_activity_global_style.xml │ │ ├── sample_activity_showcase.xml │ │ ├── sample_activity_styled_banner.xml │ │ └── sample_activity_with_padding.xml │ ├── menu/ │ │ ├── main.xml │ │ └── sample.xml │ ├── mipmap-anydpi-v26/ │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── values/ │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── values-sw720dp/ │ └── dimens.xml ├── build.gradle ├── gradle/ │ └── wrapper/ │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradle-release.gradle.ignore ├── gradle.properties ├── gradlew ├── gradlew.bat ├── library/ │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src/ │ └── main/ │ ├── AndroidManifest.xml │ ├── java/ │ │ └── com/ │ │ └── sergivonavi/ │ │ └── materialbanner/ │ │ ├── Banner.kt │ │ ├── BannerInterface.kt │ │ └── widget/ │ │ ├── ButtonsContainer.kt │ │ └── MessageView.kt │ └── res/ │ ├── values/ │ │ ├── attrs.xml │ │ ├── booleans.xml │ │ ├── dimens.xml │ │ ├── ids.xml │ │ ├── library_materialbanner_strings.xml │ │ └── styles.xml │ └── values-sw720dp/ │ ├── booleans.xml │ └── dimens.xml └── settings.gradle ================================================ FILE CONTENTS ================================================ ================================================ FILE: .gitignore ================================================ ### Android ### # Built application files *.apk *.ap_ *.aab # Files for the ART/Dalvik VM *.dex # Java class files *.class # Generated files bin/ gen/ out/ # Gradle files .gradle .gradle/ build/ /*/build/ # Local configuration file (sdk path, etc) local.properties # Log Files *.log # Android Studio captures folder captures/ # Android Studio Navigation editor temp files .navigation/ #IntelliJ files *.iml .idea/ /_misc /_sign # Keystore files *.jks *.keystore # External native build folder .externalNativeBuild # OS-specific files .DS_Store ================================================ FILE: LICENSE ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright 2023 Sergey Ivanov Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: README.md ================================================ # MaterialBanner [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) [![Android Arsenal](https://img.shields.io/badge/Android%20Arsenal-MaterialBanner-brightgreen.svg?style=flat)](https://android-arsenal.com/details/1/7605) > A banner displays a prominent message and related optional actions. MaterialBanner is a library that provides an implementation of the banner widget from the Material design. [Banners - Material Design](https://material.io/design/components/banners.html). ![MaterialBanner animation](SCREENSHOTS/materialbanner_animation.gif) # Preview ![MaterialBanner](SCREENSHOTS/screenshot.jpg) You can download the sample app here. # Setup ## Legacy (version 1.2.0): Add the gradle dependency ``` jcenter { content { includeGroup "com.sergivonavi" } } ``` ``` implementation "com.sergivonavi:materialbanner:1.2.0" ``` ## Latest (version 2.0.0) Download sources and add the MaterialBanner library to your project. ## Check your theme In order to use this banner your app theme should inherit from a Material Components theme. More about that: [Getting Started - Material Components for Android](https://material.io/develop/android/docs/getting-started/). ## Create your banner ### In your `layout.xml`: ``` ``` then in your Activity/Fragment: ``` Banner banner = findViewById(R.id.banner); banner.setLeftButtonListener(new BannerInterface.OnClickListener() { @Override public void onClick(BannerInterface banner) { // do something } }); banner.setRightButtonListener(new BannerInterface.OnClickListener() { @Override public void onClick(BannerInterface banner) { // do something } }); // show when needed banner.show(); // and later on banner.dismiss(); ``` ### From the code using [Builder](https://github.com/sergivonavi/MaterialBanner/blob/7b9c7776e90c18bdde33c94c78d4652442c078eb/library/src/main/java/com/sergivonavi/materialbanner/Banner.java#L1094): ``` Banner banner = new Banner.Builder(context).setParent(rootView) .setIcon(R.drawable.ic_signal_wifi_off_40dp) .setMessage("You have lost connection to the Internet. This app is offline.") .setLeftButton("Dismiss", new BannerInterface.OnClickListener() { @Override public void onClick(BannerInterface banner) { banner.dismiss(); } }) .setRightButton("Turn on wifi", new BannerInterface.OnClickListener() { @Override public void onClick(BannerInterface banner) { // do something } }) .create(); // or show() if you want to show the Banner immediately ... banner.show(); ``` __DO NOT forget__ to call _Builder#setParent(...)_. Pass here a ViewGroup that will be a parent for your banner. Or you can use: * _setParent(ViewGroup, int)_ to specify the index of the banner in ViewGroup's hierarchy; * _setParent(ViewGroup, int, ViewGroup.LayoutParams)_ to change the default LayoutParams. ### Note You don't need to set both left and right buttons: you can set one of them (doesn't matter which one). # Additional setup ## Add listeners If you want to know when your banner was shown or dismissed you can set appropriate listeners from [BannerInterface](library/src/main/java/com/sergivonavi/materialbanner/BannerInterface.java): ``` banner.setOnDismissListener(new BannerInterface.OnDismissListener() { @Override public void onDismiss() { // do something } }) banner.setOnShowListener(new BannerInterface.OnShowListener() { @Override public void onShow() { // do something } }) ``` Or chain these calls to the Builder: ``` new Banner.Builder(context) ... .setOnDismissListener(new BannerInterface.OnDismissListener() { @Override public void onDismiss() { // do something } }) .setOnShowListener(new BannerInterface.OnShowListener() { @Override public void onShow() { // do something } }) ... ``` # Styling For the style guidelines read [Banners - theming](https://material.io/design/components/banners.html#theming). ## Changing style of a single banner ### In your `layout.xml` Available attributes: * backgroundColor * iconTint * messageTextAppearance * messageTextColor * buttonsTextAppearance * buttonsTextColor * buttonsRippleColor * lineColor * lineOpacity Usage: ``` ``` ### From the code Available methods: * setBackgroundColor * setIconTintColor * setMessageTextAppearance * setMessageTextColor * setButtonsTextAppearance * setButtonsTextColor * setButtonsRippleColor * setLineColor * setLineOpacity Usage: ``` banner.setBackgroundColor(ContextCompat.getColor(this, R.color.custom_background)); banner.setIconTintColor(R.color.custom_icon_tint); banner.setMessageTextAppearance(R.style.BannerMessageTextAppearance); banner.setMessageTextColor(R.color.custom_message_text); banner.setButtonsTextAppearance(R.style.BannerButtonsTextAppearance); banner.setButtonsTextColor(R.color.custom_buttons_text); banner.setButtonsRippleColor(R.color.custom_buttons_ripple); banner.setLineColor(R.color.custom_line); banner.setLineOpacity(0.8f); ``` ## Global style You can change style of your banner globally. Add _bannerStyle_ attribute to your theme: ``` ``` And create your custom style (you can inherit from the provided default banner styles): ``` ``` ## Change padding of the banner's content to fit your layout If you want to do something like this: ![Banner in wide layout](https://storage.googleapis.com/spec-host-backup/mio-design%2Fassets%2F170Vf6civyniR4ROILotY0usRMAB0lgSL%2Fbanners-placement-desktop.png) You can change the content's padding using provided attributes or methods: * attr: contentPaddingStart * attr: contentPaddingEnd * setContentPaddingStart * setContentPaddingEnd But account for the default padding: * the end padding is always __16dp__ (a distance between the button's last character and the end edge of a banner) * the start padding depends on a user's device On mobile: * the start padding is always __16dp__ regardless if icon set or not On tablet (sw720dp): * the start padding depends whether icon set or not * if set then __16dp__ * otherwise __24dp__ See [Banners - specs](https://material.io/design/components/banners.html#specs) for visualisation. ### Example 1. If the content of your screen has __32dp__ margin from both sides and you set an icon then you can set __16dp__ padding for your banner: ``` app:contentPaddingEnd="16dp" app:contentPaddingStart="16dp" or banner.setContentPaddingStart(R.dimen.banner_content_padding); banner.setContentPaddingEnd(R.dimen.banner_content_padding); ``` 2. Everything is the same but no icon: * for mobile devices - __16dp__ padding from both sides; * for tablets * __16dp__ end padding * __8dp__ start padding (32dp margin - 24dp margin of the message) See the sample app for example. ### Note __DO NOT__ set padding directly using the default padding attributes or methods. It will break the appearance of the widget. # License Copyright 2023 Sergey Ivanov Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: app/.gitignore ================================================ /build ================================================ FILE: app/build.gradle ================================================ plugins { id("com.android.application") id("org.jetbrains.kotlin.android") } apply from: "../_sign/signing.gradle" android { namespace "com.sergivonavi.materialbanner.app" compileSdk setup.compileSdk defaultConfig { applicationId "com.sergivonavi.materialbanner.app" minSdk setup.minSdk targetSdk setup.targetSdk versionCode release.appVersionCode versionName release.appVersionName vectorDrawables.useSupportLibrary = true resValue("string", "materialbanner_app_version", "${versionName}") } buildTypes { release { minifyEnabled = false proguardFiles(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro") signingConfig signingConfigs.release } } compileOptions { sourceCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8 } lint { abortOnError = false } } dependencies { implementation project(":library") implementation("org.jetbrains.kotlin:kotlin-stdlib:${versions.kotlin}") implementation("androidx.appcompat:appcompat:1.6.0") implementation("androidx.cardview:cardview:1.0.0") implementation("androidx.core:core-ktx:1.9.0") implementation("androidx.recyclerview:recyclerview:1.2.1") implementation("com.google.android.material:material:${versions.material}") implementation("com.squareup.picasso:picasso:2.71828") } ================================================ FILE: app/proguard-rules.pro ================================================ # Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} # Uncomment this to preserve the line number information for # debugging stack traces. #-keepattributes SourceFile,LineNumberTable # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile -keepclasseswithmembers class **.R$* { public static final int define_*; } ================================================ FILE: app/src/main/AndroidManifest.xml ================================================ ================================================ FILE: app/src/main/assets/fonts/LICENSE.txt ================================================ Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. ================================================ FILE: app/src/main/assets/pics/CREDITS.txt ================================================ Photo by Mike Meeks on Unsplash: https://unsplash.com/photos/zk-fclJdGas Photo by Alireza Etemadi on Unsplash: https://unsplash.com/photos/qrDbj7OV2EU Photo by Artur Rutkowski on Unsplash: https://unsplash.com/photos/-Ps6CdiazxI Photo by Karly Gomez on Unsplash: https://unsplash.com/photos/_EqjV7bHBB4 Photo by Monika Grabkowska on Unsplash: https://unsplash.com/photos/HAf-cOayGiQ Photo by Conor Luddy on Unsplash: https://unsplash.com/photos/mKaszdVnteY Photo by Alex Loup on Unsplash: https://unsplash.com/photos/aX_ljOOyWJY Photo by Alexandra Gornago on Unsplash: https://unsplash.com/photos/_B7shfNUXEA Photo by Reuben Mcfeeters on Unsplash: https://unsplash.com/photos/qnCzQRAoIr4 Photo by Brina Blum on Unsplash: https://unsplash.com/photos/surQ2mkZNxw ================================================ FILE: app/src/main/java/com/sergivonavi/materialbanner/app/AboutActivity.kt ================================================ package com.sergivonavi.materialbanner.app import android.os.Bundle import android.text.Html import android.widget.TextView import androidx.appcompat.app.AppCompatActivity import androidx.core.text.HtmlCompat class AboutActivity : AppCompatActivity() { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_about) val description = findViewById(R.id.description) description.text = HtmlCompat.fromHtml( getString(com.sergivonavi.materialbanner.R.string.library_MaterialBanner_libraryDescription), HtmlCompat.FROM_HTML_MODE_LEGACY ) val appVersion = findViewById(R.id.version_app) appVersion.text = String.format( getString(R.string.about_app_version), getString(R.string.materialbanner_app_version) ) val libVersion = findViewById(R.id.version_lib) libVersion.text = String.format( getString(R.string.about_lib_version), getString(com.sergivonavi.materialbanner.R.string.materialbanner_lib_version) ) } } ================================================ FILE: app/src/main/java/com/sergivonavi/materialbanner/app/App.kt ================================================ package com.sergivonavi.materialbanner.app import android.app.Application import androidx.appcompat.app.AppCompatDelegate class App : Application() { init { AppCompatDelegate.setCompatVectorFromResourcesEnabled(true) } } ================================================ FILE: app/src/main/java/com/sergivonavi/materialbanner/app/MainActivity.kt ================================================ package com.sergivonavi.materialbanner.app import android.content.Intent import android.os.Bundle import android.view.Menu import android.view.MenuItem import android.view.View import android.widget.Button import androidx.appcompat.app.AppCompatActivity import com.sergivonavi.materialbanner.app.activities.* class MainActivity : AppCompatActivity(), View.OnClickListener { override fun onCreate(savedInstanceState: Bundle?) { super.onCreate(savedInstanceState) setContentView(R.layout.activity_main) val btn1 = findViewById