Adds ability to page between multiple images in a status by swiping from left to right. Closes #66

This commit is contained in:
Vavassor 2017-06-25 01:07:41 -04:00
commit e3745ebd6b
15 changed files with 361 additions and 147 deletions

View file

@ -24,6 +24,6 @@ public interface StatusActionListener extends LinkListener {
void onReblog(final boolean reblog, final int position);
void onFavourite(final boolean favourite, final int position);
void onMore(View view, final int position);
void onViewMedia(String url, Status.MediaAttachment.Type type);
void onViewMedia(String[] urls, int index, Status.MediaAttachment.Type type);
void onViewThread(int position);
}