I want to have zoom ability using this library :
https://github.com/MysticTreeGames/android-page-curl
and for zooming I want to use following library
https://github.com/sephiroth74/ImageViewZoom
the ImageViewZoom provides a frameLayout which means I can add a page-curl view inside it.
But when I do such, all I get is a blank screen on my page.
here is my layout :
<?xml version="1.0" encoding="utf-8"?>
<pl.polidea.view.ZoomView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.mystictreegames.pagecurl.PageCurlView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/dcgpagecurlPageCurlView1"
android:background="@drawable/bbb1">
</com.mystictreegames.pagecurl.PageCurlView>
</pl.polidea.view.ZoomView>
and this the code I use to attach the zoomView inside my actual layout :
View zv = ((LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE))
.inflate(R.layout.zoomable,null,false);
zv.setLayoutParams(new ViewGroup.LayoutParams(
ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT
));
ZoomView zoom = new ZoomView(this); //current activity
zoom.addView(zv);
How can I combine these two together?
I know this zooming library is very popular, however IMHO the best way to implement image zoom in android is to load the images inside a webview. The code for this is simple and straight forward and the platform provides all the zooming functionality.