Good morning, stackoverflow community, can someone help me create a view similar to the image attached, it is a project to perform a search and then refine the results, the screenshot is taken from the Mercado Libre application so they have A better idea of how I want to implement. Thank you in advance for your help.
I am guiding myself on the next project in case anyone is interested
https://github.com/nhaarman/supertooltips
You'll have to implement a custom spinner for this, and there implement all the filters and get all those values through callback. I am providing a link to implement the custom spinner Custom Spinner
Related
I need to implement this (Material checkboxes) type of activity, with dynamic tree layout.
Sorry but I'm little newbie on Android platform, so please explain to me what I need to get an activity like this from scratch.
Thanks in advance.
Bye
EDIT: Fixed URL that now point to correct image.
You must be more specific...
But if all what you want e implement a checkbox, you'll need:
XML layout with the widgets
Activity to handle events and values from the widgets
You could get a simple tutorial easily seaching the web..
I have received a requirement make an image viewer with the listview at bottom like this video https://www.youtube.com/watch?v=aC4OFRxk988 but I don't know the name of that controller to research. Please help me. Thanks
I think viewpager and listview.
and dynamic scale image view are setmatrix.
simply reply. i can't add comment at your post....
if want more hint reply me.
https://github.com/ksoichiro/Android-ObservableScrollView
You can find here some custom implementations.
Test the demo app from the play store and check which one has the closest functionality to the one you desire. Then take a deep breath and try to understand how it's done.
I have a listview and on swiping (either right or left) I want to provide intent. I searched and I got to know to use Gesture for this purpose but I did not get how I should use this with listview. Please somebody help me with the example (I am new to Android and I need complete explanation and similar example) Thanks in advance.
I want to create view like stack-view as shown in below image.Can any buddy know that how to implement this type of custom gallery view ?
Thanks
There is library who can give something like date
https://github.com/blipinsk/FlippableStackView
NB: i see the post is quite old if you got the desired, please share it with us all.
hey guys Im starting developing android aplications however this is my problem.
I need to create a list like this:
http://i.imgur.com/TKRr9aE.jpg
as you can see I need the picture, title, description, finally a cursor that leads me to the complete imformation about the selected option.
searching I found tools like linear or table layouts, but Im not sure if that will be the good way to do this.
my database have just that 3 columns: image(path of the picture), name and description
so my question is ¿what will be the best way to display this? Maybe is something really basic, but again... Im starting with android and I love it! is really interesting I need to get in in this world.
Anyway Hope you guys can help me. thx
What you want is a listView here is a good starting point.
http://developer.android.com/guide/topics/ui/layout/listview.html
Now as far as getting the picture included as well you would probably need to create a custom class that extends listView and then make the appropriate changes.
You can use a list view with a custom adapter. The adapter should extend the CursorAdapter class for managing data from database.
http://www.mysamplecode.com/2012/07/android-listview-cursoradapter-sqlite.html