I'm looking for a way to display images sequentially on Android like a cartoon.

Asked 2 years ago, Updated 2 years ago, 26 views

We are currently developing an application that can view cartoons, and we are going to parse the image links related to cartoons on the cartoon page so that users can see them conveniently within the application.

First of all, I parsed the links of the images, but I want to know how to arrange the images so that I can see them continuously like the pictures below crying I wonder if there is an open source related to this.

android

2022-09-22 20:28

1 Answers

The most primitive (?) method is likely to be imitated using ScrollView, Linear Layout, and ImageView. However, if there are a lot of images, pages that are not visible on the screen need to be removed from memory, so I think it would be a good idea to consider ViewPager and RecyclerView. Or, I think using webview like Naver Webtoon and the web version of Daum Webtoon could be an alternative.

제가 이런 류의 앱을 만들어 본 경험이 없어서 정확한 답변은 어렵지만 아래 링크에 있는 tachiyomi라는 프로젝트는 VerticalViewPager를 이용한 뷰어를 제공하고 있습니다.

Please refer to the projects below for open source.


2022-09-22 20:28

If you have any answers or tips


© 2024 OneMinuteCode. All rights reserved.