mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-27 01:53:15 +00:00
コメント追加
This commit is contained in:
parent
5cbf1f4553
commit
49a7e9677c
|
@ -82,18 +82,21 @@ public class LibraryTopFragment extends Fragment {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
|
||||||
|
// レイアウトファイル(fragment_library_top.xml)をインフレートしてビューを作成
|
||||||
// Inflate the layout for this fragment
|
// Inflate the layout for this fragment
|
||||||
View view = inflater.inflate(R.layout.fragment_library_top, container, false);
|
View view = inflater.inflate(R.layout.fragment_library_top, container, false);
|
||||||
|
|
||||||
|
// レイアウトファイル内のRecyclerView要素を取得
|
||||||
// Use view.findViewById instead of findViewById
|
// Use view.findViewById instead of findViewById
|
||||||
RecyclerView documentRecyclerView = view.findViewById(R.id.document_list);
|
RecyclerView documentRecyclerView = view.findViewById(R.id.document_list);
|
||||||
|
|
||||||
LinearLayoutManager layoutManager = new LinearLayoutManager(getContext());
|
LinearLayoutManager layoutManager = new LinearLayoutManager(getContext());
|
||||||
documentRecyclerView.setLayoutManager(layoutManager);
|
documentRecyclerView.setLayoutManager(layoutManager);
|
||||||
|
|
||||||
//データを取得
|
// ドキュメントのメタデータを取得
|
||||||
List<DocumentMeta> metas = document.getAllDocumentMetas(100);
|
List<DocumentMeta> metas = document.getAllDocumentMetas(100);
|
||||||
|
|
||||||
|
// ドキュメントをデフォルトフォルダに追加
|
||||||
// フォルダごとにドキュメントを管理する
|
// フォルダごとにドキュメントを管理する
|
||||||
for (DocumentMeta meta : metas) {
|
for (DocumentMeta meta : metas) {
|
||||||
folderManager.addDocumentToFolder("Default Folder", meta);
|
folderManager.addDocumentToFolder("Default Folder", meta);
|
||||||
|
@ -102,6 +105,7 @@ public class LibraryTopFragment extends Fragment {
|
||||||
// 特定のフォルダのドキュメントを取得
|
// 特定のフォルダのドキュメントを取得
|
||||||
List<DocumentMeta> folderDocuments = folderManager.getDocumentsInFolder("Default Folder");
|
List<DocumentMeta> folderDocuments = folderManager.getDocumentsInFolder("Default Folder");
|
||||||
|
|
||||||
|
// トーストメッセージでドキュメントの数を表示
|
||||||
Toast.makeText(getContext(), "Documents: " + Integer.toString(metas.size()), Toast.LENGTH_LONG).show();
|
Toast.makeText(getContext(), "Documents: " + Integer.toString(metas.size()), Toast.LENGTH_LONG).show();
|
||||||
|
|
||||||
// Create and set the adapter
|
// Create and set the adapter
|
||||||
|
|
Loading…
Reference in New Issue
Block a user