mirror of
https://github.com/lacerta-doc/Lacerta.git
synced 2024-11-26 09:43:15 +00:00
Adapterのところを修正
This commit is contained in:
parent
13a2130df6
commit
df95ce4405
|
@ -101,9 +101,6 @@ public class LibraryTopFragment extends Fragment {
|
||||||
// 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());
|
|
||||||
documentRecyclerView.setLayoutManager(layoutManager);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
LacertaLibrary lacertaLibrary = new LacertaLibraryImpl();
|
LacertaLibrary lacertaLibrary = new LacertaLibraryImpl();
|
||||||
// ドキュメントのメタデータを取得
|
// ドキュメントのメタデータを取得
|
||||||
|
@ -126,9 +123,14 @@ public class LibraryTopFragment extends Fragment {
|
||||||
// トーストメッセージでドキュメントの数を表示
|
// トーストメッセージでドキュメントの数を表示
|
||||||
Toast.makeText(getActivity(), "ドキュメント数: " + Integer.toString(metas.size()), Toast.LENGTH_LONG).show();
|
Toast.makeText(getActivity(), "ドキュメント数: " + Integer.toString(metas.size()), Toast.LENGTH_LONG).show();
|
||||||
|
|
||||||
|
LinearLayoutManager layoutManager = new LinearLayoutManager(getContext());
|
||||||
|
documentRecyclerView.setLayoutManager(layoutManager);
|
||||||
|
|
||||||
// LibraryItemPageを使用してadapterを設定
|
// LibraryItemPageを使用してadapterを設定
|
||||||
DocumentAdapter adapter = new DocumentAdapter((ArrayList<ListItem>) metas);
|
DocumentAdapter adapter = new DocumentAdapter((ArrayList<ListItem>) metas);
|
||||||
documentRecyclerView.setAdapter(adapter);
|
documentRecyclerView.setAdapter(adapter);
|
||||||
|
//RecyclerView の再描画
|
||||||
|
documentRecyclerView.invalidate();
|
||||||
} else {
|
} else {
|
||||||
// ドキュメントのメタデータが null の場合の処理
|
// ドキュメントのメタデータが null の場合の処理
|
||||||
Toast.makeText(getContext(), "ドキュメントメタデータが取得できませんでした", Toast.LENGTH_LONG).show();
|
Toast.makeText(getContext(), "ドキュメントメタデータが取得できませんでした", Toast.LENGTH_LONG).show();
|
||||||
|
|
Loading…
Reference in New Issue
Block a user