Android List formatting - android

I would to know if it possible to create this kind of list for Android: http://jquerymobile.com/test/docs/lists/lists-formatting.html
I didn't find any example.
Thanks

Yes, you'd have to implement a custom ListView.

Related

How to create Dropdown with sub menus?

How to create this type of dropdown in android ?
Any help will be appreciated :)
You can create custom spinner adapter with different itemTypes. Or you can change your spinner to some kind of ExpandableRecyclerView or ExpandableListView. If you need example links just let me know, but its pretty easy to find them in Google. Good luck.

how can i implement a filter view like this?

I thought that it's possibile within a fragment, but I'm young android developer and I will know which is the best way to implement it. Thanks a lot!
In Android you do it with an AlertDialog.
You'll want to implement one with a custom layout matching your picture.
An excerpt from the guide:
If you want a custom layout in a dialog, create a layout and add it to an AlertDialog by calling setView() on your AlertDialog.Builder object.
A quick search of Android material dialog with a custom view should give you a solution
Many libraries exist in gitub. Its just a mater of searching

How to implement masonry layout as an android custom list?

I have face problem to add android masonry custom list with dynamic view and what are the right steps for using this. Please give me the best solution.
Thanks in advance!
You should be talking about the GridLayout.
Take a look at the Developers Blog post about it http://android-developers.blogspot.com.es/2011/11/new-layout-widgets-space-and-gridlayout.html
The API is in http://developer.android.com/reference/android/widget/GridLayout.html

Is there a scroller component for Android?

I just wanna know if anybody knows a good reference to something similiar to :
But for Android.
or I need to implement by myself ?
you may want to check http://developer.android.com/reference/android/widget/Gallery.html, customize it and implement a custom view for the items
Here is one example like it.. but more beautiful
http://www.inter-fuser.com/2010/01/android-coverflow-widget.html

What android widget is this?

does anybody know what android widget/view this is:
i want to be able to implement a similar widget for my own needs but i dont know what kind of view/widget it is. All i see is that it is embeded on the ContactContract class as a quickContact object.
Anyone used one of these and customized it? if so, how? Thanks in advance
edit: is it also possible to include more than 5 items as shown below and have it scrollable horizontaly
This is QuickAction. Here you can find implementation of it. And there is repository on Github with source code.
I'm not quite sure, but it seems a custom toast
http://developer.android.com/guide/topics/ui/notifiers/toasts.html

Categories

Resources