ModalBottomSheetDialogFragment Java port
Modal bottom sheet dialog based on the Material Guidelines
Add it in your root build.gradle at the end of repositories:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
Add the dependency
dependencies {
implementation 'com.github.procks:ModalBottomSheetDialogFragment:1.0.2.1'
}
ModalBottomSheetDialogFragment
s are typically inflated via a menu item resource. The menu item resource defines the title, icon, and ID is of each Option
. The menu item resource might looks something like this:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android">
<item
android:id="@+id/action_favorite"
android:icon="@drawable/ic_favorite_black_24dp"
android:title="Favorite" />
<item
android:id="@+id/action_share"
android:icon="@drawable/ic_share_black_24dp"
android:title="Share" />
<item
android:id="@+id/action_edit"
android:icon="@drawable/ic_edit_black_24dp"
android:title="Edit" />
</menu>
Use the builder to create and show the bottom sheet dialog:
new ModalBottomSheetDialogFragment.Builder()
.add(R.menu.options)
.show(getSupportFragmentManager(), "options");
Make sure that your activity or fragment implements ModalBottomSheetDialogFragment.Listener
. For example:
@Override
public void onModalOptionSelected(String tag, @NonNull Option option) {
Snackbar.make(findViewById(R.id.root), String.format(Locale.ROOT,
"Selected option %s from tag %s", option.title, tag), Snackbar.LENGTH_SHORT).show();
}
You can also customize things to your liking:
new ModalBottomSheetDialogFragment.Builder()
.add(R.menu.option_lots)
//custom option, without needing menu XML
.add(OptionRequest(123, "Custom", R.drawable.ic_bluetooth_black_24dp))
.layout(R.layout.item_custom)
.header("Neat")
.columns(3)
.show(getSupportFragmentManager(), "custom");
See the sample app for more.
Copyright 2018 Commit 451
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.