+ 1
Is content of sololearn using webview?
i want to make android apps tutorial thing, but dont know what layout to make text content like sololearn, does it using webview to display the text
1 Resposta
0
SoloLearn does have a very clean and dynamic way of displaying tutorial content, and it looks like it could be WebView—but in reality, many educational apps like SoloLearn typically use native components like RecyclerView or ScrollView with TextViews, ImageViews, and CodeView-like custom components to make it feel smooth and fast.
Why it's probably not WebView:
WebView is heavy, harder to manage style across devices, and slower than native views.
Native components allow better performance, interactivity (e.g., like buttons, comments, highlights).
Apps like SoloLearn use styled TextViews or Markdown parsing to format code blocks, bold text, headings, etc.