[Solved] What is the best way to have a banner that slides just below my search bar? [closed]
Assuming you want something like sliding images, if that is it I think you’re looking for a ViewPager You can add your content to the ViewPager. For them to automatically keep swiping you can try something like this or this. This piece of code-block would achieve the same: viewPager = (ViewPager) findViewById(R.id.viewPager); PagerAdapter adapter = … Read more