BottomSheet dialogs library for Android with material design concept. Bottom sheets slide up from the bottom of the screen to reveal more content.
dependencies {
implementation 'org.michaelbel:bottomsheet:1.2.3'
}
BottomSheet.Builder builder = new BottomSheet.Builder(context);
builder
.setTitle(CharSequence title)
.setItems(CharSequence[] items, Drawable[] icons, DialogInterface.OnClickListener listener)
.setMenu(@MenuRes int menuResId, DialogInterface.OnClickListener listener)
.setView(@LayoutRes int layoutResId)
.setContentType(@BottomSheet.Type int type)
.setDarkTheme(boolean darkTheme)
.setFullWidth(boolean fullWidth)
.setCellHeight(int cellHeightDp)
.setDividers(boolean dividers)
.setWindowDimming(@Range(from = 0, to = 255) int windowDimming)
.setTitleMultiline(boolean multiline)
.setFabBehavior(FloatingActionButton button)
.setFabBehavior(FloatingActionButton button, @BottomSheet.FabBehavior int fabBehavior)
.setBackgroundColor(@ColorInt int color)
.setBackgroundColorRes(@ColorRes int color)
.setTitleTextColor(@ColorInt int color)
.setTitleTextColorRes(@ColorRes int color)
.setItemTextColor(@ColorInt int color)
.setItemTextColorRes(@ColorRes int color)
.setIconColor(@ColorInt int color)
.setIconColorRes(@ColorRes int color)
.setItemSelector(int selector);
.setOnShowListener(new DialogInterface.OnShowListener() {
@Override
public void onShow(DialogInterface dialog) {
}
});
.setOnDismissListener(new DialogInterface.OnDismissListener() {
@Override
public void onDismiss(DialogInterface dialog) {
}
});
.setCallback(new BottomSheetCallback() {
@Override
public void onShown() {
}
@Override
public void onDismissed() {
}
})
.show();
For all information check BottomSheet Wiki.
BottomSheet is deprecated. No more development will be taking place. Existing version will continue to function. Please, use BottomSheetDialogFragment from Google instead. Thanks!
Copyright 2016 Michael Bely
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.