TabLayout with viewpager not smooth scrolling

前端 未结 9 683
既然无缘
既然无缘 2020-12-29 03:36

Edit

I have followed these tutorials to fix this problem.

http://www.truiton.com/2015/06/android-tabs-example-fragments-viewpager/ https://g

9条回答
  •  天涯浪人
    2020-12-29 03:57

    I just went through your code. The problem is that you are not providing any layout to inflate inside ContentFragment.java.

    I changed your method to

        @Nullable
        @Override
        public View onCreateView(LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
            //return super.onCreateView(inflater, container, savedInstanceState);
            return  inflater.inflate(R.layout.feed_item, container, false);
    
        }
    

    After making these changes your tabs were scrolling smoothly. I don't know the reason behind this behaviour but this thing made it work

提交回复
热议问题