Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想调整显示下一个孩子的提示的原始 View Pager.. 见下图:
我尝试创建自己的 ViewPager,它扩展了原始 View Pager,但我无法使其工作。
如果您能将我指向执行此操作或类似操作的任何教程或库,我将不胜感激。
谢谢。
尝试扩展pager adapter- 覆盖该getPageWidth方法。
pager adapter
getPageWidth
@Override public float getPageWidth(int position) { return 0.8f; // 1f means 100 percent }