Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
Someone can help me to scroll CoordinatorLayout using ScrollView instead of
RecyclerView?
it's not working without RecyclerView.
See This Picture
If you mean you want to replace the RecyclerView with a ScrollView, use a NestedScrollView instead.
Related
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 days ago.
Improve this question
My code works strangely, it should update document in the room and the firebase. For some reason, instead of setting himself up, he set the last item in the RecyclerView
(https://i.stack.imgur.com/tJQbH.png)
I saw this code on the internet and just tried to copy it
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 2 years ago.
Improve this question
how to apply curve in the BottonAppBar, just for this button?
I want to do this:
My code:
You can achieve it through this plugin.
Just go through the plugin documentation it's quite simple.
https://pub.dev/packages/convex_bottom_bar
You can try this one for your desired bottom bar. https://pub.dev/packages/curved_navigation_bar
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 6 years ago.
Improve this question
i'am following this tutorial
http://www.androhub.com/android-image-slider-using-viewpager/
to make an image slider but it only works with activity how can i do it the same way in Fragment
Change this line in Fragment from
mPager.setAdapter(new SlidingImage_Adapter(MainActivity.this,ImagesArray));
to
mPager.setAdapter(new SlidingImage_Adapter(getActivity(),ImagesArray));
Closed. This question needs to be more focused. It is not currently accepting answers.
Want to improve this question? Update the question so it focuses on one problem only by editing this post.
Closed 6 years ago.
Improve this question
I am new at Android development and I need to implement a recycler view that can expand but when I searched on google, I get nothing. There are two or three libraries which are present on github for this purpose but neither of which I understand. So, after two days of searching on expandable recycler view, output is null. ANy help will be greatly appreciated.
I think you might Looking for this.
Follow below Link.
https://github.com/mrzulkarnine/RecyclerView-With-Expandable-Item-Demo
Do Modification as you required in your Recycler View items.
EDIT 1
Follow this link.
https://github.com/bignerdranch/expandable-recycler-view
Hope it will gives what you want.
Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I would like create an application with a list of podcast with an UI like Google Music, but I do not know how to place items horizontally beside the other podcasts rather than below.
I use a listView and a cardView.
Well, GridView or a RecyclerView with a GridLayoutManager can do the trick.