In ReflowableView,
new function
void setDirectRead(boolean isDirectRead);
is added for the case to read directly the content from the unzipped epub.
Category Archives: Posts
SkyEpub 4.2.1 for Android Released
Fixed bug – when reload() is called, sometimes highlight is not displayed properly.
Fixed bug – while Global Pagination is going on, sometimes backspace causes crash.
SkyEpub 4.2.0 for Android Released
Fixes Bugs in Fixed Layout.
Enhances Performance in Fixed Layout.
Fixes Issues regarding Line Spacing for Some Tags
Fixes Issues regarding Font Size for Some Tags
SkyEpub 4.1.3 for Android Released
Fixes Issues Regarding Multimedia in Kitkat
Fixes Bugs that MediaOverlay not playing in some cases.
SkyEpub 4.1.0 for Android Released
Some Bugs Fixed regarding Highlight & Memo
SKY*Reader – SkyEpub Reference App for Android is just published.
SKY*Reader – SkyEpub Reference App for Android is just published.
It is based on SkyEpub for Android 4.0.4 & Advanced Demo III
OPDS catalog browsing & Local epub importer are added to original Advanced Demo III
https://play.google.com/store/apps/details?id=com.skytree.skyreader
SkyEpub 4.0.4.1 for Android Released
Fixes Bug that NoteColor is missing sometimes.
– Please check the updated parts in BookViewActivity.java
SkyEpub 4.0.4 for Android Released
SkyEpub 4.0.4 for Android finally Released.
SkyEpub 4.0.4 for Android
1. Enhances the loading time largely.
2. supports High quality Background image.
3. All Events called asynchronously.
4. Watermark changed.
5. Fixes a lot of bugs regarding Highlight/Note.
6. New Events and Features added to Highlight/Note
a. Custom Drawing Highlight supported
b. Custom Drawing Selector supported
c. New Events are added and modified.
7. Multiple Caching supported for Fixed Layout
8. Fixes the Bugs of Fixed Layout in Portrait Mode
SkyEpub 3.9.8 for Android Released
New Features
1. in Setting class new static function is added.
public static void prepare(); // to reduce reflowableView loading time.
eg) in epub reader main activity, onCreate method
void onCreate(..) {
..
..
Setting.prepare();
}
2. in ClickListener interface, new callback function is added
public interface ClickListener {
/**
* called when user touches some place in screen.
* @param x x coodination at click point.
* @param y y coodination at click point.
*/
void onClick(int x,int y);
/**
* called when user taps on the image
* @param x x coodination at click point.
* @param y y coodination at click point.
* @param src the src(url) of image,
* developer can show the image in ImageView or something by url.
*/
void onImageClicked(int x,int y,String src);
/**
* called when user taps on the link
* @param x x coodination at click point.
* @param y y coodination at click point.
* @param href the href of link,
* developer can make the routines to jump to specific position or load another web page by the href.
*/
void onLinkClicked(int x,int y,String href);
/**
* called whenever user taps on the link to ask whether the link should be ignored or not.
* @param x x coodination at click point.
* @param y y coodination at click point.
* @param href the href of link,
* @return if the link should be ignored, return true
*/
public boolean ignoreLink(int x,int y,String href);
}
Bugs Fixed
3. Bugs Fixed : when Color.TRANSPARENT is not applied for the color of highlight under KITKAT
4. Bugs Fixed : when startDownload is called in Advanced Demo, filename which contains space makes error.
SkyEpub 3.9.7 for Android Released
New Features
Cover Image can be automatically extracted from epub.
in BookInformation Object
public BookInformation(String fileName,String baseDirectory, ContentListener contentListener,String coverPath);
