0

我想以与 Swift 对应的方式相同的方式运行它。在 Swift 版本中,我将 json 加载到解析器中,该解析器在 id 中加载列表(从最高到最低)并显示缩略图和标题(由 json 提供),单击时会显示附加 ID 的视频。

我目前没有看到与 SwiftUI(特别是列表视图)设置类似的东西,如果您能提供任何资源或示例,我将不胜感激。

这是 SwiftUI 文件之一

import SwiftUI
import Combine

struct VideoList: View {
@Environment(\.presentationMode) private var presentationMode
@ObservedObject private(set) var viewModel: ViewModel
@State private var isRefreshing = false

var btnBack : some View { Button(action: {
    self.presentationMode.wrappedValue.dismiss()
    }) {
        HStack {
        Image("Home") // set image here
            .aspectRatio(contentMode: .fit)
            .foregroundColor(.white)
        }
    }
}

var body: some View {
    NavigationView {
        List(viewModel.videos.sorted { $0.id > $1.id}, id: \.id) { video in
            NavigationLink(
            destination: VideoDetails(viewModel: VideoDetails.ViewModel(video: video))) {
                VideoRow(video: video)
                
            }
        }
        .onPullToRefresh(isRefreshing: $isRefreshing, perform: {
            self.viewModel.fetchVideos()
        })
        .onReceive(viewModel.$videos, perform: { _ in
            self.isRefreshing = false
        })
    }
    .onAppear(perform: viewModel.fetchVideos)
    .navigationViewStyle(StackNavigationViewStyle())
    .navigationBarBackButtonHidden(true)
            .navigationBarItems(leading: btnBack)

}
}

这是它正在加载的 json 的剪辑

{
"videos": [
    {
        "id": 97,
        "name": "name",
        "thumbnail": "https://videodelivery.net//thumbnails/thumbnail.jpg",
        "description": "October 11th, 2020",
        "video_link": "https://videodelivery.net//manifest/video.m3u8"
    },
    {
        "id": 96,
        "name": "name",
        "thumbnail": "https://videodelivery.net//thumbnails/thumbnail.jpg",
        "description": "October 11th, 2020",
        "video_link": "https://videodelivery.net//manifest/video.m3u8"
    },
4

1 回答 1

0

https://riptutorial.com/android/example/29241/try-offline-disk-cache-first--then-go-online-and-fetch-the-image

这是缓存缩略图的一个很好的例子,按照这个,唯一的改变是:你在你的适配器的getView方法中写了picasso.load。只需设置imageview sing Picasso。现在,你可以通过使用点击列表视图时传递视频url onItemCLickListener 内部的意图,然后在目标活动中,您可以拥有一个 medi 播放器,您可以在其中使用该 url 将其设置在 medi 播放器上并播放视频。

此解决方案也适用于列表。

此外,由于 picasso 默认使用内存缓存,我们也必须使用 OKHTTP 磁盘缓存,因为否则 Picaso 只会检查内存缓存中的缩略图并且会失败。

于 2020-10-23T21:39:36.177 回答