pakerfeldt / android-viewflow

A horizontal view scroller library for Android
1.78k stars 694 forks source link

Titles do not display properly with max right value set in SetAdapter #58

Closed neofloww closed 12 years ago

neofloww commented 12 years ago

To reproduce set line 38 in TitleViewFlowExample to viewFlow.setAdapter(adapter, 6); // to start at the far right view. Then the tile improperly displays Cupcake IceCream Sandwich

neofloww commented 12 years ago

I changed the code in TitleFlowIndicator to set the currentposition as follows public void setTitleProvider(TitleProvider provider, int position) { titleProvider = provider; currentPosition = position; } and it fixed this problem.

pakerfeldt commented 12 years ago

Thank you.