FragmentPagerAdapter Swipe to show ListView 1/3 Screen Width

前端 未结 6 775
走了就别回头了
走了就别回头了 2020-12-23 22:18

EDIT: See my answer below-->

I am wanting to have a view that when swiped to the right, the listView is shown. Very much similar to what is implemen

6条回答
  •  予麋鹿
    予麋鹿 (楼主)
    2020-12-23 22:46

    The following code achieves the desired effect:

    In PageAdapter :

    @Override
    public float getPageWidth(int position) {
    if (position == 0) {
        return(0.5f);
    } else {
        return (1.0f);       
    }
    

提交回复
热议问题