-4

I am working on android project where i need to show thumbnail of video from server is it possible or not ? if possible please help me

2 Answers2

0

It is possible through one of the two ways:

  • either get the thumbnail image from server and display it

  • Or get the thumbnail from the video programmatically, this answer will help

Community
  • 1
  • 1
Abdallah Alaraby
  • 2,222
  • 2
  • 18
  • 30
0

It is possible yes. First, you need to examine the data structure. Usually, they use JSON or XML which they store the URL of video and thumb with different ID's. If you find the ID of thumbnail and set it to ImageView it should be all sorted.

Best, Mack.