I want to use right to left direction in gridview. By default gridview shows contents left to right.
For example:
If I have this array and I want to specify 3 column for it:
[1, 2, 3, 4, 5, 6, 7, 8, 9]
GridView shows it like this:
[1 2 3]
[4 5 6]
[7 8 9]
but I want to show it like this:
[3 2 1]
[6 5 4]
[9 8 7]
By the suggestion of “Dmytro Danylyk” i use this function and solve my problem.