mirror of
https://github.com/gedoor/legado.git
synced 2025-08-10 00:52:30 +00:00
Revert "refactor: remove cn.hutool:hutool-crypto"
This reverts commit 620bd6a749.
This commit is contained in:
@@ -2,12 +2,11 @@ package io.legado.app.ui.book.remote
|
||||
|
||||
import android.content.Context
|
||||
import android.view.ViewGroup
|
||||
import cn.hutool.core.date.LocalDateTimeUtil
|
||||
import io.legado.app.base.adapter.ItemViewHolder
|
||||
import io.legado.app.base.adapter.RecyclerAdapter
|
||||
import io.legado.app.databinding.ItemRemoteBookBinding
|
||||
import io.legado.app.utils.ConvertUtils
|
||||
import java.text.SimpleDateFormat
|
||||
import java.util.Date
|
||||
|
||||
|
||||
/**
|
||||
@@ -39,7 +38,7 @@ class RemoteBookAdapter (context: Context, val callBack: CallBack) :
|
||||
tvName.text = item.filename.substringBeforeLast(".")
|
||||
tvContentType.text = item.contentType
|
||||
tvSize.text = ConvertUtils.formatFileSize(item.size)
|
||||
tvDate.text = SimpleDateFormat("yyyy-MM-dd").format(Date(item.lastModify))
|
||||
tvDate.text = LocalDateTimeUtil.format(LocalDateTimeUtil.of(item.lastModify), "yyyy-MM-dd")
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user