我正在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