我想在应用程序中创建一个区域,以获取json
个媒体项目,无论它们是视频,图像还是纯文本,它都将在所有媒体中逐一循环。同一地点。
如果我选择一个ImageView
,那么我只能显示图像,就像我选择了TextView
或VideoView
。
我该如何实现?
Json示例:
{
"1": {
"type": "img",
"content": "xyz.jpg",
"duration": "10"
},
"2": {
"type": "video",
"content": "abc.mp4",
"duration": "34"
},
"3": {
"type": "text",
"content": "Welcome to my Digitial Signage Screen",
"duration": "54"
},
"4": {
"type": "video",
"content": "efg.mp4",
"duration": "22"
},
}
我想每次循环并检查媒体类型,如果它是“ img
”类型,则在写入期间显示图像,如果是文本类型,则在给定的时间内写入文本,并且等等。