Background
Google has recently published a new version of Android, which has a contact app that look like this :
The problem
I need to mimic this kind of list, but I can't find out how to do it well.
This consists of 3 main components:
the stickey titles, which stay as long as the top contact has the name that starts with this letter.
The circular photos or circle+letter (for contacts that don't have photos)
the PagerTitleStrip, which has uniform spacing between the items, and tries to show them all on the screen (or allow to scroll if needed).
What I've found
There are plenty of third party libraries, but that handle stickey-headers, which are a part of the items of the listView itself. They don't have the title on the left, but on the top of the items.
Here, the left side moves in a different way than the right side. It can stick, and if there is no need to stick (because the section has one item, for example) it scrolls.
I've noticed that for the circular photos, I can use the new (?) class called "RoundedBitmapDrawableFactory" (which creates "RoundedBitmapDrawable" ). This will probably allow me to put a photo into a circular shape nicely. However, it won't work for letters (used for contacts that don't have a photo), but I think I can put a textView on top, and set the background to a color.
Also, I've noticed that in order to use the "RoundedBitmapDrawable" well (to make it truly circular), I must provide it with a square sized bitmap. Otherwise, it will have a weird shape.
I've tried using "setTextSpacing" to minimize the space between the items, but it doesn't seem to work. I also couldn't find any way to style/customize the PagerTitleStrip to be like on the contacts app.
I've also tried using "PagerTabStrip" , but it also didn't help.
The question
How can you mimic the way that Google has implemented this screen?
More specifically:
How can I make the left side behave like on the contacts app?
Is this the best way to implement the circular photo? Do I really have to crop the bitmap into a square before using the special drawable ? Are there any design guidelines for which colors to use? Is there a more official way to use the circle-text cell?
How do you style the PagerTitleStrip to have the same look&feel as on the contacts app?
Github project
EDIT: for #1 and #2, I've made a project on Github, here. Sadly I've also found an important bug, so I've also published about it here.
ok, I've managed to solve all of the issues I've written about:
1.I changed the way that the third party library works (I don't remember where I got the library from, but this one is very similar) , by changing the layout of each row, so that the header would be on the left of the content itself. It's just a matter of a layout XML file and you're pretty much done. Maybe I will publish a nice library for both of those solutions.
2.This is the view I've made. It's not an official implementation (didn't find any), so I made something by myself. It can be more efficient, but at least it's quite easy to understand and also quite flexible:
3.I've found a nice library that does it, called PagerSlidingTabStrip . Didn't find an official way to style the native one, though.
Another way is to look at Google's sample which is available right within Android-Studio, and is called "SlidingTabLayout". It shows how it's done.
EDIT: a better library for #3 is here, called "PagerSlidingTabStrip" too.