有没有一种方法可以使图像在横向模式的viewPager中滚动?

时间:2019-06-27 00:23:33

标签: java android android-viewpager

我正在android studio中设置一本书,正在读取某种图像,并希望横向模式下的图像从上到下滚动

@NonNull
@Override
public Object instantiateItem(@NonNull ViewGroup container, int position) {
    ImageView imageView = new ImageView(context);
    Picasso.get()
            .load(imagesURLs[position])
            .fit()
            //.//centerInside()//centerCrop()
            .into(imageView);
    container.addView(imageView);
    click(position, imageView);
    return imageView;
}

那是XML代码

<com.duolingo.open.rtlviewpager.RtlViewPager
        android:id="@+id/view_pager"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_weight="1"
        android:animateLayoutChanges="true"
        android:keepScreenOn="true"
        android:layoutDirection="locale" />

所以这是我在所有边缘进行缩放时得到的屏幕截图 图片大小(1600x1094px) Take a look at the Image

0 个答案:

没有答案