how do I make a horizontal list view like the one seen in Google Catalogs?
The large main area is a viewpager, but the bottom row is a horizontal scrollview with a list of items that are clickable. I’m assuming its a listview, if it was how would this be done?
I’ve used the open source "horizontal list view" that is referenced in other questions here, but it does not act as smoothly like the one in this google app.

It’s definitely a Gallery!
You can see here that for sure it’s a Gallery that comes with the SDK -> See Youtube video to check how smooth it runs 😉
I’ve made to myself a short guide from Android.com for future reference. I hope that you can use it too:
1) Open the res/layout/main.xml file and insert the following:
2) Code to insert on your
onCreate()method:3) Create a new XML file in the res/values/ directory named attrs.xml. Insert the following:
4) Go back to your .java file and after the
onCreate(Bundle)method, define the customImageAdapterclass:Well… the code is very simple, but you can refer to the original and longer document here.