mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 17:53:14 +00:00
LibraryUtilsとの結びつけ
This commit is contained in:
parent
311dc21a07
commit
c65e6215fe
|
@ -124,19 +124,7 @@ public class LibraryTopFragment extends Fragment {
|
||||||
// Use a LinearLayoutManager to specify the layout
|
// Use a LinearLayoutManager to specify the layout
|
||||||
return view;
|
return view;
|
||||||
}
|
}
|
||||||
// DocumentMetaリストをLibraryItemPageに変換するユーティリティメソッド
|
|
||||||
private ArrayList<ListItem> convertToLibraryItems(List<DocumentMeta> metas) {
|
private ArrayList<ListItem> convertToLibraryItems(List<DocumentMeta> metas) {
|
||||||
ArrayList<ListItem> libraryItems = new ArrayList<>();
|
return LibraryUtils.convertToLibraryItems(metas);
|
||||||
for (DocumentMeta meta : metas) {
|
|
||||||
// ListItemの作成と設定
|
|
||||||
ListItem listItem = new ListItem();
|
|
||||||
listItem.setTitle(meta.getTitle());
|
|
||||||
listItem.setDescription(meta.getTitle());
|
|
||||||
// 他の必要な情報もListItemに設定する
|
|
||||||
|
|
||||||
// ListItemをリストに追加
|
|
||||||
libraryItems.add(listItem);
|
|
||||||
}
|
|
||||||
return libraryItems;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user