I'm building an application that takes data and appends the data in a textview
. I want the text to be rotating in a vertical style(just as automatic horizontal scrolling ,but I need it to be in vertical style). Can anyone help me in this? Eg ihave 5 data i would have arranged it in this fashion and the text view layout can show only 5 lines at a time
the following should be in vertical style
1 data1
2 data2
3 data3
4 data4
5 data5
when next data comes data 6 :
1 data1
2 data2
3 data3
4 data4
5 data5
6 data6
i should show it as :
6 data6
1 data1
2 data2
3 data3
4 data4
5 data5
it should be rotating
5 data5
6 data6
1 data1
2 data2
3 data3
4 data4
like this