By default HorizontalScrollView scrolls from Left to Right but I want to scroll from Right to Left.
HorizontalScrollView
How to do this? Any help will be appreciated.
You can scroll it to the right edge of your scroll view in your code with something like this:
scrollView.postDelayed(new Runnable() { public void run() { scrollView.fullScroll(HorizontalScrollView.FOCUS_RIGHT); } }, 100L);
Related Q and A is https://stackoverflow.com/a/4720563/2511775