I would like to achieve something like the image below.
But I don't have any idea how to do it.
Notice that the Menu Burger, must implement a click that perform automatically the swipe.
Furthermore, I would like that the items (the Checkmark, the Pen and the Cross) can be clickable.
Note: I prefer if it's a solution with a RecyclerView
Any advices, suggestions or libraries are welcomed.
Related
I need to design my Recycler View as follows and I need ideas to go around with it.
I have some ideas regarding it. I know I would probably need to override a LayoutManager, but I have no idea how to approach that. So I just wanted to ask where or how can I go around with designing something like this.
The top item is the one which gets expanded or highlighted on scroll with some sort of parallax animation.
see this project https://github.com/andriipanasiuk/ExpandableRecyclerView
This project same as your requirement.
I'm a new Android developer and I would like to use swipe actions on a RecyclerView Items like the video below I found on material.io (please see link below)
I found a lot of libraries but often swipe gesture is for remove items or reveal buttons.
It's not what I want. Could you please help me to create the same behaviour as shown in this below example ("elastic" effect, swipe left or right, background color animation with icon update) ?
Maybe a library already exists??
Thanks for your help
https://storage.googleapis.com/spec-host-backup/mio-design%2Fassets%2F1gSz-L39Or4aM8GhQn0ZhnUkaV5E-cyoc%2Ftype-action-swipe.mp4
you should use this ItemTouchHelper
this gives swipe functionalty for recyclerView items
check out this Example
I need to make a layout similar to that Image.
I wish it were shown all the registered images and their attributes and a button to add the user would select an image and define the attributes of it. I do not want a complete example that ordered but at least one direction than I use to do the layout. By my research I should perhaps use a swipe view. Has anyone seen something similar?
Thank you
You can use ViewPager to display cards like in top part.
ViewPager with previous and next page boundaries
And use a ListView or RecyclerView to show the bottom part. https://code.tutsplus.com/tutorials/getting-started-with-recyclerview-and-cardview-on-android--cms-23465
Currently I'm developing a small app for my parents' business. I'm trying to create a custom menu. I'd like to have something similar to this:
If you look at it, the screen is divided in two sections. The upper section is just an image and the lower section is the menu. I'd like to achieve this:
If the user places his finger over an item of the menu and swipes to the right, all the items move one position right, and the opposite if the user swipes left.
I'm quite new in this field and I'm not looking for a piece of code. I just want some tips on what to search because I don't know even where to start.
Thanks a lot!
By what I understood, ViewPager should be able to solve your problem. You hsve it nested in your layout under the main image. Have a look here: http://developer.android.com/training/animation/screen-slide.html
When the ordinary ExpandableListView expands we usually see just the result that it is expanded. I want to add animation to see clearly that it expands itself a little bit slowly and smooth in order to clerify for user that he clicked on listitem and it opened.
this can be achieve by Accordion component .
have a look on to this link
May be it will helpfull to you.
Thanks
If you want something like the accordion, but only want to have one item expanded at once, and you want to keep using your normal ListView, I would recommend this project: https://github.com/tjerkw/Android-SlideExpandableListView
Yes I am the Author!