Tôi đã có một ViewPager do ImageViews thực hiện như thế này:Android ViewPager với ImageView Zoomable
@Override
public Object instantiateItem(View collection, int position) {
ImageView iv = new ImageView(ctx);
if (pageList.size() > position)
iv.setImageBitmap(pageList.get(position));
else
iv.setImageResource(R.drawable.loading);
iv.setOnTouchListener(this);
((ViewPager) collection).addView(iv, 0);
System.out.println("POS: " + position);
return iv;
}
Bất kỳ cơ hội tôi có thể có mà ImageView Zoomable bởi chạm đúp (và swipe hình ảnh) hoặc véo Zoomable?
Thêm chi tiết thực sự hữu ích. –
Bạn có thể chia sẻ thêm chi tiết .. – arjoan
Thông tin chi tiết sẽ hữu ích – Piotr