Android library designed to enrich your application with the beautiful stutter-free Material Design Bottom Sheets
BottomSheets will help you make your application more appealing to your end users with its sleek stutter-free implementation of the Material Bottom Sheets.
jcenter()
repository to your top-level build.gradle
file.buildscript {
//...
repositories {
//...
jcenter()
}
//...
}
ext {
//...
bottomSheetsLibraryVersion = "1.0.0"
}
dependencies {
//...
implementation "com.arthurivanets.bottomsheet:bottomsheets-core:1.0.0"
}
gradle.properties
file.//...
android.enableJetifier=true
android.useAndroidX=true
//....
compileSdkVersion
in the module-level build.gradle
file to 28+.//...
android {
//...
compileSdkVersion 28
//...
}
//...
com.android.support.appcompat.*
dependency to the new androidx.appcompat.*
alternative.//...
dependencies {
//...
implementation "androidx.appcompat:appcompat:1.0.2"
//...
}
//...
The library is comprised of 3 modules, namely:
bottomsheets-core
- core functionality (Required)bottomsheets-sheets
- concrete implementations of the common bottom sheet types (Optional)bottomsheets-ktx
- common extensions and utils (Optional)The first module - bottomsheets-core
- is a base module the other modules depend on, it is the starting point for all of your custom bottom sheet implementations and is a required module. This module provides you with the base classes required for the bottom sheet implementation, such as the BaseBottomSheet.java
which should be extended by your custom implementations of the bottom sheet and BottomSheet.java
contract which exposes its supported public APIs, here you will also find the Config.java
class which will help you customize the bottom sheet.
The second module - bottomsheets-sheets
- is an optional module which includes the implementations of the most common bottom sheet types. Here you will find the ActionPickerBottomSheet.java
, CustomActionPickerBottomSheet.java
, as well as the coresponding configuration class - Config.java
. This module depends on the bottomsheets-core
and the Adapster
library.
The third and last module - bottomsheets-ktx
- is a collection of the extensions and general utils. Here you'll be able to find the BottomSheetsExtensions.kt
which will simplify the creation of the common bottom sheet types in your Activities and Fragments. This module depends on the bottomsheets-core
, bottomsheets-sheets
and the Adapster
library.
IMPORTANT: In order to prevent the visual inconsistencies which might be caused by certain UI elements of the Application Theme, it is recommended that you specify the Application/Activity Theme without the Action Bar (any variant of the Theme.NoActionBar
will suffice). You might also want to make your Status Bar translucent for more immersive experience.
In order to implement a basic custom bottom sheet you need to follow three simple steps:
1) Create a new class and extend it from the BaseBottomSheet.java
.
2) Provide the custom content view for your bottom sheet in the onCreateSheetContentView(...)
.
3) Use the created bottom sheet in your Activity/Fragment.
So, let's create a custom bottom sheet class - SimpleCustomBottomSheet
and provide our own content view:
````kotlin class SimpleCustomBottomSheet( hostActivity : Activity, config : BaseConfig = Config.Builder(hostActivity).build() ) : BaseBottomSheet(hostActivity, config) { override fun onCreateSheetContentView(context : Context) : View { return LayoutInflater.from(context).inflate( R.layout.view_simple_custom_bottom_sheet, this, false ) } } ````
````java public class SimpleCustomBottomSheet extends BaseBottomSheet { public SimpleCustomBottomSheet(@NonNull Activity hostActivity) { this(hostActivity, new Config.Builder(hostActivity).build()); } public SimpleCustomBottomSheet(@NonNull Activity hostActivity, @NonNull BaseConfig config) { super(hostActivity, config); } @NonNull @Override public final View onCreateSheetContentView(@NonNull Context context) { return LayoutInflater.from(context).inflate( R.layout.view_simple_custom_bottom_sheet, this, false ); } } ````
````kotlin class MainActivity : AppCompatActivity() { private var bottomSheet : BaseBottomSheet? = null private fun showCustomBottomSheet() { //... bottomSheet = SimpleCustomBottomSheet(this).also(BottomSheet::show) } } ````
````java public class MainActivity extends AppCompatActivity { private BottomSheet bottomSheet; private void showCustomBottomSheet() { //... bottomSheet = new SimpleCustomBottomSheet(this); bottomSheet.show(); } } ````
````kotlin class MainActivity : AppCompatActivity() { private var bottomSheet : BottomSheet? = null private fun showActionsBottomSheet() { bottomSheet = showActionPickerBottomSheet( options = getActionOptions(), onItemSelectedListener = OnItemSelectedListener { // do something... } ) } fun getActionOptions() : List
````java public class MainActivity extends AppCompatActivity { private BottomSheet bottomSheet; private void showActionsBottomSheet() { bottomSheet = BottomSheetsUtils.showActionPickerBottomSheet( this, getActionOptions(), new OnItemSelectedListener
````kotlin class MainActivity : AppCompatActivity() { private var bottomSheet : BottomSheet? = null private fun showActionsBottomSheet() { bottomSheet = ActionPickerBottomSheet.init( this, getActionOptions().map(::ActionItem), Config.Builder(this).build() ) bottomSheet.setOnItemSelectedListener { // do something... } bottomSheet.show() } fun getActionOptions() : List
````java
public class MainActivity extends AppCompatActivity {
private BottomSheet bottomSheet;
private void showActionsBottomSheet() {
bottomSheet = ActionPickerBottomSheet.init(
this,
getActionOptions(),
new Config.Builder(this).build()
);
bottomSheet.setOnItemSelectedListener(new OnItemSelectedListener
Reminder | |
Owly |