I am working on a long table, the table data and format of the conference looks like this:
\documentclass[manuscript,screen,camera-ready,acmlarge]{acmart}
\usepackage{booktabs}
\usepackage{makecell}
\usepackage{xcolor}
\usepackage{tabularx}
\begin{document}
\begin{table}[!t]
\caption {Test
}\label{Tab:dcnnarchitectures}
\centering
\renewcommand{\arraystretch}{1.2}
\setlength\arrayrulewidth{0.2mm}
\setlength\tabcolsep{2pt}
\resizebox{16cm}{!}{
\begin{tabular}{p{6 cm}cccp{6cm}}
\Xhline{1pt}
\footnotesize Title & \footnotesize Ref & \footnotesize Year & \footnotesize Category &\footnotesize Content \
\Xhline{1pt}
\hline
{\footnotesize Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor }
& \raisebox{-3.3ex}[0pt]{\footnotesize \cite{Girshick2014RCNN}}
& \raisebox{-3.3ex}[0pt]{\footnotesize 2021} & \raisebox{-3.3ex}[0pt]{\footnotesize \shortstack [c] {Learning \ Systems}}
& \footnotesize Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor \
\hline
{\footnotesize Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor }
& \raisebox{-3.3ex}[0pt]{\footnotesize \cite{Girshick2014RCNN}}
& \raisebox{-3.3ex}[0pt]{\footnotesize 2021} & \raisebox{-3.3ex}[0pt]{\footnotesize Survey}
& \footnotesize Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor \
\hline
{\footnotesize Federated Learning for Smart Healthcare: A Survey }
& \raisebox{-3.3ex}[0pt]{\footnotesize \cite{Girshick2014RCNN}}
& \raisebox{-3.3ex}[0pt]{\footnotesize 2021} & \raisebox{-3.3ex}[0pt]{\footnotesize Survey}
& \footnotesize Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor \
\Xhline{1pt}
\end{tabular}}
\end{table*}
\end{document}
The table looks like this:
But the issue is, the table is quite long ( around 100 rows ), How I can split this table into multiple tables on pages with tags continue such as :
table 1 : Test
table 1 : Test ( Continue ) ( next page )
table 1 : Test ( Continue ) ( next page )
table 1 : Test ( Continue ) ( next page )
etc.
I checked this answer but I already created the table with different types for each row, How to convert this table into a long table with continuing tag?

