Slide Only Half view pager view in Android

enter image description here

Is it possible to show only half the pager view when scrolling?
or can you make only one view of two types of pager views?

so I wanted to get half the viewer views of the pager.
I want to show half of the performance and when the other half appears to the touch.

+4
source share
2 answers

, 2 ( ). , ui. sdk bitmap . : BitmapRegionDecoder

, .

0

.

@Override
public float getPageWidth(int position) {
    // TODO Auto-generated method stub
    return (0.5f);
    }
-1

Source: https://habr.com/ru/post/1537087/


All Articles