All Projects → kishan2612 → Material-Backdrop-Android

kishan2612 / Material-Backdrop-Android

Licence: MIT license
Material Backdrop

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to Material-Backdrop-Android

media-picker
Easy customizable picker for all your needs in Android application
Stars: ✭ 167 (+57.55%)
Mutual labels:  material-ui, android-development, android-architecture, material-components, android-ui
Mediapicker
Easy customizable picker for all your needs in Android application
Stars: ✭ 105 (-0.94%)
Mutual labels:  material-ui, android-development, android-architecture, material-components, android-ui
Ibackdrop
A library to simply use Backdrop in your project (make it easy). Read more ->
Stars: ✭ 137 (+29.25%)
Mutual labels:  material-ui, android-development, android-architecture, material-components, android-ui
Materialdrawer
The flexible, easy to use, all in one drawer library for your Android project. Now brand new with material 2 design.
Stars: ✭ 11,498 (+10747.17%)
Mutual labels:  material-ui, android-development, material-components, android-ui, navigation-drawer
Slidetoact
A simple 'Slide to Unlock' Material widget for Android, written in Kotlin 📱🎨🦄
Stars: ✭ 783 (+638.68%)
Mutual labels:  material-ui, android-development, material-components, android-ui
Bottomsheet
BottomSheet dialog library for Android
Stars: ✭ 219 (+106.6%)
Mutual labels:  material-ui, android-development, material-components, android-ui
Awesome Android Complete Reference
Awesome Android references for everything like best practices, performance optimization, etc.
Stars: ✭ 2,701 (+2448.11%)
Mutual labels:  android-development, android-architecture, android-ui
Materialdrawerkt
A Kotlin DSL wrapper around the mikepenz/MaterialDrawer library.
Stars: ✭ 508 (+379.25%)
Mutual labels:  material-ui, android-ui, navigation-drawer
Nytimes App
🗽 A Simple Demonstration of the New York Times App 📱 using Jsoup web crawler with MVVM Architecture 🔥
Stars: ✭ 246 (+132.08%)
Mutual labels:  material-ui, android-development, android-architecture
Alerter
An Android Alerting Library
Stars: ✭ 5,213 (+4817.92%)
Mutual labels:  material-ui, android-development, android-ui
Cameraxdemo
A sample camera app with CameraX API from Android Jetpack
Stars: ✭ 112 (+5.66%)
Mutual labels:  android-development, android-architecture, android-ui
Android Iconics
Android-Iconics - Use any icon font, or vector (.svg) as drawable in your application.
Stars: ✭ 4,916 (+4537.74%)
Mutual labels:  material-ui, android-development, material-components
Datingapp
Dating UI kit is used for online meet up with girls and boys . The screen contains more than 30 icons and most of all required elements required to design an application like this. The XML and JAVA files contains comments at each and every point for easy understanding. Everything was made with a detail oriented style and followed by today's web trends. Clean coded & Layers are well-organized, carefully named, and grouped.
Stars: ✭ 97 (-8.49%)
Mutual labels:  material-ui, android-development, android-ui
Modern Android Development
Modern Android Development tools & key points
Stars: ✭ 219 (+106.6%)
Mutual labels:  android-development, android-architecture, android-ui
Notzz App
📝 A Simple Note-Taking App built to demonstrate the use of Modern Android development tools - (Kotlin, Coroutines, State Flow, Hilt-Dependency Injection, Jetpack DataStore, Architecture Components, MVVM, Room, Material Design Components).
Stars: ✭ 158 (+49.06%)
Mutual labels:  android-development, android-architecture, android-ui
Android Inappbilling
A sample which uses Google's Play Billing Library and it does InApp Purchases and Subscriptions.
Stars: ✭ 114 (+7.55%)
Mutual labels:  android-development, android-architecture, android-ui
Android Arsenal.com
Source to android-arsenal.herokuapp.com
Stars: ✭ 541 (+410.38%)
Mutual labels:  android-development, android-architecture, android-ui
Androidkex
Extensions for Kotlin. Use the power of Kotlin to make your code smaller and beautiful.
Stars: ✭ 35 (-66.98%)
Mutual labels:  android-development, android-architecture, android-ui
Fancyshowcaseview
An easy-to-use customisable show case view with circular reveal animation.
Stars: ✭ 1,662 (+1467.92%)
Mutual labels:  material-ui, android-development, android-ui
github-commit-browser
A blog companion sample project that demonstrates saving UI state after process death on Android utilizing the community established 3rd party libraries
Stars: ✭ 55 (-48.11%)
Mutual labels:  android-development, android-architecture, android-ui

Material-Backdrop-Android

This library is created based on Backdrop component from material design.Backdrop

alt text alt text

Usage

  1. Include repository
allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
  1. Include project as local library
dependencies {
	        implementation 'com.github.kishan2612:Material-Backdrop-Android:v1.1.0'
	}
  1. Include the widget in your layout

 <com.evolve.backdroplibrary.BackdropContainer
       android:layout_width="match_parent"
       android:layout_height="match_parent"
       android:id="@+id/backdropcontainer"
       app:menuIcon="@drawable/ic_menu_24px"
       app:closeIcon="@drawable/ic_close_24px"
       app:duration="500">

       <include layout="@layout/backlayer"/>
       <include layout="@layout/frontlayer"/>


   </com.evolve.backdroplibrary.BackdropContainer>

The container must contain only two child or it may throw an Exception.

The developer can customize the backlayer and frontlayer of their choice. Use public methods to show and hide the backlayer.

  1. In onCreate method
 
 backdropContainer =(BackdropContainer)findViewById(R.id.backdropcontainer);

        backdropContainer.attachToolbar(toolbar)
                .dropInterpolator(new LinearInterpolator())
                .dropHeight(height)
                .build();

Customization

app:menuIcon="@drawable/ic_menu_24px" - You can use your own icon or app logo

app:closeIcon="@drawable/ic_close_24px" - You can use your own icon or app logo

app:duration="500" - default duration is 1000ms if duration is not specified

dropInterpolator(new LinearInterpolator()) - You can use own interpolator

dropHeight(height) - The height is sneek height of front layer.(Dp) eg :

int height= this.getResources().getDimensionPixelSize(R.dimen.sneek_height);

Public Methods

backdropContainer.showBackview();
backdropContainer.closeBackview();

Compatabiliy

Api 16+

ChangeLog

V1.1 :

  crash fixed.

License

MIT License

Copyright (c) 2018 kishan V

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].