hwp를 이미지로 save했습니다.(장수가 150page쯤됩니다.)

hwp를 html로 세이브하니 제대로 안되더라구요 

그래서 이미지로...

각페이지마다 save를 해주더군요.


이 페이지로 책과 같은 앱을 만들려고합니다.

물론 pdf로 만들면 쉽지만 앱을 만들어 보는게 목적 입니다.


아래처럼 Gallery , ImageSwitcher  로 잘 나옵니다.

문제는 ImageSwitcher 가 이미지가 작아서 축도 확대가 안되니 책을 읽을수가 없네요.

ImageView를 상속받아 별도로 축소 확대를 지원하는 클래스를 만들어 놓은게 있긴한데

ImageSwitcher 는 그게 안되서 

이런 경우 어떤식으로 해야 목적에 맞게 나올까요?


<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="@drawable/bg_tab"
    <Gallery android:id="@+id/gallery"
        android:background="#55000000"
        android:layout_width="match_parent"
        android:layout_height="60dp"
        android:layout_alignParentBottom="true"
        android:layout_alignParentLeft="true"
        android:gravity="center_vertical"
        android:spacing="16dp"
    />
    
    <ImageSwitcher android:id="@+id/switcher"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_alignParentTop="true"
        android:layout_alignParentLeft="true"
        android:layout_above="@id/gallery"
    />

</RelativeLayout