Questions tagged [android-bottomsheetdialog]
205 questions
0
votes
0 answers
Problem with RecyclerView in BottomsheetFragment
i am trying to create a bottom sheet fragment with a recycler view. But i am getting an error in recycler view as adapter not set skipping layout
I am positive that i set the adapter for recycler view.I do not seem to understand the…

Pavan Santhosh
- 72
- 1
- 10
0
votes
0 answers
android - listDivider not showing in BottomSheet
I have implemented in my app a BottomSheetDrawer as a navigation menu.
I have separated the menu items accordingly with a group:
0
votes
2 answers
android - Start intent from a BottomSheet fragment
Im currently working on an app, that has a BottomSheet as a menu. The objective of this menu is to start intents depending on the item selected. I tried starting an Intent like below, however Android Studio says:
None of the following functions can…

Meltix
- 436
- 6
- 22
0
votes
1 answer
Disable BottomSheetDialogFragment from showing
I am having two Bottom Sheet Dialog Fragment layouts which I have included in a CoordinatorLayout. The CoordinatorLayout has a RecyclerView whose items show one Bottom Sheet dialog fragment upon being clicked. The first bottom sheet dialog fragment…

Emmanuel Njorodongo
- 1,004
- 17
- 35
0
votes
1 answer
BottomSheetDialogFragment behaviour when showing keyboard
I am using a BottomSheetDialogFragment which contains:
- A RecyclerView with a list of comments made by users
- A EditText at the bottom, where users can write a new comment and post it
When the user taps on the EditText, the keyboard shows up from…

Gio
- 190
- 2
- 11
0
votes
0 answers
Android Bottomsheet Dialog on List Item Click
I am displaying some data in a recycler listview based on retrofit post back data.It is working,Now I am trying to show a Bottom sheet dialog on Listview ItemClick.For this I have implemented item click event in my onBindViewHolder in DataAdapter…

roy
- 131
- 1
- 10
0
votes
1 answer
Open Bottom Sheet automatically without using a Button
I'm doing this project where I want to start an application ( Main activity ) with a bottom sheet as instruction to know how to use some functions, while the main activity is open at the background.
I've known how to transition between a bottom…

Yahya Odeh
- 39
- 4
0
votes
1 answer
Inflating RecyclerView inside BottomSheetDialog
I'm having a problem inflating my recyclerView inside a BottomSheetDialog using activites.
I keep getting the error:
java.lang.IllegalStateException: recycler_provider must not be null
my method to open the dialog is:
private fun…

Diogo Sequeira
- 126
- 1
- 9
0
votes
1 answer
Get the list of apps capable of handling the photo upload intent to display in a View (bottom sheet view,dialog,dialog fragment)
I'm trying to get the list of all apps installed on a phone capable of handling the photo upload intent,
I would like to be able to get access to the list of apps to display them in a View in my activity
please help!!
user8950770
0
votes
2 answers
BottomSheetDialogFragment header layout background transparent not working
I have created a BottomSheetFragment.
Everything is fine except the header of the bottom sheet which is not getting transparent.Is there any way to make the background transparent as like as normal bottomsheetFragment works.
I tried by setting the…

Ariful Haque
- 183
- 1
- 9
0
votes
0 answers
Recycler view in Constraint Layout does not show last item properly
I have a xml in which the recycler view can't show the last item of the list.
I use this layout file for a BottomSheetDialogFragment:

Mehdi Amirafshar
- 13
- 5
0
votes
3 answers
Android Spinner is Returning NullPointerException in Botttomsheet Dialog
I am trying to Return a spinner Value inside my BottomSheet Dialog.But It is returing NullPointerException always.Below is my String.XML File
- item1
- item2
This is my…

Mithu
- 665
- 1
- 8
- 38
0
votes
0 answers
How to show previously checked items when user opens a bottom sheet dialog again?
I have a bottom sheet dialog in which a listview with checkboxes are there. Now I want to filter some data based on checked items from that listview. I'm storing the ids of checked items in listview but when i open the bottom sheet dialog again the…

viru
- 1
- 4
0
votes
0 answers
How to send data from fragments using viewpager which is in bottomsheet dialog fragment?
I'm getting the response through OK-HTTP request by calling API which contains some students data, but I'm not able to send that data from my fragment which is in view pager and that view pager with tab layout in bottom sheet dialog fragment
public…

viru
- 1
- 4
0
votes
1 answer
How to add animation in bottomsheet when changes its state
My app contain a bottomsheeet and i am using following methods to change its state
public void toggleBottomSheet() {
if (sheetBehavior.getState() != BottomSheetBehavior.STATE_EXPANDED) {
…

Dheeraj Singh Bhadoria
- 327
- 4
- 14