In B4I, it's fairly easy to implement horizontal snapping (or paging) in xCustomListView by doing this:
B4X:
Dim sv As ScrollView = MonthListView.sv
sv.PagingEnabled = True
My question is: is the same possible in Android? I know there's a library to implement snapping but that would be overkill when it's as easy to do it in B4A as it is in B4I.
1. There is no similar feature in Android.
2. Using SnapCLV is the correct solution. It is far from being an overkill.
Open the project and you will see that this huge library is made of exactly 20 lines of code.