Hi, i just read your answer, thank you! It's really good think that you are listening to users and answer. If I would like to buy another gallery/web design engine, I will go to simpleviewer.net for sure.
For now I solved my problem, but it's hack :-)
So lets play the game:
1) I decompressed simpleviewer.js
2) I realized, You have a function which differs "smallandroid" than big (small is defined as:
Math.max(screen.width, screen.height) < 800
hmm, I think this isn't good because in this times my tablet have 1280 long edge and phone also, but the trick is the density, effective resolution for phone is 640.
3) In big android You don't hide the address bar.
4) In small You hide it, and also show a crop instead a full photo.
5) So I decided, for me better solution is to hide addressbar everytime in android, and changed the function:
isSmallAndroid().
6) ...but i was not finish, in small android you return screen.height from the function adjustHeight4Devices, and it is not correct in this times because of density, so I changed this function (It's my own hack):
var c = getAndroidVer();
if (c >= 4) {
if (screen.width > $(window).width()) {
var e = screen.width / $(window).width()
return screen.height / e
} else {
return screen.height
}
instead of
if (isSmallAndroid()) {
var c = getAndroidVer();
if (c >= 4) {
return screen.height * 1.25
}
I know it is not ideal solution, If I have some time in the future, I'll think about better :)