Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I want to make a question-answer app in which user view question and when he swipe to left answer will appear. I know that this can be achieved by using RecycleView and CardView. However, I do not know how to implement. Can anyone please help?
Please see the picture more clearer idea.
I know that this can be achieved by using recycleview and card view but how I don't?
You can refer this article for implementing horizontal recyclerview in vertical recyclerview, Hope this helps.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
I want to know if this type of layout have a specific name, Im guessing it is some kind of gridLayout combined with another Layout?
As I cannot comment on your post due to my current rep level I will have to write an answer...
I believe you may be wanting a CardView. Please see the following link on how to use this ViewGroup: https://android.jlelse.eu/android-card-view-edb905e67cd6
It is a combination of cardview and grid layout. You can also use cardview in listview item or recycler view.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
Update :-Able to achieve it used https://github.com/ozodrukh/CircularReveal & custom changes.
Is there any similar library like Ramotion/Paper-Switch.
How can i animate the parent color change as shown in the library pic below
You can use CircularReveal animation as described here:
https://developer.android.com/training/material/animations.html
Just create an invisible layout with the color as a background, and show/hide it as described in the article. You'll need to calculate the center from the position of the switch, and radius based on the view size.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 6 years ago.
Improve this question
I am new to Android programming and I was looking for a tutorial which would show me how to have sliding tabs with icons in the toolbar with a navigation drawer.
I just can't find any tutorial. All tutorials give you the sliding tabs below the toolbar.
Does anyone know any good tutorials ?
Thanks
here's a pretty good looking tutorial, you'll find some more through google.
http://www.androidhive.info/2015/09/android-material-design-working-with-tabs/
You'll need to get your head around the coordinator view if you want any of the nice scrolling behaviour
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
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.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Improve this question
I want to create a recycler view like this. Is this possible in android.If so please help me out with some tutorials.
Just edits:
Its a recycler view. Each element of the recycler view is an ImageView. The text "selected " written for everyone to understand that this item is selected / highlighted. While you can notice that the highlighted item is taller than the rest of the items and has a different background color. To be clear I am looking for something like the below video. Is it possible ?
Youtube video
After what i got from #Niranjan Prajapati's comment. I found out the same question here same problem and the tutorial link too. So I suppose its time for me to close this one.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I have a "flat" ViewPager on my app. I saw DeviantArt's pager and its cool transition between fragments in pager when using lateral swipe. How i can achieve this effect? This is done with a library?
Thanks in advance
Setting a custom page transformation is a built-in feature of the ViewPager. You need to tell the ViewPager (using setPageTransformer) to use a custom transformation - the example ZoomOutPageTransformer described in the documentation here looks like it would suit your needs.