Please look into the source code below :
public void test_Horizontalscroll() throws Exception {
solo.sleep(3000);
Gallery feature= (Gallery) solo.getView(R.id.featured_gallery);
solo.clickOnView(feature);
solo.scrollToSide(Solo.LEFT) ;
solo.sleep(10000);
}
The issue is that the entire screen is not horizontally scrollable, but only the Top section which is of type Gallery ( android.widget.Gallery)
Please help me.